Search found 10 matches

by Sparks
Tue Jul 14, 2020 1:50 am
Forum: Liberty BASIC Language
Topic: MAINWIN prints when closed
Replies: 2
Views: 6358

Re: MAINWIN prints when closed

Thanks a bunch, that is the problem
by Sparks
Mon Jul 13, 2020 10:29 pm
Forum: Liberty BASIC Language
Topic: MAINWIN prints when closed
Replies: 2
Views: 6358

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?
by Sparks
Mon Nov 11, 2019 6:28 pm
Forum: Liberty BASIC Language
Topic: Font size in window title bars
Replies: 4
Views: 10113

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
by Sparks
Thu Oct 31, 2019 9:02 pm
Forum: Liberty BASIC Language
Topic: Font size in window title bars
Replies: 4
Views: 10113

Font size in window title bars

Is there a way in LBB to control the font size in window title bars?
by Sparks
Wed Jul 03, 2019 4:46 pm
Forum: Liberty BASIC Language
Topic: Defining controls
Replies: 3
Views: 9000

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. [:-)
by Sparks
Mon Jul 01, 2019 11:20 pm
Forum: Liberty BASIC Language
Topic: Defining controls
Replies: 3
Views: 9000

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 ...
by Sparks
Mon May 27, 2019 7:59 pm
Forum: Liberty BASIC Language
Topic: Handle variables in control definition statements
Replies: 2
Views: 8215

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.
by Sparks
Sun May 26, 2019 11:57 pm
Forum: Liberty BASIC Language
Topic: Handle variables in control definition statements
Replies: 2
Views: 8215

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 ...
by Sparks
Wed Apr 10, 2019 6:52 pm
Forum: Liberty BASIC Language
Topic: Generating events when focus changes
Replies: 2
Views: 8465

Re: Generating events when focus changes

Thank you, that will work just fine for me
by Sparks
Tue Apr 09, 2019 10:10 pm
Forum: Liberty BASIC Language
Topic: Generating events when focus changes
Replies: 2
Views: 8465

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...