Search the web
Sign In
New User? Sign Up
nsbasic-desktop · Forum for NS Basic/Desktop users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 595 - 624 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
595
Okay have Demo, realise some limits may apply. 1. New Form have to size thru properties height and width ?? 2. Cannot select all tools on form ?? Above not...
blinky2kbill
Offline Send Email
Aug 1, 2005
11:06 am
596
... There is no way to visually resize the form, if that's what you're asking. You must set the width and height properties, even in registered mode. ... ...
Styskul
Offline Send Email
Aug 1, 2005
2:01 pm
597
... Here is some sample code to convert xls to csv. <http://www.nsbasic.com/desktop/info/technotes/TN05/xls2csv.txt> There is quite a bit you can with the...
George Henne
ghenne
Offline Send Email
Aug 1, 2005
2:32 pm
598
... back on ... Many Thanks for replies. Work Laptops not allowed Excel,etc. (Licenses!!). Thanks again, Bill....
blinky2kbill
Offline Send Email
Aug 2, 2005
7:21 am
599
... It looks like csv is the way to go, then. You don't need to have Excel installed to write in csv format, yet Excel will be able to load the data....
George Henne
ghenne
Offline Send Email
Aug 2, 2005
9:36 am
600
I've used desktop to interact with palm databases, but today , trying another sort if program i realized there is not a "GOTO" statement anyplace described as...
gibertfernando
Offline Send Email
Aug 2, 2005
6:25 pm
601
No. NS Basic/Desktop is based on the VBSript engine, which does not have a GOTO statement. It is very unlikely that Microsoft will ever add this feature to the...
George Henne
ghenne
Offline Send Email
Aug 2, 2005
7:04 pm
602
... I'll make a guess that your desire for a GoTo is based on executing or skipping specific blocks of code, based on an IF. The simplest way to do this in...
John Carter
johnecarter
Offline Send Email
Aug 2, 2005
10:33 pm
603
Hi all, I have the following code that checks a textbox entry as the user presses the keys. If a non-numeric key is pressed it is rejected. Sub TextBox1_Change...
michael_newett
Offline Send Email
Aug 4, 2005
4:40 pm
604
This looks reasonable to me. If you don't want to replicate the code in each field, build a general purpose function that gets called from all the numeric...
George Henne
ghenne
Offline Send Email
Aug 4, 2005
4:59 pm
605
... the ... rejected. ... If you don't need minus signs, you can set the field to Numeric in the IDE and it will only accept numbers. John...
John Carter
johnecarter
Offline Send Email
Aug 4, 2005
11:25 pm
606
... Ignore me - I've been on the NSB Palm forum too long ... John...
John Carter
johnecarter
Offline Send Email
Aug 4, 2005
11:26 pm
607
This does not appear to work. TextBox Properties.....MaxLength 6. Input or Read extends beyond 6. Bill....
blinky2kbill
Offline Send Email
Aug 6, 2005
4:58 am
608
Hi Mike, Well... you can try this (Sample is based in a form with 4 textboxes: Sub Form1_Load For n=1 to 4 EXECUTE("TextBox"&n&".NumbersOnly=TRUE") Next End...
Jose Adell
jose_adell
Offline Send Email
Aug 9, 2005
1:55 am
609
Hi Bill No, it doesn't... Being sarcastic you can say NSBasic could save money on paper on manuals just taking out of it the documented thingies that don't...
Jose Adell
jose_adell
Offline Send Email
Aug 9, 2005
2:09 am
610
I have an application that contains a main menu with 6 control buttons. Each control button need to invoke a different form. Example: History1 --- loads and...
Don
dlpalese
Offline Send Email
Aug 16, 2005
11:21 pm
611
... Have you looked at the DataManager sample that comes with NSB/Desktop? The code behind the "Open Database" button can be duplicated on each form where you...
John Carter
johnecarter
Offline Send Email
Aug 17, 2005
12:40 am
612
Thanks John, I'm using the demo version ... I look for the DataManager samples ... dlp...
Don Palese
dlpalese
Offline Send Email
Aug 17, 2005
12:53 am
613
... You may want to look for ADODemo instead. I'm not having a "senior moment" - it's more like a "senior week" ;-) John...
John Carter
johnecarter
Offline Send Email
Aug 17, 2005
4:47 pm
614
Greetings folks. Please forgive a perhaps newby type question: How does one convert the input from a textbox to an integer to be used to calculate interest...
fluke44442003
Offline Send Email
Aug 21, 2005
3:58 am
615
Use the function CInt. For a full list of available functions, see the Conversions topic in the help file....
Styskul
Offline Send Email
Aug 21, 2005
5:13 am
616
... Yes, I did try that - however, I definately am making some sort of syntax error (my programming days were LONG ago - OOP wasn't even a trickle in someone's...
fluke44442003
Offline Send Email
Aug 21, 2005
1:50 pm
617
... How ... to ... Since CInt() is limited to -32767 to 32767, you probably need a bigger variable type. I expect that loan calculations need decimal places,...
John Carter
johnecarter
Offline Send Email
Aug 21, 2005
8:22 pm
618
Many thanks for peoples' help here - the problem is solved: basically (pardon the pun) the problem was in my syntax. One sample program is now up and running...
fluke44442003
Offline Send Email
Aug 22, 2005
1:39 am
619
I'll bet the problem was that Cint(txtIntRate_Text) should be Cint (txtIntRate.Text). Right?...
George Henne
ghenne
Offline Send Email
Aug 22, 2005
1:46 am
620
... Actually, it turned out I didn't need that line at all. Here's how the code turned out in the end: Sub cmdPayment_Click ' declare all variables used in...
fluke44442003
Offline Send Email
Aug 22, 2005
2:12 am
621
Note: forwarded message attached. ... Start your day with Yahoo! - make it your home page ... Note: Forwarded message attached -- Original Message -- From:...
Kathy S
kathy_tn83
Offline Send Email
Aug 22, 2005
12:51 pm
622
How can I get the current program filename. I want to use it as the form caption name like it does in NS BASIC CE. Regards Mike...
michael_newett
Offline Send Email
Aug 23, 2005
9:49 am
623
Note: forwarded message attached. ... Start your day with Yahoo! - make it your home page ... From: Vinay H <vinayhp83@...> Date: Aug 23, 2005 8:42 AM ...
Kathy S
kathy_tn83
Offline Send Email
Aug 23, 2005
11:05 am
624
Use the function GetCommandLine. See the help file for specifics....
Styskul
Offline Send Email
Aug 23, 2005
1:25 pm
Messages 595 - 624 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help