The limit is the total number of line numbers specified, not the actual line numbers.
Actual Line #'s may be between 00001 to 99999.
Search found 255 matches
- Mon Mar 04, 2024 10:27 pm
- Forum: General Development
- Topic: BR Limit (2**15/2)-1 = 16,383 Line #'s
- Replies: 2
- Views: 9190
- Mon Mar 04, 2024 10:23 pm
- Forum: BR Wiki
- Topic: Is the Wiki Down?
- Replies: 20
- Views: 65947
Re: Is the Wiki Down?
Good news, the Wiki is up and running again!
- Thu Feb 29, 2024 1:07 pm
- Forum: Announcements
- Topic: BR forum is back up
- Replies: 3
- Views: 9814
Re: BR forum is back up
Good news for me, my login worked!
Thanks for bringing it back online!
Thanks for bringing it back online!
- Wed Oct 25, 2023 11:13 am
- Forum: BR Wiki
- Topic: Is the Wiki Down?
- Replies: 20
- Views: 65947
Re: Is the Wiki Down?
The wiki is misbehaving as you noted. Here is a "work around" it works "Well Enough" Go to google.com -- I expect other search engines to work, but I know google.com works. Search for: site: https://brulescorp.com/brwiki2 [Search item] Example: site: https://brulescorp.com/brwiki...
- Sun Oct 15, 2023 12:45 pm
- Forum: General Development
- Topic: BR Limit (2**15/2)-1 = 16,383 Line #'s
- Replies: 2
- Views: 9190
BR Limit (2**15/2)-1 = 16,383 Line #'s
As we know, everything has limits. In BR, a program has Line #'s, and they are limited to 16,383 lines. You can add many lines of code to 1 line In the following example I am using only 1 line: 10 A=1 !: B=2 !: C=3 It seems that BR doesn't gracefully complain about an error at compile time, instead ...
- Fri May 19, 2023 12:26 pm
- Forum: General Development
- Topic: SQL Server Connection String
- Replies: 1
- Views: 9226
Re: SQL Server Connection String
It turns out that the message is just informational. (False Positive)
- Wed May 17, 2023 3:03 pm
- Forum: General Development
- Topic: Folder Name -- Picker
- Replies: 5
- Views: 16555
Re: Folder Name -- Picker
Nifty!: I had a problem running the code, I ran your sample through ChatGPT, and it returned the following: I ran the code using a command like this: cscript Folder_Picker.vbs "d:\Rejections\" >d:\work\output_file.txt Option Explicit Dim strPath, objArgs Set objArgs = WScript.Arguments str...
- Fri Mar 03, 2023 9:02 am
- Forum: General Development
- Topic: Folder Name -- Picker
- Replies: 5
- Views: 16555
Folder Name -- Picker
I am looking for a utility that will display a dialog box and then request the user pick a folder.
I know that BR has the "NAME=OPEN:" command, but that is a FILENAME picker, and I only want them to pick the folder.
Does anyone have something that I could use?
I know that BR has the "NAME=OPEN:" command, but that is a FILENAME picker, and I only want them to pick the folder.
Does anyone have something that I could use?
- Fri Mar 03, 2023 8:56 am
- Forum: General Development
- Topic: Folder Name -- Picker
- Replies: 4
- Views: 11276
Folder Name -- Picker
I am looking for a utility that will display a dialog box and then request the user pick a folder.
I know that BR has the "NAME=OPEN:" command, but that is a FILENAME picker, and I only want them to pick the folder.
Does anyone have something that I could use?
I know that BR has the "NAME=OPEN:" command, but that is a FILENAME picker, and I only want them to pick the folder.
Does anyone have something that I could use?
- Tue Dec 06, 2022 9:03 am
- Forum: General Development
- Topic: SQL Server Connection String
- Replies: 1
- Views: 9226
SQL Server Connection String
I am trying to create a connection string and am receiving the following error: • SQLDriverConnect(with connect string): connecting to database message SQL Dagnostic Info SQLState:01000 DB Err:5703 [Microsoft][SQL Server Native Client 11.0][SQL Server]Changed language setting to us_english. Does any...
- Tue Aug 16, 2022 8:32 am
- Forum: Advanced Concepts
- Topic: Convert Unix Timestamp
- Replies: 4
- Views: 14005
Re: Convert Unix Timestamp
David provided the magic formula!
pr date$(days(19700101)+timer/86400,'M/D/CY') = 8/16/2022
pr date$(days(19700101)+timer/86400,'M/D/CY') = 8/16/2022
- Tue Aug 16, 2022 8:28 am
- Forum: Advanced Concepts
- Topic: Convert Unix Timestamp
- Replies: 4
- Views: 14005
Re: Convert Unix Timestamp
See: https://www.unixtimestamp.com/ Seconds Since Jan 1/1970 Also, TIMER is BR is the same value: Human Readable Time Seconds 1 Hour 3600 Seconds 1 Day 86400 Seconds 1 Week 604800 Seconds 1 Month (30.44 days) 2629743 Seconds 1 Year (365.24 days) 31556926 Seconds I didn't do the math, but you should ...
- Tue Aug 09, 2022 7:18 am
- Forum: Advanced Concepts
- Topic: MFA authentication using BR's HTTP Client
- Replies: 1
- Views: 10294
Re: MFA authentication using BR's HTTP Client
Nice tool! In our application, I create an environment variable that stores an encrypted "Hex Code." In the setup routine of my primary library, I check to make sure it's properly configured, and if not, then I trap it for "Unauthorized Use." Sometimes a sophisticated user will t...
- Mon Feb 28, 2022 3:13 pm
- Forum: Printing
- Topic: Printing a Signature
- Replies: 4
- Views: 26440
Re: Printing a Signature
I am sure this solution falls into the "Costs A Fortune" category: https://www.wycomsystems.com/
I particularly like their solutions because you lock the solution with two separate keys. Both the Manager and the operator need to unlock the device in order to print checks.
I particularly like their solutions because you lock the solution with two separate keys. Both the Manager and the operator need to unlock the device in order to print checks.
- Sat Aug 07, 2021 8:45 am
- Forum: General Development
- Topic: Mixing Keyed and Relative File Access
- Replies: 11
- Views: 29149
Re: Mixing Keyed and Relative File Access
Your example reminded me why I don't use REC= for updating keyed files. BR is being helpful and is adding a NEW INDEX ENTRY, but it's also keeping the "OLD INDEX ENTRY" as well. I think that's a "Bug" and that BR should be deleting the original key information. If you run your pr...