answersLogoWhite

0


Best Answer

Essentially.

if msgbox("End?",vbYes+vbNo,"Title")=vbYes then end

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you make a fake yes no box using VBScript that makes the script continue if yes but end if no?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

At can be used to run script files using VBScript or JScript from the Windows desktop or from a command prompt?

windows scripting host


What can be used to run script files using VBScript or Jscript from the windows desktop or from a command prompt?

Windows Scripting Host (WSH)


How do you compute the nth Fibonacci number using VBScript?

<html> <body> <script type="text/vbscript"> Dim a, b, c, n, nth a = 0 b = 1 n = Cint(InputBox("Enter the value of ""n""")) For nth = 1 to n Step 1 Document.Write(b&"<br/>") c = a + b a = b b = c Next </script> </body> </html>


Home page containing pull down menu box for the links using vbscript?

Home page containing pull down menu box for the links using VBScript.


How do find factorial using vbscript?

<html> <script language="vbscript"> n=cint(inputbox("Enter a number")) dim f f=1 if n<0 then Msgbox "Invalid number" elseif n=0 or n=1 then MsgBox "The factorial of given number "&n&" is :"&f else for i=n to 2 step -1 f=f*i next MsgBox "The factorial of given number "&n&" is :"&f end if </script> </html>


How do you find out how many digits are in integer using vbscript?

num=32767 MsgBox(len(num))


What has the author Sloan Trasher written?

Sloan Trasher has written: 'Building web applications using VBScript' -- subject(s): World Wide Web, HTML (Document markup language), VBScript (Computer program language)


How do you construct HTML editor in C language?

Theres not really much point.... You would be better off using VBScript


Why use VBscript in ASP?

The choice of VBscript in ASP versus other options is mostly personal perferance. Using VBscript allows you access to thousands of functions and operators to help you code easier, and more effectivley.A personal preference towards VBscript when coding in ASP may be because it follows the same style of programming. For example, a Javascript operator might look like this:&&Whereas an asp operator will be written as:AndVBscript follows this same methodology, and make for an easier "mesh" with the natural coding of ASP.


How do you add two matrices using Linux shell script?

write ashell script to add awo matrix using array.


What is pictorial script?

Anicient scripts using pictures and symbols are called pictorial script.


What is difference in Continue using vs continue to use?

There isn't a difference in the statements continue using and continue to use. Both mean to keep going and not stop using a specific item.