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 to share photos of your group with the world? 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 2221 - 2275 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2221
Visitors counter. Redirection to any page. Perfect for long Amazon Affiliate URLs. Perfect for long eBay URLs. Perfect for long Affiliate URLs. Perfect for...
Friend
go_job_12
Offline Send Email
Jun 5, 2007
10:19 am
2222
Visitors counter. Redirection to any page. Perfect for long Amazon Affiliate URLs. Perfect for long eBay URLs. Perfect for long Affiliate URLs. Perfect for...
Friend
go_job_12
Offline Send Email
Jun 5, 2007
11:04 am
2223
Hello.,.. Does have nsbasic 1) Have a way to read or write to a registry key (without using the windows api) 2) Have an equivalent to: open "c:\fred.txt" for...
gianteyeballscom
gianteyeball...
Offline Send Email
Jun 9, 2007
8:58 pm
2225
Hi Patrick Not sure about the Registry key question but you can read and write to text files using the FileSystemObject. See the example programs that come...
John Hill
bodyjohn2003
Offline Send Email
Jun 14, 2007
5:55 pm
2226
Hi Folks Does anyone have any knowledge of Gnostice's eDocEngine ActiveX control. You can use it to create PDF, Excel, RFT files etc. I can get most of to work...
John Hill
bodyjohn2003
Offline Send Email
Jun 14, 2007
6:02 pm
2227
Thanks for the info...! Patrick ************************************** See what's free at http://www.aol.com....
mrgalaxy@...
gianteyeball...
Offline Send Email
Jun 15, 2007
2:15 am
2229
I am trying to use the picture box and having a bit of trouble (eval version)... maybe this is already fixed. The parameters passed to the 'mousemove' event...
madddogg_2001
Offline Send Email
Jun 15, 2007
11:53 pm
2230
Hi Folks I have found the answer to my question about page numbers and page count. Just incase anyone else has this problem outputing <%Pg#%> or <%PgCnt%> as...
John Hill
bodyjohn2003
Offline Send Email
Jun 16, 2007
10:36 am
2236
You can do this using the NSBWin32 control as well: <http://www.nsbasic.com/desktop/info/technotes/TN16.htm#registry>...
George Henne
ghenne
Offline Send Email
Jun 18, 2007
7:43 pm
2237
I tried the MouseMove event here. I get (button, shift, x, y) just as in the docs. To draw a point, make a line just one long: 100,100,100,100...
George Henne
ghenne
Offline Send Email
Jun 18, 2007
7:45 pm
2238
thanks! patrick ************************************** See what's free at http://www.aol.com....
mrgalaxy@...
gianteyeball...
Offline Send Email
Jun 18, 2007
8:09 pm
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
Messages 2221 - 2275 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