![]() |
|
|||||||
| 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 |
|
||||
|
So I'm about 75% done on my current app, and my vacations have ended, so at work i use mostly my device to code..
My project works fine on the desktop, but in the device I get an error, with no specific descripton... I can't figure out whts wrong, but if I comment the problematic lines, wich have to do with a small 6 itens array, the Ide just won't close after a run command... I use only 2 DLLs in my project both compatible with device/desktop usage... Is this a bug, or am I missing something? Here is my project,only the englis text file has ALL the menus texts...Other are dummies, and the russian file is missing because it would zip...
__________________
Paulo Gomes Porto, Portugal PC: Dual-Core 1,8Ghz, 2GB RAM, 80GB HD PPC: Qtek9000, 1GB SD DLL Version Listing |
|
||||
|
I get an error on the device on the line
Code:
Control("imgBtn" & x +1,ImageButton).image = AppPath & "\" & Flag(x)
App close so far presents no problem... Please notice that most code is in the codefile.txt...
__________________
Paulo Gomes Porto, Portugal PC: Dual-Core 1,8Ghz, 2GB RAM, 80GB HD PPC: Qtek9000, 1GB SD DLL Version Listing |
|
||||
|
I almost lost my sleep tonight trying to figure out what was wrong and that pop up as one of the possible reasons, but why doesnt affect the execution on the desktop?..
__________________
Paulo Gomes Porto, Portugal PC: Dual-Core 1,8Ghz, 2GB RAM, 80GB HD PPC: Qtek9000, 1GB SD DLL Version Listing |
|
||||
|
Quote:
I guess that the system API on the desktop can handle this extra space character and the device can't. |
|
||||
|
Again, it runs on the desktop but not on the device.....
From the begining... Tap menu -> New...Defaul.INI Node is created... Select default.INI, Tap&Hold, till context menu apears.... Add several Items to the "File"... Now let's delete One... Select one, tap&hold and select delete.. when promted, choose Yes... On the desktop, the chosen node is deleted, with no problems, but in the device it errors and once again, I don't se why...(?) PS:@ EREL Perhaps this should be mooved to the Question forum instead... Thanks
__________________
Paulo Gomes Porto, Portugal PC: Dual-Core 1,8Ghz, 2GB RAM, 80GB HD PPC: Qtek9000, 1GB SD DLL Version Listing |
|
||||
|
Hi Cableguy,
to get the delete going on the device you have to change the following statements (case "9" of the context handling) in your codefile.txt to: Code:
Case "9" If Msgbox(Txt(27),Txt(28),cMsgboxYesNo,cMsgBoxQuestion) = cYes Then IF Node.IsRoot Then TreeView.RemoveNode(Node.Value) Else Parent.Value = Node.Parent Parent.RemoveNode(Node.Value) End If Else Return End If ![]() On the desktop "TreeView.RemoveNode" works for all nodes belonging to the whole tree. On the device you have to handle the differences between "TreeView.RemoveNode" and "Node.RemoveNode" manually. Only root nodes can be removed with "TreeView.RemoveNode". For all other (sub)nodes you have to use "Node.RemoveNode". ![]() specci48 |
|
||||
|
Thanks Specci...
__________________
Paulo Gomes Porto, Portugal PC: Dual-Core 1,8Ghz, 2GB RAM, 80GB HD PPC: Qtek9000, 1GB SD DLL Version Listing |
![]() |
| 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 |
| Application runs Full screen on device but no keyboard | mozaharul | Questions & Help Needed | 2 | 08-14-2008 11:44 AM |
| When compiling for Device, Desktop code is used | Woinowski | Bug Reports | 6 | 07-03-2008 10:30 PM |
| Source Code Folders On The Device | RandomCoder | Basic4ppc Wishlist | 13 | 03-23-2008 02:01 PM |
| Using rapi from desktop to copy file from device to desktop | sunnyboyj | Questions & Help Needed | 9 | 02-08-2008 12:40 PM |
| Desktop Version - Design and Code at the same time | sloopa | Basic4ppc Wishlist | 2 | 05-08-2007 06:55 PM |