Search found 197 matches

by guest
Mon Mar 21, 2022 7:55 pm
Forum: General Board
Topic: Slowdown after repeated executions
Replies: 12
Views: 16938

Re: Slowdown after repeated executions

A re-boot restored normal speed. So does Task Manager show any evidence of a resource or memory leak (with additional columns enabled)? It's hard to understand what else could result in a slow-down that persists between different processes, but is resolved by a reboot. If you can identify what kind...
by guest
Thu Mar 17, 2022 5:46 pm
Forum: General Board
Topic: Slowdown after repeated executions
Replies: 12
Views: 16938

Re: Slowdown after repeated executions

The slowdown on successive executions appears to occur only when in repeated code-compile-execute sequences. I created an executable and I don't see the slowdown, at least in maybe 15-20 executions. OK. Although I don't have an explanation, I am less concerned if the problem manifests only in a 'de...
by guest
Tue Mar 01, 2022 7:24 pm
Forum: General Board
Topic: Slowdown after repeated executions
Replies: 12
Views: 16938

Re: Slowdown after repeated executions

I don't know if it's related or not but lately LBB takes 40 seconds to load and run on my laptop. It's less than two seconds here, which is what I would expect. The first thing I would try is disabling your Anti-Virus tools, which can sometimes be responsible for that kind of problem. If that makes...
by guest
Tue Mar 01, 2022 3:25 pm
Forum: Compatibility with LB4
Topic: Opening multiple windows
Replies: 2
Views: 7065

Re: Opening multiple windows

Can I make this work in LB4? LB4 doesn't like you 'closing' a window that isn't open, so you will need to introduce a couple of Boolean variables (I have called them FirstOpen and SecondOpen ) which keep track of which window is open. That way you can avoid trying to close a window that isn't open....
by guest
Fri Feb 25, 2022 10:27 am
Forum: General Board
Topic: Slowdown after repeated executions
Replies: 12
Views: 16938

Re: Slowdown after repeated executions

1. File dialogs take longer and longer to paint 2. Windows [in general] take longer and longer to paint ... some a little longer, some much longer. Please list a (small, but complete and self-contained) program which illustrates the behavior, along with instructions for how to run it (if needed). T...
by guest
Tue Jan 25, 2022 2:06 pm
Forum: General Board
Topic: Having troubble to embed files for exectuable
Replies: 3
Views: 6368

Re: Having troubble to embed files for exectuable

So the problem must be in my PC . But what can it be please? I'm afraid I'm no wiser than you are. It does look like some sort of 'access rights' issue, so if the directory and file attributes look OK perhaps it's something set by a policy. Or could it perhaps be linked with UAC Virtualization? Doe...
by guest
Thu Dec 16, 2021 3:20 pm
Forum: Liberty BASIC Language
Topic: internal error 16
Replies: 4
Views: 9157

Re: internal error 16

This is the part that is upsetting LBB: 1150 FOR RT=0 TO 2:READ NP, MT(RT):FOR I=1 TO NP 1170 READ MP(RT,I), MP$(RT,I), MR$(RT,I), ZM(RT,I):NEXT I,RT There are two nested FOR...NEXT loops (FOR RT... and FOR I...) but there is just a single NEXT statement for both: NEXT I,RT This is illegal in Libert...
by guest
Thu Dec 09, 2021 8:53 pm
Forum: Liberty BASIC Language
Topic: internal error 16
Replies: 4
Views: 9157

Re: internal error 16

zpq wrote: Thu Dec 09, 2021 6:49 pm what would cause "internal error 16" ?
Error 16 is "Syntax error". In what circumstances are you receiving it?
by guest
Fri Nov 05, 2021 10:04 am
Forum: General Board
Topic: problems with statictext and bmpbutton display
Replies: 6
Views: 9417

Re: problems with statictext and bmpbutton display

This is very strange - with your code, I see exactly the same as you! How does my code work for you? In the 'New features' section of the LB Booster documentation it says this: " The background color of (for example) a STATICTEXT control may be selected independently of the background color of...
by guest
Thu Nov 04, 2021 5:46 pm
Forum: General Board
Topic: problems with statictext and bmpbutton display
Replies: 6
Views: 9417

Re: problems with statictext and bmpbutton display

Hopefully the jpg's will give you an idea of what I mean. I'm afraid I still can't reproduce it here. If I run this program: nomainwin WindowHeight = 470 BackgroundColor$ = "darkcyan" statictext #w.st1, "No Stylebits", 50, 20, 200, 32 stylebits #w.st2, _SS_CENTER or _WS_BORDER, ...