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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 2254 - 2295 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2254
Hi, Just getting started with NSBasic and have a couple of questions already, that hopefully someone won't mind answering too much. Here's hoping anyway. (i)...
krayten
Offline Send Email
Jul 21, 2007
5:41 pm
2255
Hi Stuart The combobox. Easy way to test is create a new project with form. Place ComboBox1 control on form. Set Expanded Height property of combobox1 to 100. ...
John Hill
bodyjohn2003
Offline Send Email
Jul 23, 2007
11:01 am
2256
Hi All: I wanted to ask the various experts here if they have also used this developer tool? http://www.basic4ppc.com/ I tried Basic4PPC when it was version...
Bob Katayama
banffbears
Offline Send Email
Jul 23, 2007
5:46 pm
2257
You might be better off posing this question on the NSBasic/CE forum. Best I can tell, basic4ppc only creates PPC programs. ... time. ... commands ... become...
Styskul
Offline Send Email
Jul 23, 2007
6:00 pm
2258
John. Perfect. The mists have cleared - don't know why I missed the expanded height property, but thats exactly what it was. Many thanks. Regarding the control...
krayten
Offline Send Email
Jul 23, 2007
9:53 pm
2259
Hi Stuart Glad to help. The control problem look like one of the wonders of windows. I had no problems developing code here but it fell over on my clients...
John Hill
bodyjohn2003
Offline Send Email
Jul 24, 2007
5:56 am
2260
I have ordered NSBasic/Desktop and receved CD and HandBook. BUT! No registration number in back of HandBook or in CD pocket. Compiled program meke Meaasage Box...
arkadiivsh
Offline Send Email
Jul 24, 2007
7:18 am
2261
It sounds like spam filters on both ends are causing problems. The serial number is emailed automatically as soon as we receive the order, so you should have...
George Henne
ghenne
Offline Send Email
Jul 24, 2007
9:56 am
2262
Hi, OK, I'm brand new - haven't even received my book yet and I need to ask yet another silly question. Damn newbies huh? When I build a project with several...
krayten
Offline Send Email
Jul 24, 2007
8:40 pm
2263
Hello Stuart, menus aren't form dependent in NSBasic. Once defined, they stay until they're changed or redefined. So in your case you should define an empty...
Thomas Gruber
computerhusky
Offline Send Email
Jul 24, 2007
9:08 pm
2267
Hi, In my project I would like to have the ability for the user to add and remove buttons and textboxes from the (running) form. I'm playing around with the...
krayten
Offline Send Email
Jul 29, 2007
4:34 pm
2268
Hi Stuart The only thing missing from your code is the name of the form the object is to be added to as follows:- AddObject "CommandButton", "button3", 165,...
John Hill
bodyjohn2003
Offline Send Email
Jul 29, 2007
6:31 pm
2269
Thank you (again) John. Indeed the lack of ,form1 was the source of trouble. I'm surprised that the runtime didn't figure out that as there was only one form, ...
krayten
Offline Send Email
Jul 30, 2007
8:00 pm
2270
Actually, it's really not all that unpredictable to create controls on the fly. In fact, it actually worked just the way it was supposed to. If you don't...
Styskul
Offline Send Email
Jul 30, 2007
8:44 pm
2271
Hi, I have :- ... Sub CommandButton1_Click newprod = InputBox("Adding a new product","Add a new product to the portfolio", "") combobox2.AddItem newprod End...
krayten
Offline Send Email
Jul 31, 2007
4:58 pm
2272
Assuming ListIndex is the correct property (don't have NSB installed here at work, but I think that's right) you'll want to do: ComboBox2.RemoveItem...
Styskul
Offline Send Email
Jul 31, 2007
5:53 pm
2273
Perfect. That did the trick and I think I understand why it worked too, which helps. Many thanks. Stuart...
krayten
Offline Send Email
Aug 2, 2007
5:08 pm
2274
Hi, The project I'm working on just now requires the user to fill in several forms to gather some strings of information, stored as variables,which is later...
krayten
Offline Send Email
Aug 2, 2007
5:17 pm
2275
Hi Stuart, if this whole thing happens on just 1 PC, I'd say this is a typical case where that information should be stored in the registry. You could of...
Thomas Gruber
computerhusky
Offline Send Email
Aug 3, 2007
7:26 am
2276
I agree with Thomas, The caveat of using the registry is place the values for the current user area HKCU area for all specific user info. Place all global ...
jposso21
Offline Send Email
Aug 3, 2007
11:04 pm
2283
I have wanted to write code to resize the form when the maximize button is pressed. Also, I want to process the close 'X' the same as a File->Exit menu item....
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
Aug 26, 2007
11:24 am
2285
When a form is resized, a Form1_Resize event is sent. You can put this in your program: Sub Form1_Resize 'Change Form1 to the size you need 'do what you need ...
George Henne
ghenne
Offline Send Email
Aug 31, 2007
9:42 am
2288
I want to compose & send an email from within NSB-D. I tried Tim Markowski's example using ShellExecute. That composes the email in Eudora OK, but I want it...
Don Pomplun
k2bio
Offline Send Email
Sep 30, 2007
9:05 pm
2289
I'm trying to read incoming data from a serial port, process (display) it, then go back and wait for the next dataset. Why doesn't the following work? What's...
Don Pomplun
k2bio
Offline Send Email
Oct 10, 2007
12:42 am
2290
Does a FOR-NEXT Loop produce the same results? Bob From: nsbasic-desktop@yahoogroups.com [mailto:nsbasic-desktop@yahoogroups.com] On Behalf Of Don Pomplun ...
Bob Katayama
banffbears2006
Offline Send Email
Oct 10, 2007
12:50 am
2291
Yes; I changed the Do..Loop to a For I = 1 to 10 . . . Next. It never came back with even the first read before showing (twice) as "not responding". Don...
Don Pomplun
k2bio
Offline Send Email
Oct 10, 2007
1:44 am
2292
Try inserting a delay within the loop at the end to allow the read code to complete before the next read is executed. This may help you. For I=1 to 10 . .... ...
Bob Katayama
banffbears2006
Offline Send Email
Oct 10, 2007
2:25 am
2293
I just tried something along those same lines . . . I put a DoEvents in the for-next loop. Behavior is curious, at best. Apparently the Not Responding is a...
Don Pomplun
k2bio
Offline Send Email
Oct 10, 2007
4:04 am
2294
I don't see any reference to effecting the globality of variables. In fact, even though Option Explicit is inherently On, I find I can just use a variable in...
Don Pomplun
k2bio
Offline Send Email
Oct 10, 2007
6:21 am
2295
From the Help file: Script level variables are available to all procedures in the script; procedure level variables are available only in the procedure they ...
John Carter
johnecarter
Offline Send Email
Oct 10, 2007
2:20 pm
Messages 2254 - 2295 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