Search found 10 matches
- Tue Jul 14, 2020 1:50 am
- Forum: Liberty BASIC Language
- Topic: MAINWIN prints when closed
- Replies: 2
- Views: 7930
Re: MAINWIN prints when closed
Thanks a bunch, that is the problem
- Mon Jul 13, 2020 10:29 pm
- Forum: Liberty BASIC Language
- Topic: MAINWIN prints when closed
- Replies: 2
- Views: 7930
MAINWIN prints when closed
The Mainwin has just started printing it's contents when I close it with the "X" in the upper right corner. It just started. Any ideas what's going on?
- Mon Nov 11, 2019 6:28 pm
- Forum: Liberty BASIC Language
- Topic: Font size in window title bars
- Replies: 4
- Views: 12021
Re: Font size in window title bars
Thanks Jack, I've suspected we're stuck with the small font but thought I'd see if anyone knew of a way. It has been very quiet here lately. Best regards
- Thu Oct 31, 2019 9:02 pm
- Forum: Liberty BASIC Language
- Topic: Font size in window title bars
- Replies: 4
- Views: 12021
Font size in window title bars
Is there a way in LBB to control the font size in window title bars?
- Wed Jul 03, 2019 4:46 pm
- Forum: Liberty BASIC Language
- Topic: Defining controls
- Replies: 3
- Views: 10822
Re: Defining controls
Thank you. I'll have to rethink my plans here, and just when I thought I'd learned everything about LBB that I could. [:-)
- Mon Jul 01, 2019 11:20 pm
- Forum: Liberty BASIC Language
- Topic: Defining controls
- Replies: 3
- Views: 10822
Defining controls
dim W$(8) 'contains handle, legend, actionsub, "UL", x, y, w, h . call example W$() . . end sub example X$() . . testvar=3 select case testvar case 3 hdl$=X$(1) button , #hdl$, X$(2), X$(3), X$(4), val(X$(5)), val(X$(6)), val(X$(7)), val( X$(8)) case xx . . end select will not compile, it ...
- Mon May 27, 2019 7:59 pm
- Forum: Liberty BASIC Language
- Topic: Handle variables in control definition statements
- Replies: 2
- Views: 9315
Re: Handle variables in control definition statements
OK, thanks a bunch. That seems to have fixed that part of my problem ... I say "seems" because I've got at least one other problem getting the code to run which I'm sure is pilot error too.
- Sun May 26, 2019 11:57 pm
- Forum: Liberty BASIC Language
- Topic: Handle variables in control definition statements
- Replies: 2
- Views: 9315
Handle variables in control definition statements
There seems to be some sort of prohibition for using handle variables in control definition statements. For example: hw$="WIN" hc$=hc$+".txt" statictext #hc$, "This is text", x, y, w, h open "Test Window" for window as #hw$ where x, y, w, h are previously set ...
- Wed Apr 10, 2019 6:52 pm
- Forum: Liberty BASIC Language
- Topic: Generating events when focus changes
- Replies: 2
- Views: 9935
Re: Generating events when focus changes
Thank you, that will work just fine for me
- Tue Apr 09, 2019 10:10 pm
- Forum: Liberty BASIC Language
- Topic: Generating events when focus changes
- Replies: 2
- Views: 9935
Generating events when focus changes
Is there a way to trap a focus change event on a Textbox in LBB? Specifically, I'd like to be able to trap the "leave" event when the Textbox loses the focus. Trapping when it gets the focus might have value too. I've been digging through a number of the available resources with no joy yet...