Search found 25 matches

by Kevin Klappstein
Mon Feb 08, 2010 1:33 pm
Forum: Advanced Concepts
Topic: big math
Replies: 2
Views: 4971

You are running into problems because 2**64 is larger than the largest integer value that BR can represent. This then goes into scientific notation and the least signifigant digits get lost which is why the -1 essentially does nothing to the number.
by Kevin Klappstein
Wed Jan 06, 2010 11:02 am
Forum: Conferences
Topic: Who is using BR 4.2?
Replies: 7
Views: 9810

We are using 4.2 in development of the new version of our software.
by Kevin Klappstein
Tue Dec 08, 2009 4:27 pm
Forum: General Development
Topic: Go Step with Extended Function Key Processing
Replies: 7
Views: 10057

Keep in mind that clauses are not quite that simple though. For instance an 'if...then' statement is comprised of 2 clauses even though it is one line. To see where the clauses are in your code you can use the "list clause" command which will proceed each clause with a single quote. I beli...
by Kevin Klappstein
Fri Nov 20, 2009 11:40 am
Forum: General Development
Topic: Switching tabs with a grid
Replies: 1
Views: 4004

Never mind, I figured it out. I was doing an rinput with a nowait to get the details of the changes to the grid, which switched the tab back.
by Kevin Klappstein
Fri Nov 20, 2009 10:50 am
Forum: General Development
Topic: Switching tabs with a grid
Replies: 1
Views: 4004

Switching tabs with a grid

Is anyone else having problems switching off a tab that just has a grid on it? The curtab(mytab) function does not seem to update to the next tab like it does off a regular input, so while BR might automatically switch to the next tab, my program looks at the curtab and does an input back to the gri...
by Kevin Klappstein
Thu Nov 19, 2009 10:27 am
Forum: Printing
Topic: Turn off IMAGE CACHE in NWP
Replies: 3
Views: 13539

I am not sure if this works for NWP, but normal picture caching can be turned off with the config command:
picture cache_off
by Kevin Klappstein
Thu Oct 15, 2009 4:06 pm
Forum: General Development
Topic: Background Images on Screens
Replies: 6
Views: 8222

The only times I have a redraw problem is when the console window is open. We use a background image with transparency at our main menu and haven't had a problem in 4.17, 4.18 or 4.20
by Kevin Klappstein
Thu Oct 15, 2009 2:26 pm
Forum: General Development
Topic: Background Images on Screens
Replies: 6
Views: 8222

Try a .png instead of a gif. I know that the transparency works for sure on the main window with a png; I haven't tried it on a child window.
by Kevin Klappstein
Wed Oct 14, 2009 2:39 pm
Forum: General Development
Topic: Date/Days functions
Replies: 2
Views: 4529

Using a blank string appears to return the first day of the current month; I set my date ahead 1 month and it returned November 1 as the result.
This is new and interesting behavior.

Kevin Klappstein
Western Canadian Software
by Kevin Klappstein
Thu Jun 11, 2009 9:11 am
Forum: Error Codes
Topic: [BR_forum] err1154
Replies: 1
Views: 10744

err1154

The problem is almost always duplicate line numbers or line numbers out of order. If you are using line numbers in your editing, MyEditBR will give warnings (not errors) about both of these. If you aren't using Line Numbers and are automatically generating line numbers, then there is probably an err...