![]() |
|
|||||||
| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| Questions & Help Needed Post any question regarding Basic4ppc. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Hello
1 - I suppose that shell command run with static parameters : (data known before compiling) ex : shell("notepad.exe","") '--- running or my_command = "cmd.exe" shell(my_command,"") '--- running But if i want a dynamic run as : my_command = textbox1.text Then shell command doesnt run ! Any workaround solution ? 2 - it seems that shell command doesnt run on Device (and generates an error). Where is my mistake ? 3 - For example Table component Event is SelectionChanged. So, may i create an other kind of event ? something like "click", ex : sub main ....... AddTable ("Form1", "my_table", 30, 30, 200, 200) AddEvent("my_table", click, "job_click") end sub ....... sub job_click myjob end sub It doesnt run, maybe any workaround ?, any "super_control" command.... 4 - New B4ppc I havent received any email, what is the way to touch the last 6.30 ? thanks for help |
|
||||
|
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,"")
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. |
|
|||
|
You right,
For the desktop, the shell command run dynamicaly, i found a bug in my program. For the device , its running too but i have some PATH problem (i suppose). For Table Event, i would place a ligne_edit at a defined row. I will study your Door library. Thanks for this quick help |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| return codes of a shell command | pmu5757 | Questions & Help Needed | 18 | 06-15-2008 07:33 PM |
| Shell command | J12345T | Questions & Help Needed | 2 | 06-08-2008 09:49 AM |
| A bot as a User? | Cableguy | Forum Discussion | 2 | 05-24-2008 03:23 PM |
| String and Shell questions | HARRY | Questions & Help Needed | 4 | 12-18-2007 05:56 PM |
| How to find out that Shell command has finished | petrbury | Questions & Help Needed | 6 | 10-16-2007 07:20 PM |