Search found 542 matches

by John
Mon Apr 29, 2019 11:20 am
Forum: General Development
Topic: missing accuracy
Replies: 6
Views: 15646

missing accuracy

I ran into a problem where my 17 digit numeric bank account codes are converting their last two digits to zeros. Here is a sample program that demonstrates it 1 dim x$*64 2 x$='12345678901234567' 3 do 4 pr f str$(lc+=1)&',2,c': 'take '&str$(takeCount+=1) 5 rin f str$(lc+=1)&',2,17/#PIC(-...
by John
Tue Feb 12, 2019 12:33 pm
Forum: Printing
Topic: PRINTER_LIST function on Windows 10
Replies: 10
Views: 26675

Re: PRINTER_LIST function on Windows 10

Pete, Have you tried increasing the dim p_list$(1)*90 size to something larger? With USB ports and network addresses they can get pretty long pretty quickly. If you're using On SoFlow Ignore than that is probably the issue. On my system this program returns an empty array: on soflow ignore dim p_lis...
by John
Tue Sep 11, 2018 10:02 am
Forum: General Development
Topic: web services
Replies: 9
Views: 20218

Re: web services

oh yes - now it works! Thank you, Gordon! Thank you, Luis! And Thank you, Gabriel!

-John
by John
Mon Sep 10, 2018 6:59 am
Forum: General Development
Topic: web services
Replies: 9
Views: 20218

Re: web services

This is really helpful! When I try to run the sample code I get an error 4340 and syserr$ returns "Problem with the SSL CA cert (path? access rights?)". Am I forgetting something basic? Would I need to install an SSL certificate on my machine to use it?
by John
Fri Sep 07, 2018 1:13 pm
Forum: General Development
Topic: web services
Replies: 9
Views: 20218

Re: web services

So - is this a "Yes" I can access external web services methods? That's great! Are there any examples? Do I need "BR Web Server" to access web services? Is this a feature of BR! or a seperate product or just a really good example? Is there any documentation for it? How do I find ...
by John
Fri Sep 07, 2018 7:58 am
Forum: General Development
Topic: web services
Replies: 9
Views: 20218

web services

Does the latest BR! code have any access to the methods of web services ( https://www.webopedia.com/TERM/W/Web_Services.html )?

Are there any examples or documentation on the process?
by John
Tue Aug 14, 2018 11:10 am
Forum: Announcements
Topic: Contract Work or Code for Purchase?
Replies: 3
Views: 15770

Re: Contract Work or Code for Purchase?

(message deleted)
by John
Fri Apr 13, 2018 7:27 am
Forum: Conferences
Topic: Questions you want answered in the Big Easy
Replies: 2
Views: 11412

Re: Questions you want answered in the Big Easy

Q1 - I'd like to know how to export my BR internal data files to a NoSQL database like MongoDb. Or even a SQL database. It'd be nice if the process utilized the fileIo file layouts I've been writing. Q2 - What task management/incident/bug tracking/support desk software do you use? Do you like it? Wh...
by John
Wed Mar 28, 2018 10:03 am
Forum: Conferences
Topic: Pre Conference Webinar
Replies: 20
Views: 38285

Re: Pre Conference Webinar

I can't get in... It says: admin.google.com is for G Suite accounts only. Regular Gmail accounts cannot be used to sign in to admin.google.com. Did anyone else have this issue?
by John
Tue Mar 27, 2018 12:04 pm
Forum: Conferences
Topic: BRG 2018 Conference - presenters wanted
Replies: 6
Views: 15982

Re: BRG 2018 Conference - presenters wanted

I could present how I use notepad++ for editing br code and some of the tools that make all the magic happen.
by John
Tue Mar 27, 2018 5:09 am
Forum: Conferences
Topic: Pre Conference Webinar
Replies: 20
Views: 38285

Re: Pre Conference Webinar

I'm ok with that.
by John
Fri Mar 23, 2018 7:57 am
Forum: Conferences
Topic: Pre Conference Webinar
Replies: 20
Views: 38285

Re: Pre Conference Webinar

me too
by John
Fri Mar 23, 2018 6:50 am
Forum: Conferences
Topic: Pre Conference Webinar
Replies: 20
Views: 38285

Re: Pre Conference Webinar

Awesome sauce!
by John
Fri Mar 23, 2018 5:03 am
Forum: Conferences
Topic: Pre Conference Webinar
Replies: 20
Views: 38285

Re: Pre Conference Webinar

Will TeamViewer 12 allow us to watch without rolling back our TeamViewer? I'm not going to roll my TeamViewer back to 12 for this but if I can watch without that then I would be happy to do so. In liu of that perhaps you may consider recording the presentation and sharing it on youtube (or whatever)...
by John
Thu Jan 18, 2018 12:01 pm
Forum: General Development
Topic: leading colons
Replies: 4
Views: 13836

Re: leading colons

Thanks guys! Yes, it all made sense. I couldn't figure out why I needed the second colon to make an full unc path to work in client/server but not in regular BR. I believe it was trying to auto-translate it into a relative path and auto-remove the extra \ (at least it thought it was extra). In my ex...