Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

libertybasic · The Official Liberty BASIC Support Group

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 5578
  • Founded: Jan 12, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 18901 - 18930 of 46481   Oldest  |  < Older  |  Newer >  |  Newest Start Topic
Messages: Simplify | Expand Author Sort by Date ^
18901 J. Brossman
jbross38 Send Email
Feb 1, 2004
3:05 pm
... It sounds like you need to look at the run command in the help file. If then run "program.exe" or [buttonclick] run "program.exe" -- Jim & Jan Brossman -...
18902 Ken Lewis, Sr.
lb_user_ken_... Send Email
Feb 1, 2004
3:10 pm
... From: "jmssylvester&quot; <car12211@...> To: <libertybasic@yahoogroups.com> Sent: Saturday, January 31, 2004 8:08 PM Subject: [libertybasic] graphic...
18903 Ken Lewis, Sr.
lb_user_ken_... Send Email
Feb 1, 2004
3:14 pm
... From: "jthebrain5&quot; <j1234_1@...> To: <libertybasic@yahoogroups.com> Sent: Saturday, January 31, 2004 10:16 PM Subject: [libertybasic] Type or click...
18904 Justin
teamgsi Send Email
Feb 1, 2004
4:29 pm
... That caused me to check my recently purchased LB4 Companion, by Alyce Watson and guess what I read! SLIDER (TRACKBAR) Commonly called a SLIDER, the control...
18905 bridgepard952 Send Email Feb 1, 2004
4:51 pm
... complicated. ... I too would like to be able to write a LB program which would position the mouse and force a single leftmouseclick (or text) in a window...
18906 jj2me_48170 Send Email Feb 1, 2004
8:46 pm
Is there any way to use the "ENTER" key to TAB from one TEXTBOX to another ? What I have is four TEXTBOX's in a window. I want to enter data in the first box...
18907 Tom Kingston
tkingston247 Send Email
Feb 1, 2004
9:31 pm
... From: "jj2me_48170" <jj2me_48170@...> ... Here's one approach which takes advantage of the .default button in a dialog window. Hope it helps, Tom ...
18908 Chergarj@...
gjosefc Send Email
Feb 2, 2004
7:52 am
FreeForm builder in LB 3.03 would not close after building a window, and then copying the file in preparation to try to paste the gui into a program. Only the...
18909 Alan P
paranoidandr... Send Email
Feb 2, 2004
1:39 pm
thanks a lot, appreciate it:), I just hope one dau I am able to help someone as I have been helped here, Alan Please take the time to visit my webpage and if...
18910 carlgundel Send Email Feb 2, 2004
3:14 pm
... Does it do that every time? You should be able to close it using the Kill BASIC Programs feature. -Carl...
18911 Howard Rosenthal
hrosenthal62 Send Email
Feb 2, 2004
4:34 pm
If you don't mind, I can really use it. thanks, Howard ... year or two ... seeing it....
18912 Chergarj@...
gjosefc Send Email
Feb 2, 2004
6:26 pm
In a message dated 2/2/2004 7:27:10 AM Pacific Standard Time, ... I'm not sure yet. I used this version of FF in this version of LB only 3 times now. It only...
18913 pfriedl2001 Send Email Feb 2, 2004
9:11 pm
Ken, I got your example, and it works fine. I added a line to draw boxes, and it works -- but not all the time. Run the code, use the draw 1 and draw 2...
18914 jj2me_48170 Send Email Feb 2, 2004
11:07 pm
Thanks Tom. I thought I was going to have to temporarily re-assign the ENTER key (if this could be done) to act as the TAB key. But I think this might just...
18915 t_downing Send Email Feb 2, 2004
11:13 pm
hello: I would like a user to be able to enter a number of variables on a *single line* separated by commas - so far, however, my attempts have failed - I have...
18916 J. Brossman
jbross38 Send Email
Feb 2, 2004
11:49 pm
... The problem you will have using this technique is if someone clicks in a box other than the one that has focus and enters new data and then presses 'enter&#39;...
18917 Stefan Pendl
pendl2megabit Send Email
Feb 2, 2004
11:56 pm
Tom, try this: input "a,b,c :"; a$ a=val(word$(a$,1,",")) b=val(word$(a$,2,",")) c=val(word$(a$,3,",")) HTH, Stefan...
18918 jj2me_48170 Send Email Feb 3, 2004
12:03 am
Ya know, your right. I just noticed that while playing around with Tom's short program. Some how there's got to be a fail safe method. Jim ... in a...
18919 Stefan Pendl
pendl2megabit Send Email
Feb 3, 2004
12:10 am
You may read the contents of all textboxes when ENTER is hit, and decide on that if a textbox needs focus or not. e.g. IF boxContents1$ = "" then #main.tb1...
18920 J. Brossman
jbross38 Send Email
Feb 3, 2004
12:17 am
... I've wrestled with this problem for a while. I put a request in the WishList to somehow make the enter key emulate the tab key. The problem with that...
18921 Tom Kingston
tkingston247 Send Email
Feb 3, 2004
12:48 am
... From: "Stefan Pendl" <megabit@...> ... on ... Good idea. There's also an API getFocus call you can make. I believe it's in the user32 library. I...
18922 John Davidson
johnshomeport Send Email
Feb 3, 2004
2:22 am
Hey Jim You might want to check out TabbingThruTextboxs.zip. You can find it over at the Liberty BASIC Programming Club ...
18923 Tom Kingston
tkingston247 Send Email
Feb 3, 2004
2:38 am
I found the get focus routine. Hope it helps. nomainwin WindowWidth=600 : WindowHeight=400 textBox #1.box1, 10, 10, 300, 25 textBox #1.box2, 10, 50, 300, 25 ...
18924 Ken Lewis, Sr.
lb_user_ken_... Send Email
Feb 3, 2004
2:51 am
... From: "pfriedl2001&quot; <pfriedl2001@...> ... Paul; I did get the same result, until I changed these two lines. here is the corrected code. print...
18925 Ken Lewis, Sr.
lb_user_ken_... Send Email
Feb 3, 2004
3:08 am
... From: "J. Brossman" <jbross@...> ... Another possibility, use "GetAsyncKeyState" API to find out when the "Enter" key is pressed then act on it. Ken...
18926 rjdeible Send Email Feb 3, 2004
6:12 am
I have a program with a combobox. The combobox has 2 things it can do. First to get a file, and display it, and second to go to a window to edit the file....
18927 Chergarj@...
gjosefc Send Email
Feb 3, 2004
6:33 am
In a message dated 02/02/2004 10:14:55 PM Pacific Standard Time, ... Easier for the group if you show the code. When you make a selection from the combobox,...
18928 swisdom1 Send Email Feb 3, 2004
1:05 pm
... I think implicit in the original question was 'how do I read in several variables via the INPUT statement, without having to read in a single string and...
18929 rjdeible Send Email Feb 3, 2004
3:43 pm
... can ... to ... first, ... view, ... content ... figure ... another ... have ... arrays, ... has ... bring up ... Do you use an ... want before you ... Here...
18930 bbjen@...
biljenni2001 Send Email
Feb 3, 2004
7:07 pm
Newsletter 117 is out and the index has been updated. The issue is full of helpful, entertaining and clever stuff, as always, from many generous contributors! ...
Messages 18901 - 18930 of 46481   Oldest  |  < Older  |  Newer >  |  Newest Start Topic
Add to My Yahoo!      XML What's This?

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