msgbox

How do you make a MsgBox with a "Do Not Ask This Again" or "Don't Ask Me Again" Checkbox in VB6?

I ask this partly because I want to know the best practice way of doing this, and partly because the top google result I got was a forum thread from 2002 in which the question wasn't even answered. I inherited some VB6 code, and there are some MsgBox calls in said code, many of which display messages that end users would probably find v...

Close currently opened MsgBox using code

Is there any option to close the currently opened MsgBox using any code in VBA access form application ? \ ...

Why does this program *NEED* MsgBox?

Long story short: I'm trying to write an app that'll dump IE's history to a text file. Because I am lazy, I went searching for a preexisting library and found this beautiful project to build from: http://www.freevbcode.com/ShowCode.asp?ID=6702. Only, I'm stuck... I finally got the program to dump the history, but it ONLY WORKS if I pu...

Messagebox in ASP.NET 3.5 with AJAX

I have a ASP.NET 3.5 web site with an AJAX update panel. I simply need to process some server side code and then issue a user prompt that says "Code processing complete". I know there is supposed to be support for Msgbox-esque methods in ASP.NET but I can't find them and any other JavaScript based solutions don't work effectively when ...

How do I intercept a message box from a ocx put into a vb form

Hi experts... I need your help , i'm trying to quit a msgbox from a ocx , i put the ocx into a vb6.0 form , when i run the proyect appear each 5 minutes a msgbox with the invitation to visit a web page , i want to quit this msgbox , but i´m junior programmer only , and i want to quit this screen fom my exe.. can any help me....this drive...

MsgBox function default fourth button

I noticed in VBA that the MsgBox function has a allowable constant of vbDefaultButton4 which will make the fourth button the default. BUT of all the allowable constants for buttons, none give you four buttons. Is there a way to get a fourth button on a MsgBox, or is this useless, or something else? ...

Is it possible to put a combo box (drop down list) in a MS Access MsgBox?

There is a combo box (dropdown list) with a list of revenue types. If the user types into the box a value that is not part of the list, a msgBox pops up and asks them if they want to add that value to the list. Here is my problem: In that msg box, I want to give the user a combo box list of revenue groups to choose from (so that the ess...

How to automate response to msgbox

I am developing a C# application to automate the running of a legacy VBScript(vbs) file which calls several VB6 .exe files. The .exe files have message box pop-ups that I need to 'respond' to in order to allow the VBScript process to run unattended. The response would need to be the Enter key. I do not have the source for the .exe files ...

MessageBox.Show not raising HelpRequested event

I have a form that is showing a MessageBox using MessageBox.Show, and trying to receive events from the Help button on the MessageBox so I can execute my own code. The Microsoft documentation shows how to do this; however, using what is suggested does not work. Here's a shortened version of my code: Private Function MethodName() A...

MSGBOX position in WSH/VBS

Hello, here is my next question and i hope some one can help me :-) Is it possible to position a msgbox in wsh/vbs? I need the msgbox everytime in the foreground. I know that how to position a inputbox, but not a msgbox. Thanks for help. Greetings, matthias ...

Block MsgBox From External Application Using VB.Net

Is there a way to intercept a MsgBox() from an external application and block it using VB.Net? For this discussion, let's say the MsgBox Title is "SQL Application" and the Message is "SQL Error - Try Again". I have found some examples of looking for the MsgBox to pop-up (by watching for the Window title) and then sending key(s) to pre...

Do Something When MsgBox Is Closed

I'm making a program in NS BASIC/CE that shows the user a warning, but when the user closes the MsgBox(clicking in OK), I want that the application executes AfterWarn Sub. How I can do this? ...