Search found 403 matches

by Gabriel
Tue Nov 05, 2019 10:15 pm
Forum: Advanced Concepts
Topic: Screenio Listview Filterlist question
Replies: 8
Views: 24626

Re: Screenio Listview Filterlist question

I need an Attribute that would make the foreground Blue and background Transparent so the Red Text that is already there would remain and show through. Any assistance in creating the correct Attribute for the Selection on an INPUT SELECT. The text color is the Foreground color. The space around the...
by Gabriel
Tue Nov 05, 2019 6:56 pm
Forum: Advanced Concepts
Topic: Screenio Listview Filterlist question
Replies: 8
Views: 24626

Re: Screenio Listview Filterlist question

I don't think you can change the color of the currently selected line in BR listviews. If you can show me the syntax to do it in BR i'll tell you how to do that in ScreenIO. A lot of BR syntax is supported by ScreenIO if you just put the right specification in the right place. For example, if you ca...
by Gabriel
Wed Oct 09, 2019 9:55 am
Forum: Conferences
Topic: 2020 BRG Conference - San Antonio NEED YOUR INPUT NOW
Replies: 4
Views: 16483

Re: 2020 BRG Conference - San Antonio NEED YOUR INPUT NOW

I'll be there, and Chris and I will be presenting a host of new and updated development tools we have built this year, that greatly improve the BR development experience.
by Gabriel
Sat Sep 14, 2019 11:34 pm
Forum: 3rd Party Software from the BR Community
Topic: New Release: ScreenIO and FileIO and Lexi Updates!
Replies: 0
Views: 21479

New Release: ScreenIO and FileIO and Lexi Updates!

Sage AX is proud to present updates to all of our tools. http://www.sageax.com/downloads/ScreenIO.zip http://www.sageax.com/downloads/FileIO.zip http://www.sageax.com/downloads/Lexi.zip These changes include many things that were discussed at the conference, and many other features that were needed....
by Gabriel
Fri Aug 23, 2019 4:22 pm
Forum: Advanced Concepts
Topic: IP V6 Compatibility?
Replies: 10
Views: 22212

Re: IP V6 Compatibility?

Oh. I guess windows creates those automatically. All we have to do is, every computer has a name, assigned when windows is first installed. We simply specify that name and it works. I moved away from using ip addresses years ago. It's much more easily maintained when doing stuff by name instead of n...
by Gabriel
Fri Aug 23, 2019 3:04 pm
Forum: Advanced Concepts
Topic: IP V6 Compatibility?
Replies: 10
Views: 22212

Re: IP V6 Compatibility?

So did you specifically try changing your addressing to specify the Server Name instead of the IP address?

That should get you around the problem, no? What am I missing?

host=MACS_Server
label=MACS
by Gabriel
Fri Aug 23, 2019 2:35 pm
Forum: Advanced Concepts
Topic: IP V6 Compatibility?
Replies: 10
Views: 22212

Re: IP V6 Compatibility?

Steve, When I connect to client server, for example, my brparms.txt looks like this: host=brsoft.sageax.com label=Sage My host forwards brsoft.sageax.com to my local internet here at my office. My router then forwards activity on the CS port to the computer that is my server. So it seems like it wou...
by Gabriel
Tue Jul 23, 2019 12:10 pm
Forum: Error Codes
Topic: 2274
Replies: 3
Views: 12686

Re: 2274

You gotta give us more details to go off of when you're asking for help. The only time I ran into that error was in some complicated code where many layers of libraries were calling each other recursively and simultaneously i was doing tricky stuff where i linked using the same function name to one ...
by Gabriel
Tue Jul 16, 2019 2:07 pm
Forum: General Development
Topic: System call to Atlantis word processor hanging
Replies: 29
Views: 54060

Re: System call to Atlantis word processor hanging

Susan, you're supposed to put your ""s around the entire path, not just the Program Files part.

L:\br>"c:\Program Files (x86)\Atlantis\atlantis.exe"
by Gabriel
Tue Jul 16, 2019 1:28 pm
Forum: General Development
Topic: System call to Atlantis word processor hanging
Replies: 29
Views: 54060

Re: System call to Atlantis word processor hanging

Gabriel - it's easier (to me) because it never conflicts with real drives and it's less confusing than keeping BR paths and OS paths being different but pointing to the same place. I prefer for all my paths to be OS Paths. I only use those weird BR paths when I have to. The problem is then you have...
by Gabriel
Tue Jul 16, 2019 1:09 pm
Forum: General Development
Topic: System call to Atlantis word processor hanging
Replies: 29
Views: 54060

Re: System call to Atlantis word processor hanging

Just because it works from the command line from those non-standard paths doesn't mean that the location isn't necessarily part of the problem. Still try %appdata%. John, you say you have something easier then a drive statement but then you describe something much more complicated then a drive state...
by Gabriel
Tue Jul 16, 2019 1:02 pm
Forum: Non-BR Topics
Topic: Use of Cloud Services
Replies: 2
Views: 11619

Re: Use of Cloud Services

He's talking about cloud services to host applications from, not websites.

This is a replacement for the server sitting in the corner of your office, not a replacement for your web host.
by Gabriel
Tue Jul 16, 2019 5:04 am
Forum: General Development
Topic: System call to Atlantis word processor hanging
Replies: 29
Views: 54060

Re: System call to Atlantis word processor hanging

John may be able to help more, as he's does it for all his customers. But I'm pretty sure you can just add a drive statement, such as: DRIVE T:,%appdata%\SherrifsRelief,.,\ you can make the folder (from command line or in a cmd file) by saying: cd %appdata% mkdir SherrifsRelief and so on. Basically,...
by Gabriel
Sun Jul 14, 2019 12:29 am
Forum: General Development
Topic: System call to Atlantis word processor hanging
Replies: 29
Views: 54060

Re: System call to Atlantis word processor hanging

Well, it would be pretty ugly. But we could probably figure out how to kill the task using the windows command line program "taskkill". We'd have to list the processes to a file, then parse the file to get the process ID, then give the command again specifying which task to kill. Yes, it w...
by Gabriel
Sat Jul 13, 2019 10:09 pm
Forum: General Development
Topic: System call to Atlantis word processor hanging
Replies: 29
Views: 54060

Re: System call to Atlantis word processor hanging

Of course! I'm happy to brainstorm with you! I know the process is just hanging and not returning any error. Thats why I described how to do it a different way, so that even if the process hangs, your program still retains control and can launch a second process that will hopefully succeed (since yo...