Search found 255 matches

by GomezL
Sat Apr 30, 2016 1:47 am
Forum: Error Codes
Topic: MAC Bugs Listing
Replies: 7
Views: 17809

Re: MAC Bugs Listing

An interesting thing about the PDF test.

The PDF test creates auto numbered output files, but only auto increments to 99.

On the PC, the test fails at 100
by GomezL
Wed Apr 20, 2016 10:03 am
Forum: Advanced Concepts
Topic: Anybody written a JSON Parser?
Replies: 21
Views: 38779

Re: Anybody written a JSON Parser?

This is 100% not a comprehensive JSON parser, but I used it for a Known JSON source: 01020 PARSE_LINE: ! 01030 LET _Pos1=Pos(Json$,"{") 01040 LET _Pos2=Pos(Json$,"}") 01050 DO While _Pos1>0 And _Pos2>0 01060 LET Json_Line$=Trim$(Json$(_Pos1+1:_Pos2-1)) 01070 LET Json$(_Pos1:_Pos2...
by GomezL
Thu Mar 10, 2016 1:36 pm
Forum: 3rd Party Software from the BR Community
Topic: MyEdit Keywords - Specifically IGNORE
Replies: 3
Views: 12150

Re: MyEdit Keywords - Specifically IGNORE

I guess IGNORE:CONTINUE will be my solution : :D
by GomezL
Thu Mar 10, 2016 12:51 pm
Forum: 3rd Party Software from the BR Community
Topic: MyEdit Keywords - Specifically IGNORE
Replies: 3
Views: 12150

MyEdit Keywords - Specifically IGNORE

I am still using MyEdit, and have been struggling to extend the syntax checker to support the IGNORE Common. For example: PR 1/0 ZDIV IGNORE MyEdit complains Invalid FROM or Label Reference IGNORE. My workaround is to add a new line of code IGNORE: Continue Ryan mentioned something about MyEdit.BRKe...
by GomezL
Wed Mar 02, 2016 2:49 pm
Forum: General Development
Topic: Client/Server STARTDIR bug
Replies: 1
Views: 10354

Re: Client/Server STARTDIR bug

There are other reasons why you don't want the root name to have spaces, but there is a "Workaround" on the Server from DOS: DIR "C:\MyCorp\App*" /x It will return something like this C:\>dir "c:\Pro*" /x Volume in drive C is OS Volume Serial Number is 52BC-8936 Directo...
by GomezL
Thu Feb 04, 2016 6:05 am
Forum: BR Configuration
Topic: Windows automatic update for Win10 install - kills BR
Replies: 22
Views: 38935

Re: Windows automatic update for Win10 install - kills BR

Glad it worked out!

From your description, I would make sure that the SMB patches mentioned above are implemented.
by GomezL
Tue Feb 02, 2016 1:19 pm
Forum: BR Configuration
Topic: Windows automatic update for Win10 install - kills BR
Replies: 22
Views: 38935

Re: Windows automatic update for Win10 install - kills BR

In my application, I have a folder called WBWIN that has all of the BR Components BR.exe wbconfig.sys + includes startup.bmp dll files etc. My suggestion was to copy everything, although you can probably copy just some to try. --- I was also interested in your idea: Copy to C:\BR br.exe brclientdll4...
by GomezL
Tue Feb 02, 2016 5:19 am
Forum: BR Configuration
Topic: Windows automatic update for Win10 install - kills BR
Replies: 22
Views: 38935

Re: Windows automatic update for Win10 install - kills BR

Couple of things to try * Setup a very simple wbconfig.sys, sometimes the config problems are subtle, and not what they look like at first. * Try using a UNC Path DRIVE L:,L:,L:,\BR becomes L:,\\server\share,L:,\BR * Be Specific about the WBSERVER - WBServer \\server\share\BR * Try coping BR to the ...
by GomezL
Mon Jan 11, 2016 4:47 pm
Forum: General Development
Topic: Accurate "non-deleted" record count
Replies: 10
Views: 19899

Re: Accurate "non-deleted" record count

Just for fun, I wrote this function. (I hard coded the file handle to 99) I hard coded line 120 "Your_File.Int". Total Records 1,797,879 Total Time 7.374938 seconds Comes out to 243,782 records per second. Something about time tests, you only get accurate tests the 1st time, the 2nd time I...
by GomezL
Fri Nov 20, 2015 1:44 pm
Forum: General Development
Topic: BR Client Server in Windows Server 2012
Replies: 9
Views: 19642

Re: BR Client Server in Windows Server 2012

I forget the specifics, but you need to setup

ALLOW LOCAL LOGIN on the Server.
by GomezL
Thu Jul 16, 2015 8:15 am
Forum: Printing
Topic: Clearing the spool directory
Replies: 1
Views: 10683

Re: Clearing the spool directory

That's pretty nifty! I actually use the following to "Remap" my Spoolpath: EXECUTE "CONFIG SPOOLPATH "&Env$("TEMP") For Client Server, I maintain a Env$("CS_TEMP") folder, and point spool path there. IF Env$("CS_TEMP")<>"" THEN !: EXECU...
by GomezL
Mon May 25, 2015 7:56 am
Forum: General Development
Topic: STR2MAT - Quote Processing
Replies: 9
Views: 18459

Re: STR2MAT - Quote Processing

There probably needs to be some type of option in the open statement, and of course the crlf needs to be retained in the line that is being read.
by GomezL
Sun May 24, 2015 5:06 am
Forum: General Development
Topic: STR2MAT - Quote Processing
Replies: 9
Views: 18459

Re: STR2MAT - Quote Processing

CRLF in CSV files are used when a "Memo or Note Record" is included in the data. It does add an extra complication for processing CSV files. BR 4.3, really does make it much easier to parse CSV data. http://brwiki2.brulescorp.com/index.php?title=STR2MAT#CSV_Parsing_.284.3.29 http://brwiki2...
by GomezL
Sat Apr 04, 2015 10:44 am
Forum: General Development
Topic: Misc 4.3 Issues
Replies: 14
Views: 20968

Re: Misc 4.3 Issues

I had not noticed the performance differences inside the console, mainly because I completely rely on an external editor like MyEdit or Notepad++. With Client Server, screen IO now crosses the network, so it's much better to minimize the amount of screen output. Our application has a "Startup.w...
by GomezL
Tue Mar 17, 2015 6:33 am
Forum: Advanced Concepts
Topic: SYSTEM -S
Replies: 0
Views: 11348

SYSTEM -S

I had a project where I needed to Move a Large amount of Data to a new location. We use Business Rules in Client Server monde on a Windows Server. Sys -s Robocopy "F:\EDI_DATA\CLIENT_FOLDER\INCIDENT_NO" "F:\Purged_Incidents\INCIDENT_NO" /S /Move The above command in BR Launches a...