Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Custom Message Boxes in VB6
Name: BlueScreenOD Date: February 24, 2006 at 11:51:34 Pacific OS: Win XP Pro CPU/Ram: 3.2 ghz p4 / 1 GB DDR Product: Dell
Comment:
I'm intrested in creating a custom message box taht uses buttons other then the stadard "Okay" "Cancel" "Retry." Specificly I want a message box that says:
Files are waiting to be printed, what would you like to do? [Print File] [Delete Files] [Add Files to Queue]
Name: StuartS Date: February 24, 2006 at 12:46:21 Pacific
Reply:
Make a new form and make it Modal. Put three buttons on it named Print File, Delete File, and Add Files to Queue. Put a label on the form with some dialogue instructing the user.
Do what is necessary in each of the Button click events then hide the form. When the code returns from whence it was called, unload it.
You have to hide the form as you cannot unload a Modal form while it is being displayed.
Summary: Iam using a database application i.e ADO in vb6. In backend iam using MS Access . The problem is when i press the save button to save my data in the database vb6 shows a error In module i make a DS...
Summary: I want to use Switch Statement in VB6 .I have three option buttons & a command button .I want that when i select option1 & press my command button & write 1 in Input box then it will show a message "I...
Summary: IN VB6 i want to save my text file .I use Rich text & for saving my file i use Microsoft CoomonDialog. When i press the save button it show me a dialog box that where should i save my file .After ...