Re: [nsbasic-ce] Is there a way to use the Vibration function of my phone in NS Basic

2009-07-18 Thread George Henne
You'll have to find the appropriate API call in Microsoft's documentation, then create a DECLARE statement to invoke it. >Instead of playing a sound I want to let my phone vibrate. Is that >posible in NS Basic? > > > > > >Yahoo! Groups Links > > > --~--~--

Re: [nsbasic-ce] How get Form name Show

2009-07-18 Thread George Henne
I'm not sure what you are asking here. If you want to be able to check that status of a particular form, it might be easiest to keep a global variable for each form with its current status. >My app has many form , How I get the form is Enable or Visible? > >EMERSON VIER > > > >---

Re: [nsbasic-ce] Re: Grid click

2009-07-18 Thread George Henne
n nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> There is not enough info here to give much help. >> >> Have you added a grid object named "grid" to your project? >> >> Do you get any error messages? >> >> >I use the sam

Re: [nsbasic-ce] Re: Grid click

2009-07-19 Thread George Henne
Have a look to how the generated code does this. Create a form with a grid on it, save it as txt file, then open in Notepad. Sent from my iPhone On Jul 19, 2009, at 2:06 PM, EMERSON VIER wrote: > > > The problem, is grid_click only work on default form > Emerson Vier > > From: rmrsoft > Se

Re(2): [nsbasic-ce] How get Form name Show

2009-07-20 Thread George Henne
When you change the status (say, by hiding a form), change the value of your variable. > > >How I get current Status? > >From: George Henne >Sent: sábado, 18 de julho de 2009 07:29 >To: nsbasic...@yahoogroups.com >Subject: Re: [nsbasic-ce] How get Form name Show >

Re: [nsbasic-ce] Getserialnumber()

2009-07-20 Thread George Henne
GetSerialNumber should give a unique number on all Windows Mobile devices. >In all actual devices the same result in getserialnumber() ? > > > > > >Yahoo! Groups Links > > > --~--~-~--~~~---~--~~ You received this message becau

Re: [nsbasic-ce] Re: Getserialnumber()

2009-07-21 Thread George Henne
I can't find any documentation from Microsoft that guarantees the serial numbers are unique. Which devices do they have? Are they older ones? >Several users have reported the same getserialnumber. As can be? >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >>

Re: [nsbasic-ce] NSBasic & unsupported devices

2009-07-26 Thread George Henne
We looked hard at doing a version for non touchscreen devices about 2 years ago. At the time, Microsoft seemed to be touting the future of smartphones as non touchscreen devices. Then came the iPhone. The flagship devices from all major manufacturers are now touch screen devices. Even Blackberry

Re: [nsbasic-ce] DT366 WEBPAD

2009-07-26 Thread George Henne
This device uses a AMD GEODE GX 533 processor. It's an x86 processor, which we do not support. We get asked about once a year for x86 Windows CE support - not often enough to justify another version of NS Basic. George Henne NS BASIC Corporation

Re: [nsbasic-ce] M3Mobile & Barcode reader

2009-07-27 Thread George Henne
. George Henne NS BASIC Corporation http://www.nsbasic.com >I am trying to work with the barcode reader of M3Mobile device, But the >sdk I got only samples for c and dot net. Can anybody help. > > > > >

Re: [nsbasic-ce] Re: M3Mobile & Barcode reader

2009-07-27 Thread George Henne
Great news! When you get a chance, run the Benchmark sample. We'll add it to Tech Note 22. <http://www.nsbasic.com/ce/info/technotes/TN22.htm> >Thank you George. It works fine! > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> &g

Re: [nsbasic-ce] Re: Grid click

2009-07-28 Thread George Henne
End If > > Form2_Form.Visible = False > callIfExists("Form2_Unload") >End Sub 'Form2_Hide > >Sub CallIfExists(theSub) >Dim s > If ScriptEngineMajorVersion < 5 Then > Execute("On Error Resume Next:"&theSub) 'attempt to exec

Re: [nsbasic-ce] Re: Grid click

2009-07-29 Thread George Henne
s, now I will make test on my >project. > >Why this not work when I use the AddObject?? > >Why I not see the properties from the this object? > > >Thx for you help. > >EMERSON VIER > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> &

