Page 1 of 1

Error

Posted: Thu Jun 07, 2007 4:57 am
by HaGGiS
Hi
Can anyone explain why this won`t work?
Thanks in advance
HaGGiG

Appicon "arctool.ico"
object form as form
     center=true
     caption="Test Form"
     borderstyle=bsToolWindow
     
     object button as button
           caption="Explorer"
           onclick=clicked
     end object
     
end object

form.ShowModal


sub clicked()
run ?explorer.exe?
end sub

Error

Posted: Thu Jun 07, 2007 6:11 pm
by PaPi
Hi,  it is going,  like this:

.
.
.
sub clicked()
run "c:windowsexplorer.exe"  good characters
end sub

This is " not same   this:  ? and  ? !!!!!!

sub clicked()
run ?explorer.exe?   bad characters
end sub

PaPi