View Single Post
  #2 (permalink)  
Old 05-15-2008, 05:42 PM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 3,185
Default

1. There is no difference between:
Code:
Shell("Notepad.exe","")

my_command = textbox1.text 'Assuming textbox1.text = "notepad.exe"
Shell(my_command,"")

Shell(textbox1.text,"")
2. Shell command works on the device. Which error do you get?
Which application do you try to run? (cmd.exe is not available on the device).
3. You can't simply create new types of events.
Why do you need a click event rather than SelectionChanged event?
It is possible to add this event with the Door library.
See this example: Table - MouseDown event and more

4. Please contact support@basic4ppc.com.
Reply With Quote