[nsbasic-ce] Will someone with an HTC Touch please test these 2 programs?

2009-02-03 Thread aelenteny
A user of these programs who has an HTC Touch says that there is an error opening the programs after download/install. I just tried them on my Palm 750v WM6 device and they downloaded/installed/opened fine.but I don't have a Touch. If someone could activesync/download/open the files at h

[nsbasic-ce] Re: Wininet InternetOpen fails on CE 2.11

2009-02-03 Thread autoexecdotbat
I forgot to mention that I do have INTERNET_OPEN_TYPE_DIRECT defined prior to that statement and it is a constant value set to 1. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "nsb-ce" group. To post to this group,

[nsbasic-ce] Wininet InternetOpen fails on CE 2.11

2009-02-03 Thread autoexecdotbat
I have a Mobilepro 780 running CE 2.11 (HPC/Pro) and am trying to get the wininet InternetOpen API function working. The same API function declaration and function call works just fine on CE 3.0 (HPC2000) and WM2003. Here is my function declaration: Declare "Function InternetOpen Lib ""wininet""

[nsbasic-ce] Re: Storing data on the ce device

2009-02-03 Thread Shaun
Hey Brian, Welcome to NSB. Sorry I can't help much on the ADOCE side, but I can give you some tips on the files side. The system I've built using NSB utilizes a similar setup to what you're talking about by using a key number. All I do is append the number to the end of the file name. The n

[nsbasic-ce] Re: Pocket PC 4.2 and NSB 7.0 conflicts?

2009-02-03 Thread Shaun
It's a Trimble GeoXT 2003. --- In nsbasic...@yahoogroups.com, "George Henne" wrote: > > What is the device? > > > >Hi All, > > > >I'm sure it's in the documentation somewhere, but I haven't been able > >to find it. I've got an app designed in NSB 7.0.5b that runs fine on > >Windows Mobile

[nsbasic-ce] Storing data on the ce device

2009-02-03 Thread brianm...@ymail.com
Hi I am new to ns basic and need a little help? I am trying to store some recipes on a system using NS Basic Ce to develop but I don't understand a couple of things. If I use ADOCE and create a database the first time I run the program is the database that is created automatically stored. If

Re: [nsbasic-ce] Re: Memory man. diff. between runtime versions

2009-02-03 Thread George Henne
Does it happen every time you run the program, right away? >I've tried hard-soft reset for several times. no change > > > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> Sometimes the memory on these devices gets fragmented. Does a soft or >> hard reset help? >> >> > >> >

Re: [nsbasic-ce] Re: binary file

2009-02-03 Thread George Henne
This will certainly work. Another solution is to use this control: >Don't bother. the file control does not do what i want. >the createfile and writefile however do. >sample of my code: >the functions for winsocket connect are missing but this i

Re(2): [nsbasic-ce] Re: Path problem opening database with sqlite

2009-02-03 Thread George Henne
I haven't tried this, but could you set up a link and open the link instead? >You can try to enumerate the folders on your device by using NewObjects >AXpack1's (free) OpenDirectory (www.newobjects.com). Something like this: >  >AddObject "newObjects.utilctls.SFMain", "mySFMain" >Set myFileSys =

Re: [nsbasic-ce] Pocket PC 4.2 and NSB 7.0 conflicts?

2009-02-03 Thread George Henne
What is the device? >Hi All, > >I'm sure it's in the documentation somewhere, but I haven't been able >to find it. I've got an app designed in NSB 7.0.5b that runs fine on >Windows Mobile 5 devices. However, I was just handed a piece of older >equipment and told "get it working." It's runni

Re: [nsbasic-ce] Re: Path problem opening database with sqlite

2009-02-03 Thread Ricardo Carraretto
You can try to enumerate the folders on your device by using NewObjects AXpack1's (free) OpenDirectory (www.newobjects.com). Something like this: AddObject "newObjects.utilctls.SFMain", "mySFMain" Set myFileSys = mySFMain Set dir = myFileSys.OpenDirectory("/") For Each i In dir.contents <.. her