Re: [nsbasic-ce] UPDOWN Control for NS Basic/Ce or Desktop

2009-08-03 Thread George Henne
Here's a translation: I'm sort of a beginner in NS Basic. I know Purebasic very well. I have been looking for an equivalent to PureBasic's SpinGadget(), a textbox with a scrollbar to set its value. Unfortunately, it doesn't do the whole thing, as it can only go through the values one at a time in

Re: [nsbasic-ce] Re: UPDOWN Control for NS Basic/Ce or Desktop

2009-08-05 Thread George Henne
More translation... I have uploaded a sample into the Files directory of this group. "UpDownControll.nsd". It has a SpinGadget aka UpDownControl. The VScrollBar updates the textbox automatically. You don't have to organize these controls specially. Moving up and down in a positive or negative dire

Re: [nsbasic-ce] Re: UPDOWN Control for NS Basic/Ce or Desktop

2009-08-06 Thread George Henne
gt;> desktop instead of nsbasic-ce. At least I received the upload >> notification from there. >> Kind regards >> Thomas >> >> Am 05.08.2009 um 13:19PM schrieb George Henne: >> >> > More translation... >> > >> > I have uploaded a

Re: [nsbasic-ce] Cannot open the Comm Port

2009-08-10 Thread George Henne
Could the comPort be a different number? > > >Hi, > >I downloaded the Franson Serial Tools to add printer support to my WinCE >application, which runs on a Palm Treo 750. Using the serial number >provided by NSBasic, I proceded to code as follows: > >AddObject "serialce.port.1","objPort" >AddObje

Re: [nsbasic-ce] Version Major and Version Minor

2009-08-20 Thread George Henne
The values are in two global variables, AppMajor and AppMinor. >Is there any way to read the Version Major and Version Minor versions? > >We can set these in the NSBasic/CE Desktop software as project >properties, but I don't know how to read these version settings from the >app running on a CE de

Re: [nsbasic-ce] Problem with Palm treo 700wx (uses windows mobile 6)

2009-08-28 Thread George Henne
Two things: 1. What size screen did you design your app for? If it is for the usual 240x320, it will not look right on the Treo, which has a different screen size - it's square and 240 x 240. Your program needs to allow for this and adjust the objects as needed. 2. RunTimeFat.ARM42.exe is only fo

Re: [nsbasic-ce] Re: Problem with Palm treo 700wx (uses windows mobile 6)

2009-08-28 Thread George Henne
oblem and would that then also be compatible with other >devices? Thanks for your insights. > >Jim > > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> Two things: >> >> 1. What size screen did you design your app for? If it is f

Re: [nsbasic-ce] Re: Problem with Palm treo 700wx (uses windows mobile 6)

2009-08-28 Thread George Henne
Hi Jim, We can't really support 6.5 anymore - it's really old. Also, it does not have the changes needed for Vista. The disappearing boxes sound like a Vista problem. You can upgrade to 8.0 here: <http://www.nsbasic.com/order.shtml> George Henne

Re: [nsbasic-ce] Re: Problem with Palm treo 700wx (uses windows mobile 6)

2009-08-29 Thread George Henne
the 6.5 program on my laptop which is xp. > >Jim > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> Hi Jim, >> >> We can't really support 6.5 anymore - it's really old. Also, it does not >> have the changes needed

Re: [nsbasic-ce] nsbce 8.0...do I include 'runtime' when deploying app???

2009-08-31 Thread George Henne
You might want to read through the ReadMe carefully again. If you use Start under the Run menu, it should do everything: create an installer and run it. After you complete all the prompts, your program will be installed on the device, as well as the standard runtime files. I'm not sure why you nee

Re: [nsbasic-ce] Re: nsbce 8.0...do I include 'runtime' when deploying app???

2009-08-31 Thread George Henne
roject properties but can't see how to get there. > >Jim > > > > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> You might want to read through the ReadMe carefully again. If you use >> Start under the Run menu, it should d

Re: [nsbasic-ce] Re: nsbce 8.0...do I include 'runtime' when deploying app???

2009-08-31 Thread George Henne
to send a >separate runtime file like RuntimeFat.ppc.exe when you distribute your >app, right? > >Jim > > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> If ActiveSync/WMDC does not see the device, you do have to use the CAB >> file.

