RSS News This is a discussion on Coding Prank, fake error message, what do the numbers mean.? in the RSS News; Description: ok, i learnt how to make a fake error message by typing
lol = msgbox ("Windows has detected an error." ... |
 Coding Prank, fake error message, what do the numbers mean.? |
|
|
|
Private
|
|
Rupees: 168.00
Bank: 500.00
Total Rupees: 668.00
|
|
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
|
|
|
Coding Prank, fake error message, what do the numbers mean.? -
January 2nd, 2008
ok, i learnt how to make a fake error message by typing
lol = msgbox ("Windows has detected an error." ,16, "Error")
into notepad and then saving it as .vbs but i was wondering if anyone knew what the numbers represent
i know that 16 make a window with "ok" pop up and that 20 makes a window with the choices "yes" and "no" pop up.
does any1 have a list of what other numbers you can use and what they make the window show?
|
 |
 |
|
|
|
Private
|
|
Rupees: 8.80
Bank: 500.00
Total Rupees: 508.80
|
|
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
|
|
|
January 2nd, 2008
It would be easier with visual basic script, not vbscript, but here is a list:
* 0 = vbOKOnly - OK button only
* 1 = vbOKCancel - OK and Cancel buttons
* 2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons
* 3 = vbYesNoCancel - Yes, No, and Cancel buttons
* 4 = vbYesNo - Yes and No buttons
* 5 = vbRetryCancel - Retry and Cancel buttons
* 16 = vbCritical - Critical Message icon
* 32 = vbQuestion - Warning Query icon
* 48 = vbExclamation - Warning Message icon
* 64 = vbInformation - Information Message icon
* 0 = vbDefaultButton1 - First button is default
* 256 = vbDefaultButton2 - Second button is default
* 512 = vbDefaultButton3 - Third button is default
* 768 = vbDefaultButton4 - Fourth button is default
* 0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)
* 4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)
|
 |
 |
|
|
|
Private
|
|
Rupees: 8.80
Bank: 500.00
Total Rupees: 508.80
|
|
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
|
|
|
January 2nd, 2008
It would be easier with visual basic script, not vbscript, but here is a list:
* 0 = vbOKOnly - OK button only
* 1 = vbOKCancel - OK and Cancel buttons
* 2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons
* 3 = vbYesNoCancel - Yes, No, and Cancel buttons
* 4 = vbYesNo - Yes and No buttons
* 5 = vbRetryCancel - Retry and Cancel buttons
* 16 = vbCritical - Critical Message icon
* 32 = vbQuestion - Warning Query icon
* 48 = vbExclamation - Warning Message icon
* 64 = vbInformation - Information Message icon
* 0 = vbDefaultButton1 - First button is default
* 256 = vbDefaultButton2 - Second button is default
* 512 = vbDefaultButton3 - Third button is default
* 768 = vbDefaultButton4 - Fourth button is default
* 0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)
* 4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)
|
 |
 |
|
|
|
Private
|
|
Rupees: 8.80
Bank: 500.00
Total Rupees: 508.80
|
|
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
|
|
|
January 2nd, 2008
It would be easier with visual basic script, not vbscript, but here is a list:
* 0 = vbOKOnly - OK button only
* 1 = vbOKCancel - OK and Cancel buttons
* 2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons
* 3 = vbYesNoCancel - Yes, No, and Cancel buttons
* 4 = vbYesNo - Yes and No buttons
* 5 = vbRetryCancel - Retry and Cancel buttons
* 16 = vbCritical - Critical Message icon
* 32 = vbQuestion - Warning Query icon
* 48 = vbExclamation - Warning Message icon
* 64 = vbInformation - Information Message icon
* 0 = vbDefaultButton1 - First button is default
* 256 = vbDefaultButton2 - Second button is default
* 512 = vbDefaultButton3 - Third button is default
* 768 = vbDefaultButton4 - Fourth button is default
* 0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)
* 4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)
|
 |
 |
