Can't use InputBox in vbScript
If I try and run the following script in SuperEdi, the program freezes and then crashes. It displays the Input box, but crashes before it can display the data in the console. Is there something wrong with my code, or is this a bug with SuperEdi? Thanks David Console.Visible = True Call Console.Clear()
strFind = InputBox( "Enter the text to find", "", "" ) Call Console.WriteLine( "Text: " & strFind )
|