Search found 4 matches

by David Bohlke
Sun Aug 16, 2020 10:18 am
Forum: General Development
Topic: read prior loop EoF
Replies: 2
Views: 10803

Re: read prior loop EoF

It sounds counter-intuitive, but EOF works for beginning of file on a READ PRIOR
READ #1,using xx,PRIOR:Var1 EOF wherever
by David Bohlke
Thu Jan 23, 2020 5:46 pm
Forum: General Development
Topic: Additional option for MSGBOX
Replies: 5
Views: 15268

Re: Additional option for MSGBOX

I frequently use another software product called AutoHotKey to automate some processes. I have often wished that the MsgBox could be customized with multiple buttons besides the standard Yes No Cancel. Multiple buttons with each having a custom label. The same thing would apply here.
by David Bohlke
Fri Sep 22, 2017 1:19 pm
Forum: General Development
Topic: Drive REmapping
Replies: 3
Views: 12457

Re: Drive REmapping

Doesn't that require you to set the environment variable before starting up BR?
Not sure, but I think an easier solution would be config substitute which can be done on the fly within BR. e.g. config sub q: c:\whatever
by David Bohlke
Wed Oct 12, 2011 3:06 pm
Forum: General Development
Topic: shell calls
Replies: 9
Views: 11511

John, your batch file (with a .bat extension) can be as simple as: path\file.exe (Whatever your called program is) echo >testdone (or whatever file name you would test for) In your BR program, while looping to check for file "testdone" add a SLEEP(n) to pause it for n seconds so it doesn't...