|
-
Oct 19th, 2000, 10:22 AM
#1
Thread Starter
New Member
i am developing a touchscreen interface using VB6.0 and NT. i wish to create my own message box function, larger buttons, icons, etc. but don't know how to create it such that i can call multiple message boxes at the same time. by creating a form for the message box in vb i can call it modally but because the message que is not disabled(don't want it to be either) i sometimes get another call to the message box routine from elsewhere in my code. i am trying to duplicate the calls and constants used in the normal messagebox routine, and have that all worked out. should i try to develop this as a class? how then would i create a new instance on every call, and how would i create it modally? please help.
-
Oct 19th, 2000, 10:58 AM
#2
For the modal part just use:
(I think 1 may be replaced with TRUE). This shows your form modally....
Enjoy!
-
Oct 19th, 2000, 11:01 AM
#3
Fanatic Member
Code:
MyForm.Show vbModal
VB6 sp5, SQL Server 2000, C#
There are no stupid questions. Only stupid people. 
-
Oct 19th, 2000, 11:37 AM
#4
Thread Starter
New Member
what?
i know how to show a form modally, how do i create multiple copies of a form in runtime based upon a set of parameters passed to a function?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|