Re: [nsbasic-ce] Re: Version Major and Version Minor

2009-09-02 Thread George Henne
are empty, or haven't been assigned their values. > >Is there any way to force the initialization of those variables? > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> The values are in two global variables, AppMajor and AppMinor.

Re: [nsbasic-ce] loading the .cab file into windows/startup with CE5

2009-09-02 Thread George Henne
I don't have a device here that works this way, so there isn't a lot of testing I can do here. When your device powers off and loses its memory, it appears that the registry remains. It's the contents of \Program Files that gets lost. >George > >The device I have has no ram back up. Every restart

Re: [nsbasic-ce] Crashing of NSB 7 runtime at program exit

2009-09-02 Thread George Henne
Yes, this is fixed in NS Basic/CE 8.0. The fix is not available on older devices. >Hi, > >Is there an update to the NSB CE 7 runtime that fixes the 'crashing on >program exit on Windows CE 6.1 and newer devices' bug ? > >I saw that this bug is fixed with NSB 8, but we have a rather complex >proj

Re: [nsbasic-ce] PictureBox problem

2009-09-02 Thread George Henne
The Touch Viva has a QVGA screen (480x640) while the older iPaq 2210 has a 240x320 screen. The text is being displayed in hi resolution on the Touch. I do not know of a fix for this. The PictureBox is doing what it is supposed to do, taking advantage of the additional pixels to do a better displa

Re: [nsbasic-ce] CE 8.0 built in installer's runtime fails with my app on 2003 device

2009-09-02 Thread George Henne
It should work OK on a WM 2003 device. What happens if you do a hard reset of the device? (Remember to back anything important.) Where does Basic.PocketPC4_ARM.cab come from? I suspect it is from NS Basic/CE 7. Let's see if the hard reset takes care of your company name issue as well. Otherwise,

Re: [nsbasic-ce] Re: CE 8.0 built in installer's runtime fails with my app on 2003 device

2009-09-03 Thread George Henne
the same positive results as with the BASIC.PocketPC4_ARM.cab. >Earlier this year Rolf Brandt sent that file when he was helping me be >efficient with an emulator. However, I had found it previously in some >other folder on my computer. >> > > >> > >

Re: [nsbasic-ce] Re: CE 8.0 built in installer's runtime fails with my app on 2003 device

2009-09-03 Thread George Henne
What do you have in the Company field in Project Properties? If it is blank, the installer appends "Co" to the end of your app name to create a company name for you. >As far as the 'company name' issue goes, the only time it looks screwy >is when it first starts the installer with this message: "

Re: [nsbasic-ce] Re: PictureBox problem

2009-09-03 Thread George Henne
I'm seeing some similar results on another problem I am looking at. Let's follow up on this offline. George Henne NS BASIC Corporation http://www.nsbasic.com >Hello George, > >The Touch Viva has the same 320 x 240 screen resolution scree

Re: [nsbasic-ce] Tab key

2009-09-03 Thread George Henne
Tabs do not work well, I agree. When NS Basic came out for Windows Mobile, Microsoft strongly discouraged us from doing anything keyboard related: tab key support was not allowed for. After all, Pocket PC/ Windows Mobile devices would not have keyboards. We have put some work into this, and it's n

Re: [nsbasic-ce] Re: CE 8.0 built in installer's runtime fails with my app on 2003 device

2009-09-03 Thread George Henne
gt;Joe > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> We'll see if we can make it easier. We did make it better based on your >> suggestion: if you right click on Resources, it brings up the list of >> controls, which you can then select

Re: [nsbasic-ce] Re: CE 8.0 built in installer's runtime fails with my app on 2003 device

2009-09-04 Thread George Henne
=> MSCEFile.dll >FileSystem => MSCEFile.dll >GridCtrl => MSCEGrid.dll >etc > >Regards >Joe > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> When I do it here, I get a standard file picker, showing the directory >> \Pro

Re: [nsbasic-ce] Re: CE 8.0 built in installer's runtime fails with my app on 2003 device

2009-09-05 Thread George Henne
n of my app, mainly to experiment, it added "Co" to >>>> the name of the app and hasn't changed it since. It may have >>>> something to do with the fact that subsequent versions >>>> essentially have the same code. However, they have diffe