|
|
|
Private
|
|
Rupees: 8.80
Bank: 500.00
Total Rupees: 508.80
|
|
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
|
|
|
January 2nd, 2008
It would be easier with visual basic script, not vbscript, but here is a list:
* 0 = vbOKOnly - OK button only
* 1 = vbOKCancel - OK and Cancel buttons
* 2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons
* 3 = vbYesNoCancel - Yes, No, and Cancel buttons
* 4 = vbYesNo - Yes and No buttons
* 5 = vbRetryCancel - Retry and Cancel buttons
* 16 = vbCritical - Critical Message icon
* 32 = vbQuestion - Warning Query icon
* 48 = vbExclamation - Warning Message icon
* 64 = vbInformation - Information Message icon
* 0 = vbDefaultButton1 - First button is default
* 256 = vbDefaultButton2 - Second button is default
* 512 = vbDefaultButton3 - Third button is default
* 768 = vbDefaultButton4 - Fourth button is default
* 0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)
* 4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)
|
 |
 |
|
|
|
Private
|
|
Rupees: 8.80
Bank: 500.00
Total Rupees: 508.80
|
|
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
|
|
|
January 2nd, 2008
It would be easier with visual basic script, not vbscript, but here is a list:
* 0 = vbOKOnly - OK button only
* 1 = vbOKCancel - OK and Cancel buttons
* 2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons
* 3 = vbYesNoCancel - Yes, No, and Cancel buttons
* 4 = vbYesNo - Yes and No buttons
* 5 = vbRetryCancel - Retry and Cancel buttons
* 16 = vbCritical - Critical Message icon
* 32 = vbQuestion - Warning Query icon
* 48 = vbExclamation - Warning Message icon
* 64 = vbInformation - Information Message icon
* 0 = vbDefaultButton1 - First button is default
* 256 = vbDefaultButton2 - Second button is default
* 512 = vbDefaultButton3 - Third button is default
* 768 = vbDefaultButton4 - Fourth button is default
* 0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)
* 4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)
|
 |
 |
|
|
|
Private
|
|
Rupees: 8.80
Bank: 500.00
Total Rupees: 508.80
|
|
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
|
|
|
January 2nd, 2008
It would be easier with visual basic script, not vbscript, but here is a list:
* 0 = vbOKOnly - OK button only
* 1 = vbOKCancel - OK and Cancel buttons
* 2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons
* 3 = vbYesNoCancel - Yes, No, and Cancel buttons
* 4 = vbYesNo - Yes and No buttons
* 5 = vbRetryCancel - Retry and Cancel buttons
* 16 = vbCritical - Critical Message icon
* 32 = vbQuestion - Warning Query icon
* 48 = vbExclamation - Warning Message icon
* 64 = vbInformation - Information Message icon
* 0 = vbDefaultButton1 - First button is default
* 256 = vbDefaultButton2 - Second button is default
* 512 = vbDefaultButton3 - Third button is default
* 768 = vbDefaultButton4 - Fourth button is default
* 0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)
* 4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)
|
 |
 |
|
|
|
Private
|
|
Rupees: 8.80
Bank: 500.00
Total Rupees: 508.80
|
|
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
Join Date: Jan 2008
|
|
|
January 2nd, 2008
It would be easier with visual basic script, not vbscript, but here is a list:
* 0 = vbOKOnly - OK button only
* 1 = vbOKCancel - OK and Cancel buttons
* 2 = vbAbortRetryIgnore - Abort, Retry, and Ignore buttons
* 3 = vbYesNoCancel - Yes, No, and Cancel buttons
* 4 = vbYesNo - Yes and No buttons
* 5 = vbRetryCancel - Retry and Cancel buttons
* 16 = vbCritical - Critical Message icon
* 32 = vbQuestion - Warning Query icon
* 48 = vbExclamation - Warning Message icon
* 64 = vbInformation - Information Message icon
* 0 = vbDefaultButton1 - First button is default
* 256 = vbDefaultButton2 - Second button is default
* 512 = vbDefaultButton3 - Third button is default
* 768 = vbDefaultButton4 - Fourth button is default
* 0 = vbApplicationModal - Application modal (the current application will not work until the user responds to the message box)
* 4096 = vbSystemModal - System modal (all applications wont work until the user responds to the message box)
|
 |
|