Dear Ben, Thank you very much for letting me know. I'll get the runtimes for the CuWin3500 and give it a go. I tried installing 7.0.4 on the device for...
... Andrew, The CuWin3500 comes pre-loaded with the Windows CE 5.0 Pro BSP, and I am creating the NSBasic programs on my XP desktop, connecting to the...
Andrew I am playing with the demo of NSB still. It works fine, I had to rebuild the WinCE for "English" using the 120 day trial of platform builder 5. as per...
... Contacting Charlie Springer from www.andahammer.com his quote: We expect to have licensed WindowsCE 6.0 very soon. A company that works with Microsoft has...
Dear Ben and Martin, Thank you very much for all the info, it's nice to know I'm not the only person who wants to use nsb on an embedded board. The news on the...
This control worked for me. I was excited about using the NTP client from IP*Works!, but it never worked. No big deal, I just wrote a SOAP call to grab the...
George The Sub b1_click b1.Backcolor = &H00C0C0C0& TextBox1.Text = "10" 'for testing End Sub The above works (for the hardcoded buttons), and color changes on...
I know someone is going to tell me this is blindingly obvious, but I really have done a search of the Language Reference and the Technotes without success :-) ...
... No, but it did point me to GETCOMMANDLINE, which does give me what I want :-) Out of interest CurrentPath returns a null value. I see from the Language...
This is what I am doing: For i = 1 To 3 name = "b"&CStr(i) AddObject "CommandButton",name,12+(55-12)*(i-1),80,36,32 Execute(name & ".Caption = " & CStr(i)) ...
A bit of history here: When NS Basic/CE was first conceived in 1998, VBScript didn't have an Execute statement. We figured it would be a cool thing to have, so...
My question is whether there is anything in the works to programatically obtain the application properties for display in the actual app such as "GetVersion"...
when I have an exception in a Win Mobile app, I usually pop up a MsgBox for the user. But I also need to use a Beep or other warning sound sometimes, and I...
Hi, anyone know to use DeviceIoControl for retrieve SD ID for application licenses? Or anyone know an other method for read hardware ID (OS WinCe 5.0/Mobile...
Does your SQL version support importing from a comma separated value (CSV) file? If so, export a CSV from Excel and import it into SQL. You will have to ensure...
you need a properly formatted query. Â Â "select * from [table name goes here] where [column name goes here] = '" & tbLastName.Text & "'" ... From: EMERSON...
Sorry I make mistake to write here I use this form cmd="SELECT * FROM NameDB WHERE lastname = """ & tbLastName.Text & """" showStatus cmd Set r=db.Execute(...