Re(2): [nsbasic-ce] About Online Education System

2009-09-07 Thread George Henne
I usually kill them as soon as they show up. This time, it was over a long weekend and I was away. He's gone now. > > >anyway to delete the user after teh first spam hits the group? > >--- On Sun, 9/6/09, brian smith wrote: > >From: brian smith >Subject: Re: [nsbasic-ce] About Online Education

Re: [nsbasic-ce] NSB 8 runtime

2009-09-08 Thread George Henne
What tool are you using to create your installer with? If you go into Tools...Options...Installer, you will find an option called "Delete Work Files". Normally True. If set to False, the app.inf, app.ini and app.bat files will existing in your project's directory after running Make Installer. Thes

Re: [nsbasic-ce] Re: CE 8.0 built in installer's runtime fails with my app on 2003 device

2009-09-08 Thread George Henne
t place in the Project >Explorer properties field. I, too, thought that would make the >difference but it does not. When I first created the installer for a >version of my app, mainly to experiment, it added "Co" to the name of >the app and hasn't changed

Re: [nsbasic-ce] NSExecute error

2009-09-10 Thread George Henne
You might try testing this with a simpler program to see what is going on. You should also try Execute and ExecuteGlobal, which have different (and poorly documented) scoping rules. >Hi All, > >I'm creating arrays based on my form names on the fly using NSExecute. >Form names are read from a text

Re: [nsbasic-ce] App Install/Run Issues

2009-09-10 Thread George Henne
If you're doing repeated updates to an existing program on the device, use the "Update App on device" option (F6). It's faster. Also, Start (F5) does not auto start the app. I'm not sure what the memory usage issue is. I believe that the Window Mobile OS may wait till garbage collection is needed

Re: [nsbasic-ce] Connect NS-Basic To MySQL Server

2009-09-10 Thread George Henne
Have a look at the TCPClient and TCPServer samples which come with NS Basic. You could modify the TCPServer sample to send the requests from TCPClient to MySQL, then return the results. >Need help how to connect/access MySQL Server from NS-Basic (using WM5)? >Thanks > > > >---

Re: [nsbasic-ce] Re: NSExecute error

