A couple of questions not related. Reading through the handbook but couldn't find explicit answers to the following: 1. What is the procedure to designate a...
... In the right hand tree view of the project, right click on the form you want and select "Make Default Form". ... Unfortunately I just wiped my device a...
If you're using the onboard divice based NSBasic and you want to view the Visual Designer do the following: 1. Start NSBasic on the device. 2. Use the menu...
Thank you Michael. I had accidently accessed this once before but didn't know how to do it again. Happy New Year. ... view ... current ... forms ... and ... ...
Thanks again, styskul,that was easy. I believe I saw that before but it didn't register that "default" meant what you explained. Also glad you mentioned about...
Well, I tried putting "ShowOKButton True" as the very first line in my code, but I kept getting a script error, "Statement expected". So I put it as the first...
What is the difference between executing the code, 'FormX_Show' and 'FormX_Load'? In my limited experience with NSbasic CE, the two commands seem to be...
If you save your project as a .txt file, you'll see the definition of FormX_Load. You never want to call this manually, because it is the function that...
My bad. I just realized that I had these two functions reversed. It's the FormX_Show function that gets auto-generated and that you do not want to override....
The ShowOKButton True problem surprises me, because I do this all the time when I want to debug an application. But, at least you got it to work. As far as...
Thanks for your help. But just to clarify....are you saying that I should never add the following code? '-------------------------------------------------- ...
Actually, what I'm saying is this (I'll try to get it right this time): The procedure you want to "overload" is _Load. So, in your code you can put a: Sub...
Before I get too carried away and spend more time than needed, I want to clarify something regarding files and file names. I hope I can make myself clear. My...
I would suggest not putting a file object on your form. Before the first Sub or Function in your program, put the following line of code: AddObject "file",...
Thanks again. I think I get it now - really. James Snyder ... but I ... you ... when ... reference ... that I ... construction/display of ... code? ... code, ...
Dear IT Employers We have IT Jobs around the world So rush here for more details http://itjobsbank.blogspot.com/ We hope that you will save your future have a...
Hi everyone! I've a question to do, how can i by-pass the form_close event when i click on the "X" button? I'll explain, i need to remove the "X" button or, if...
Styskul...thank you very much. I will test that approach and get back if I have more questions. I wasn't clear on the uses for AddObject. I agree with your...
Sorry for being a PITA but if I do as you suggest, how does the name of the file remain intact? I put AddObject "file","file1" in Form1. The file there is...
I suppose you would want to keep that file name, wouldn't you. Just do a: Dim strFileName somewhere around where you do the AddObject. Then, in the form...
Try this if will work: Dim temp InString = Comm.Input temp = "&h" + InString print int(temp) 'if you want the int value print chr(int(temp)) 'if you want...
Guess who! Here is some code from my app: The default form is called "First". It has a textbox, and 2 command buttons (OK and Exit) After the user enters the...
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. File :...
nsbasic-ce@yahoogroup...
Jan 3, 2006 2:12 am
12314
It looks like the main problem is that you Dimed strFileName inside of a sub, so it will only apply to that sub. I have uploaded simple_file_sample.nsb...
Thanks, the global variable workaround should work, I thought there might be a more elegant solution. Exactly which form events from eVB are the same? I...