In this category you can exchange your programming questions and solutions.
-
HaGGiS
- Posts: 2
- Joined: Tue Nov 08, 2005 3:00 pm
Post: # 48Post
HaGGiS
Thu Jun 07, 2007 4:57 am
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
-
PaPi
- Posts: 114
- Joined: Wed May 16, 2007 11:55 am
Post: # 49Post
PaPi
Thu Jun 07, 2007 6:11 pm
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