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 2907 - 2940 of 3191   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2907
Hi Look at tech note 16 http://www.nsbasic.com/desktop/info/technotes/TN16.htm Some win32 APIs regarding the keyboard are documented there. Ed...
cedarlakebuzzards
cedarlakebuz...
Offline Send Email
May 4, 2009
7:44 am
2908
hi, i tried to write the routine but it didn't work. ... regsvr32 nsbwin32.dll Dim varf Dim SysDir AddObject "NSBasic.win32.api", "win32" Set connections =...
tst_sg
Offline Send Email
May 5, 2009
2:51 am
2909
Hello, be careful, the technote mentioned contains calls that are only valid on Windows CE devices (like "EnableKeyboard")! Don't use them on Windows /...
Thomas Gruber
computerhusky
Offline Send Email
May 5, 2009
8:53 am
2910
Hello, I tried your example, and after a few modifications it works. Here's what I found: 1. I put a "on error goto 0" at the beginning of the code, so that...
Thomas Gruber
computerhusky
Offline Send Email
May 5, 2009
9:22 am
2911
hi, i tried to alter my code from what you taught, but i still didn't know where gone wrong. ps: do you mind showing your code to enlighten us? Sub Form1_Load ...
tst_sg
Offline Send Email
May 5, 2009
1:42 pm
2912
hi, i have suceeded in capturing the shift key event,however,starting at the form2 , the capturing is still going on . thanks for helping me to achieve this ! ...
tst_sg
Offline Send Email
May 7, 2009
11:55 pm
2913
I loaded desktop to Vista, but got a runtime 380 message when I tried to open a project. I saw nsbasic website that I have to disable True Type Fonts. I also...
algehe
Offline Send Email
May 8, 2009
10:08 pm
2916
Can anyone help me to get the cursor to change to the standard Windows "Drag Arrows" shape when the mouse is over the active edge of the main window? I can...
sailvalis
Offline Send Email
May 9, 2009
5:28 pm
2918
hi, i sented a email to support@... asking for a request for a feature that is implemented ... 'this code is wrong dim str1 dim currentRow dim...
tst_sg
Offline Send Email
May 10, 2009
2:17 pm
2920
Hi there, I am using reg expression to pull out some values. I know how to ude a "For" loop to get out each match item, but is there a way of adressing each...
justinanning
Offline Send Email
May 24, 2009
8:43 am
2921
I've spent the better part of an afternoon playing with the NSListView control, and I'm now stuck and looking for help. I have a Sqlite db that I open and...
skysensor
Offline Send Email
May 28, 2009
10:27 pm
2922
Finally figured out how to actually grab the value in column zero, based upon the example code in my original post: oEvent.Item.Text I guess this should have...
skysensor
Offline Send Email
May 29, 2009
12:52 pm
2923
As a multi-select property exists for listboxes, I assume it's possible to use one, but I'm having trouble making it work, either by setting the multiselect...
skysensor
Offline Send Email
May 29, 2009
4:00 pm
2924
Just to clarify my request for help: 1) I'm using addobject to place the listbox at runtime. 2) I was able to get a multiselect listbox to work, but only if...
skysensor
Offline Send Email
May 31, 2009
10:53 pm
2925
Hello, I created a Multi Select NSBListBox which works as expected. Here is the sample program. To test it, create a new standard application, with an empty...
Thomas Gruber
computerhusky
Offline Send Email
Jun 1, 2009
8:08 pm
2926
Thomas: Thank you for your response. Unfortunately, I was trying to use the intrinsic Listbox control, not the ListView, so your code doesn't directly apply....
skysensor
Offline Send Email
Jun 1, 2009
9:37 pm
2927
Hello, sorry, you're right, I mixed the 2 posts. However, I initially tried the "normal" list box control as well, and it seems that the multi-select property...
Thomas Gruber
computerhusky
Offline Send Email
Jun 2, 2009
6:27 am
2928
NS Basic/Desktop 4.0 Beta 3 is now available for download. It incorporates many of the improvements that just shipped in NS Basic/CE 8.0 This is getting close...
George Henne
ghenne
Offline Send Email
Jun 2, 2009
5:24 pm
2929
I am becoming increasingly frustrated by my NSBasic Desktop experience. I don't think I'm "stretching" the platform at all, but very basic bits of...
skysensor
Offline Send Email
Jun 2, 2009
10:39 pm
2930
... Mark, It may be easier for the members to help, if youi post some of your code Ben...
bwolodko
Offline Send Email
Jun 2, 2009
10:48 pm
2931
Here's a simple example I prepared at home this evening: 'create a form and add two checkboxes Sub Main AddObject "Form","Form1",0,0,150,100 Form1.Text =...
skysensor
Offline Send Email
Jun 3, 2009
4:32 am
2932
Thanks for the demo code! One thing I can't figure out: How to remove a row once it has been filled in with data. I see the "Clear" and "Remove" methods,...
Elliott
sailvalis
Offline Send Email
Jun 3, 2009
8:46 am
2933
Hello, I added a 3rd button (CommandButton3) with the following code, do delete the selected row(s): Sub CommandButton3_Click For i=nslistview1.listitems.count...
Thomas Gruber
computerhusky
Offline Send Email
Jun 3, 2009
9:01 am
2934
Hello, I tried your example, and the check mark really only appears if you double click. But the solution is simple: remove the "Checkbox1.Value = True"...
Thomas Gruber
computerhusky
Offline Send Email
Jun 3, 2009
9:35 am
2935
Hello, addition to my previous message: Sub Checkbox1_Click Dim s ' Checkbox1.Value = True Checkbox2.Value = checkbox1.value s = 1 'MsgBox "Checkbox1_click...
Thomas Gruber
computerhusky
Offline Send Email
Jun 3, 2009
9:52 am
2936
A search here indicates that Combobox events didn't work in early versions of Desktop, unless the control was added in the form designer. Is this still broken...
skysensor
Offline Send Email
Jun 4, 2009
12:47 am
2937
Follow-up: Experimentation reveals the cause, and raises a few questions: Do (some) child objects have their events limited by their parent object? I have...
skysensor
Offline Send Email
Jun 4, 2009
2:25 am
2938
Here's a real simple one (I hope): Create a form. Put a listbox on it. Add the following code: Sub ListBox1_Click Dim x x = ListBox1.list(ListBox1.ListIndex) x...
skysensor
Offline Send Email
Jun 4, 2009
10:29 pm
2939
I ran the gradient button sample on a laptop and a new Netbook both running windows XP sp3. The results were different, Laptop shows the form exactly as...
kshetarpal
Offline Send Email
Jun 5, 2009
12:11 am
2940
Hello, you spotted something very interesting here! Here is the solution and the reason: change the statement x = x & " [concat this]" to x = left(x,len(x)-1)...
Thomas Gruber
computerhusky
Offline Send Email
Jun 5, 2009
8:00 am
Messages 2907 - 2940 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