2009-09-10 Thread George Henne
mes as needed. > >Shaun > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> You might try testing this with a simpler program to see what is going >> on. You should also try Execute and ExecuteGlobal, which have different >> (and poorly do

Re: [nsbasic-ce] Picturebox pixel problem

2009-09-14 Thread George Henne
8.0's picturebox, the older version does not have this problem. George Henne NS BASIC Corporation http://www.nsbasic.com >Hi, > >I've been trying to read individual pixels from an image in an >nscepicturebox. Even though I can get a screen g

Re: [nsbasic-ce] New file uploaded to nsbasic-ce

2009-09-14 Thread George Henne
Thanks for posting this! George Henne NS BASIC Corporation http://www.nsbasic.com > >Hello, > >This email message is a notification to let you know that >a file has been uploaded to the Files area of the nsbasic-ce >group. > > Fil

Re: [nsbasic-ce] Re: SHA256 checksum for a file

2009-09-15 Thread George Henne
Thanks for posting these tips! There is a lot of power in these controls. >In case you prefer or need another hash algorithm, you can also do MD5 >and SHA1 checksums: > >Function md5Checksum(checksum_filename) > Dim result, handle > result = "" > If file.FileExists(checksum_filename) Then >

Re: [nsbasic-ce] NSB CE experience list

2009-09-16 Thread George Henne
ite a >wrapper DLL. > >- Control height, width, top, left are in Pixels, not Twips as in eVB. >Workaround is to devide twips by 15 to get pixels > >- Picturebox DrawText font size is different on different devices. This >bug was recently already fixed by NSB. Thanks a lot to Geor

Re: [nsbasic-ce] Re: auto check for updates / auto apply updates

2009-09-18 Thread George Henne
To my knowledge, no one has done this, but it could be useful. You would have to use NetStreams to check the version with a server program. That's fairly easy. The next step, copying the file, is a bit more work: you should be able to do it with nsoftware's ftp lib. Finally, your program could use

Re: [nsbasic-ce] SHELLEXECUTE question

2009-09-18 Thread George Henne
Have you tried putting a BYE statement right after SHELLEXECUTE? >I want to call wceload with the SHELLEXECUTE function but I want to wait >until the program launched with SHELLEXECUTE is done executing. > >Is there a way to do this in NSB? > >Thanks, >Stephen > > > > >---

Re: [nsbasic-ce] Re: Running NSbasic app from sd card on power up

2009-09-18 Thread George Henne
A few comments: 1. Use NS Basic/CE 8. It makes a single installer that takes care of installing your program as well as any dll file that are needed and registry entries. 2. Put that installer (the .cab file that can optionally be produced) on the storage card. Do what has to be done with your pa

Re: [nsbasic-ce] Allegro CX

2009-09-18 Thread George Henne
AFAIK, this device should work fine. >I've had an enquiry from someone using an Allegro CX, a WinCE .NET 4.2 >device using an Intel Xscale processor. > >Has anyone any experience of using NSBasic on this? > >Regards, >Robert > > > > > >Yahoo! Groups Links > > >

Re: [nsbasic-ce] Close Keyboard Virtual

2009-10-06 Thread George Henne
See the KeyBoardStatus command in the Language Reference. >Hi all , > >How i Close Keyboard Virtual usinf nsbsic/ce ? > >Thank all . > >Lázaro. > > > > > >Yahoo! Groups Links > > > --~--~-~--~~~---~--~~ You received this m

Re: [nsbasic-ce] V8.02a - Illegal Character in Path ???

2009-10-06 Thread George Henne
Unfortunately, this restriction is within a Microsoft routine. We were surprised to find this restriction during our testing: it is not documented. >I just installed my upgrade from V7.xx to V8.xx and have this "Illegal >character in path" problem. > >I Read the release notes and noted >8.0.1 >

Re: [nsbasic-ce] Remove

2009-10-07 Thread George Henne
Bob, The message you are replying to was a spam message sent to the NS Basic/ CE Yahoo! group. Our policy is to have an open group, but delete spam and remove people who post it as quickly as possible. If you don't want to see messages from the NS Basic/CE group, instructions for removing your na

Re: [nsbasic-ce] NSBasic.win32.api_Hibernate event not working

2009-10-13 Thread George Henne
How are you testing this? What does your code to respond to Hibernate look like? >According to this page: http://www.nsbasic.com/ce/info/technotes/ >TN16.htm#api, the NSBasic.win32.api_Hibernate event is triggered before >device enters hibernation. > >I have tried to test this out, but the event

Re: [nsbasic-ce] Key Preview and CR's

2009-10-15 Thread George Henne
Another approach would be to use the _Changed event on for the object. When it is triggered, check what the last character in the field is. > > >Has anyone found the answer on how to trap for a CR from the Key Preview >function? > >I can see any Alph or Num keys but am having trouble trapping the C

Re: [nsbasic-ce] Re: NSBasic.win32.api_Hibernate event not working

2009-10-15 Thread George Henne
How is the event being generated? On Oct 15, 2009, at 4:56 PM, "t2thecathp" wrote: > I am just trying to open a MsgBox window with a message saying the > event was received. > > --- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> How are

Re: [nsbasic-ce] Re: NSBasic.win32.api_Hibernate event not working

2009-10-16 Thread George Henne
How do you know the event is happening? Are you forcing it somehow? >I am just trying to open a MsgBox window with a message saying the event >was received. > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> How are you testing this? >&g

Re: [nsbasic-ce] Installing app on htc ozone smartphone

2009-10-16 Thread George Henne
The HTC Ozone does not have a touch screen - we only support devices with touchscreens. George Henne NS BASIC Corporation http://www.nsbasic.com >I have a prospective customer who downloaded the evaluation version of >my app (created with nsb 8.0) bu

Re: [nsbasic-ce] Re: Installing app on htc ozone smartphone

2009-10-16 Thread George Henne
? Or NSBasic will work with the touch screen, but the buttons >will not be available? > >Ben > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> The HTC Ozone does not have a touch screen - we only support devices >> with touchscreens. &g

Re: [nsbasic-ce] Re: iPhone question

2009-10-22 Thread George Henne
ng the iphone now. > >Are there any new developments on this front? > >Mike > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> There is a Technology Demo, but the product itself is not available: >> >> <http://www.nsbasic.com/i

Re(2): [nsbasic-ce] android question

2009-10-22 Thread George Henne
We're certainly watching them closely. > > >George >Will the Android based devices be supported? >  >Thanks > >Woody > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "nsb-ce" group. To post to this group, send

Re: [nsbasic-ce] Windows Mobile 6.1

2009-10-23 Thread George Henne
We don't have any other reports of this, or even of NS Basic not working on any Windows Mobile 6.1 device. Do you have another CK3 you can try? >I have two Intermec devices (CN3 and CK3) that I'm running NS Basic/CE >and our software product on. Both devices are running 6.1 Classic, but >they ha

[nsbasic-ce] Windows Mobile 6.5

2009-10-23 Thread George Henne
s. Many of these devices have CPUs with clock speed much higher than previous device. We will add the numbers to this table: <http://www.nsbasic.com/ce/info/technotes/TN22.htm> George Henne NS BASIC Corporation http:/

Re: [nsbasic-ce] Re: Windows Mobile 6.1

2009-10-24 Thread George Henne
y 8.0, where a fix was made for this. If that does not fix the problem, please let me know! > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> We don't have any other reports of this, or even of NS Basic not >working on any Windows Mobile

Re: [nsbasic-ce] Tech Note 08a: Files with Records and Fields - need help !

2009-10-25 Thread George Henne
Are the records sorted by the first field? If so, you should be able to use the POS function to do a binary search into the file - which will be much faster. >Hi all, > >I must said I am new with NSBASIC but have some pratice with other >langages like VB, PHP, JAVA > >I have a 2MB file "csv"

Re: [nsbasic-ce] Re: Tech Note 08a: Files with Records and Fields - need help !

2009-10-26 Thread George Henne
er any book or literature in (better in French) about NSBasic avaialble ? > >Many thanks again for your precious help > >Sky > > > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> Are the records sorted by the first field? >>

Re: [nsbasic-ce] Re: Tech Note 08a: Files with Records and Fields - need help !

2009-10-26 Thread George Henne
that this was already installed but I >confirm and reinstall > >But no change !. >An other sugestion ? > >Best regards > >Sky > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> I'll bet the AddObject call isn't working - yo

Re: [nsbasic-ce] Re: Tech Note 08a: Files with Records and Fields - need help !

2009-10-26 Thread George Henne
o test this development tools, then I will probably > buy one for myself. > > Do you know if we can buy directly form NSBasic website and have it > send to France ? > > With many thanks for your help > > Sky > > > --- In nsbasic...@yahoogroups.com, "George Henne

Re: [nsbasic-ce] Out of Memory error

2009-10-28 Thread George Henne
What is the exe size? >Hi > >I'm getting an "out of memory" compilation error at line 0 when I try to >run my program on an iPaq rx1950. The program works on other devices. > >I have hard reset the device and re-installed, but I still get the same >problem. > >The device in question has 10.93MB

Re: [nsbasic-ce] Re: Out of Memory error

2009-10-28 Thread George Henne
Does it have any big arrays or variable that get created at runtime? Do other programs run OK on the device? >It's currently 1.01MB. > > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> What is the exe size? >> >&

Re: [nsbasic-ce] Re: Out of Memory error

2009-10-28 Thread George Henne
nt. > >Dozens of variables are declared at runtime. > >Yes, other programs run on the device. > >So is this more likely to be the number of variables being declared, >rather than the overall EXE size? > >Andrew > > > >--- In nsbasic...@yahoogroups.com, &quo

Re: [nsbasic-ce] required files to be installed in a CE device wiht Windows CE 5.0 core

2009-10-29 Thread George Henne
NS Basic/CE 7.0 is obsolete. Version 8 is the current version. It greatly simplifies the whole process of installation. You can download the CE 8 demo from the website. Let me know if you have questions! >Hello ~ > >My target device is operated under Windows CE 5.0 core along with >800X480 displa

Re: [nsbasic-ce] Re: required files to be installed in a CE device wiht Windows CE 5.0 core

2009-10-30 Thread George Henne
ssful. > > Good luck. > > > --- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> NS Basic/CE 7.0 is obsolete. Version 8 is the current version. It >> greatly simplifies the whole process of installation. You can >> download >> the CE 8

Re: [nsbasic-ce] Re: required files to be installed in a CE device wiht Windows CE 5.0 core

2009-10-30 Thread George Henne
What device are you trying to use? On Oct 30, 2009, at 6:31 PM, "withjss" <6k2...@leemock.com> wrote: > Yes, all the platforms, especially MIPSII was tested. > > --- In nsbasic...@yahoogroups.com, George Henne wrote: >> >> Did you set the platform properly

Re: [nsbasic-ce] Re: required files to be installed in a CE device wiht Windows CE 5.0 core

2009-10-31 Thread George Henne
56 DDR > >Detailed Spec.: > >http://www.myviliv.com/product/x5vant/product_x5vant_m01.asp > >--- In nsbasic...@yahoogroups.com, George Henne wrote: >> >> What device are you trying to use? >> >> >> >> On Oct 30, 2009, at 6:31 PM, "withjs

[nsbasic-ce] NS Basic/CE 8.1 Beta 1

2009-11-03 Thread George Henne
We have just started testing of NS Basic/CE 8.1 Beta 1. If you are a registered user of NS Basic and would like to give it a try, send an email to NS Basic support and we will add you to the list. Thanks! George Henne NS BASIC Corporation http

[nsbasic-ce] NS Basic/CE 8.1 uploaded

2009-11-10 Thread George Henne
ontrol 22. New Sample: HTMLview Download and install password information has not changed - you can install over your existing NS Basic/CE 8.0 installation. Let me know if you have questions! George Henne NS BASIC Corporation http://www.ns

Re(2): [nsbasic-ce] NS Basic/CE 8.1 uploaded

2009-11-11 Thread George Henne
ertainly call a program you have written. If you using the CHAIN statement, it would remain in Hi Res mode. George Henne NS BASIC Corporation http://www.nsbasic.com > > >Hi, >  >I'd just like to say that these new html and hi-res features

Re: [nsbasic-ce] HiRes programming on CE device

2009-11-12 Thread George Henne
Thanks, Andrew - great post! > > >Hi, >  >Thanks to George's excellent suggestion, I spent a couple of hours last >night playing with how to program, or edit, NSB programs on the device >to use HiRes. Basically, once I'd worked out that using a form in the >stub exe was a no-no, I came up with the

[nsbasic-ce] NS Basic/CE 8.1.0a posted

2009-11-14 Thread George Henne
e who helped us run down these problems! George Henne NS BASIC Corporation http://www.nsbasic.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "nsb-ce" group. To pos

[nsbasic-ce] NS Basic/CE 8.1.1 posted

2009-11-16 Thread George Henne
Code fixed. 5. IDE: Problems with application icon fixed. Use the same URL to download it as you did for 8.1. The password is also unchanged. Thanks to those who helped us with these changes! George Henne NS BASIC Corporation http://www.nsbasi

Re: [nsbasic-ce] Run-time error: 339 on very 1st use attempt after install

2009-11-18 Thread George Henne
What is the version of that file on your system? The version we have here is 6.0.81.69. The next step would be to try registering it. From the cmd line, enter regsvr32 sysinfo.ocx George Henne NS BASIC Corporation http://www.nsbasic.com >Just tonigh

Re: [nsbasic-ce] Re: Run-time error: 339 on very 1st use attempt after install

2009-11-18 Thread George Henne
Thanks for the goods news (and the detailed explanation.) George Henne NS BASIC Corporation http://www.nsbasic.com >Thank you, George, that fixed it. > >If I were a more experienced developer, I would've known what this was >about, but m

Re: [nsbasic-ce] Tutorials?

2009-11-23 Thread George Henne
There is a set of tutorials on under the Help menu. There is one for reading and writing to a file. Have a look at the PictureBox for the other things you are interested in. >Hi, i'm very new to NSbasic, and i was wondering where is a full >tutorial on the usage of the language? For example, w

Re: [nsbasic-ce] Size of NSB CE files

2009-11-28 Thread George Henne
What version of NS Basic/CE are you using? Over the past few releases, we've done a lot to reduce program size. >Hi George, > >We have developed a complex app in NSB, and found that the limit of the >size of the application file is 2MB, which we are approaching now. >(Splitting the app is not an o

Re: [nsbasic-ce] Unicode

2009-12-07 Thread George Henne
All strings in Windows CE are automatically unicode. Which method are you using to read in the strings? How was the file made? >How exactly do we get a Unicode value from a line of text being read in >from a file? >I read the Tech Article about file access, but it wasn't really clear. >Any code

Re: [nsbasic-ce] First program

2009-12-07 Thread George Henne
You can't run the program in the IDE - you'll need a device, or an emulator of a device. Windows CE being a totally different architecture than the desktop, emulators are something that Microsoft best handles. Fortunately, they have such a thing:

Re: [nsbasic-ce] Need help with Rs232 Dialog with device

2009-12-07 Thread George Henne
First step, switch to this control. It's much better: <http://www.nsbasic.com/ce/info/technotes/TN05.htm> George Henne NS BASIC Corporation http://www.nsbasic.com >I am new with CE and NBasic but I have program in VB6 since time ago. >I have

Re: [nsbasic-ce] Re: First program

2009-12-08 Thread George Henne
for >Windows CE without Win Mobile > >Thanks > > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> You can't run the program in the IDE - you'll need a device, or an >> emulator of a device. Windows CE being a totally different arc

Re: [nsbasic-ce] HTML view and SSL or https

2009-12-11 Thread George Henne
We expose Microsoft's HTMLview control, which is in the ROM. I don't see any Microsoft documentation which discusses this. >Does the new HTML view control support transmitting data over SSL to a >https URL? > > > > > >Yahoo! Groups Links > > > -- You receive

Re: [nsbasic-ce] Re: debugging help

2009-12-14 Thread George Henne
You'll need to call FlashcardPlayerForm_Load before you can do anything with the objects on the form. They are not created until the form is loaded for the first time. >Ok, well i fixed that error, but it's giving me another error. > >when ever the event is triggered that should Show or Hide forms

Re: [nsbasic-ce] Problem with program instalation

2009-12-14 Thread George Henne
There are a few things to look at: 1. How are you deploying SerialCE.dll to the device? Is it properly registered? 2. This device stores program files in volatile memory, which loses its contents when power is lost. The registry is stored in flash memory, which does not lose its contents. The ins

Re: [nsbasic-ce] Re: Problem with program instalation

2009-12-15 Thread George Henne
.- As I understand I must put the .cab archive of MY program on the SD, >then If I execute it (click on it), it will runs without problem? > >Regards > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> There are a few things to look at: >>

Re: [nsbasic-ce] NSCEPicturebox Draw

2009-12-15 Thread George Henne
Have a look at the MouseUp, MouseDown and MouseMove events to get the lines on the screen. Use SetPointArray to put the lines into an array for drawing. Use DrawPolyLines to draw the array of lines. >Hi, >I'm new to nsbasic. > >I want to write a program, where a user can subscribe. Like UPS. Lik

Re: [nsbasic-ce] Re: NSCEPicturebox Draw

2009-12-17 Thread George Henne
Go ahead and post some snippits here - I'm sure others will be interested! >George, > >it works! Thanx! >Peter > >--- In nsbasic...@yahoogroups.com, "George Henne" wrote: >> >> Have a look at the MouseUp, MouseDown and MouseMove events to get the >

Re: [nsbasic-ce] Problem with forms

2009-12-17 Thread George Henne
I'm not sure what is going on here. If you send the program to support, we'll give it a try. >A new problem > >When I open my program a message say: >In "Form1" >An object with the given name has already been added >I click on OK >and a new one with the message: >Error loading project >-2147024809

Re(2): [nsbasic-ce] Problem with forms

2009-12-18 Thread George Henne
ensaje original- >De: nsbasic...@yahoogroups.com [mailto:nsbasic...@yahoogroups.com] En nombre >de George Henne >Enviado el: jueves, 17 de diciembre de 2009 17:06 >Para: nsbasic...@yahoogroups.com >Asunto: Re: [nsbasic-ce] Problem with forms > >I'm not sure what is going on here. If y

Re: [nsbasic-ce] Run Time For CE.Net 4.2

2009-12-20 Thread George Henne
Yes, NS Basic/CE supports most CE.Net 4.2 devices. >Is there a runtime system for windows ce.net v4.20? > > > > > >Yahoo! Groups Links > > > -- You received this message because you are subscribed to the Google Groups "nsb-ce" group. To post to this group, s

<    1   2   3   4   >