Search found 13 matches

by Steving
Fri Jun 27, 2025 6:34 pm
Forum: Coding Questions
Topic: Trying to show that I'm working (my program, that is)
Replies: 6
Views: 429

Re: Trying to show that I'm working (my program, that is)

Thanks everyone. @pjay, your code worked flawlessly. Thank you so much! @Axolotl, thank you, I will look at that link from mk-soft. I appreciate all of you and the help that I have received. Thank you.
by Steving
Fri Jun 27, 2025 7:02 am
Forum: Coding Questions
Topic: Trying to show that I'm working (my program, that is)
Replies: 6
Views: 429

Trying to show that I'm working (my program, that is)

I am pulling my hair out (and I don't have much) trying to get some lame indication that my program is running in the form of a status bar. I've threaded my program but for some reason the status bar display shows "Not responding" and doesn't do anything. I know that my program is running but ...
by Steving
Wed Jul 28, 2021 6:04 pm
Forum: Coding Questions
Topic: Can't get HTTPRequest Authorization working
Replies: 2
Views: 1410

Re: Can't get HTTPRequest Authorization working

Thanks so much! That did the trick! :D :D :D
by Steving
Wed Jul 28, 2021 2:17 am
Forum: Coding Questions
Topic: Can't get HTTPRequest Authorization working
Replies: 2
Views: 1410

Can't get HTTPRequest Authorization working

Hello all,

I hope someone can help me with this. I have done this exact thing before with another site and it's working fine, but for some reason I'm trying to develop something with ServiceNOW and I can't get the authorization working. I've tried various ways of doing it but every time I try and ...
by Steving
Fri Feb 05, 2021 4:27 pm
Forum: Tricks 'n' Tips
Topic: Faster string concatenation: Alternative method
Replies: 15
Views: 7902

Re: Faster string concatenation: Alternative method

I can't believe how much faster it is than standard string concatenation. I measured the performance in a loop with 100,000 iterations adding 4 items per iteration, yielding a total string length of 2,188,895 characters with an elapsed milliseconds of 311. Standard "" + "" string concatenation took ...
by Steving
Tue Jan 26, 2021 6:23 pm
Forum: Coding Questions
Topic: Trying to figure out why my HTTPRequest Post does not work
Replies: 3
Views: 1162

Re: Trying to figure out why my HTTPRequest Post does not wo

Wow @infratec, I knew you were good but this one knocks it out of the park. I get a lot of good information reading your replies to other issues on this board. Thanks also TI-994A for your help with the output formatting. This helped me so much I can't believe you just got that so fast. All I did ...
by Steving
Tue Jan 26, 2021 2:52 am
Forum: Coding Questions
Topic: Trying to figure out why my HTTPRequest Post does not work
Replies: 3
Views: 1162

Trying to figure out why my HTTPRequest Post does not work

Hello all,

I'm trying to get some data uploaded to a server run by a 3rd party, and I was having issues, do I broke it down to it's most basic, and was trying to work with the dneonline calculator through a SOAP request. Here is my code:

NewMap Header.s()
Header("POST") = "http://www.dneonline ...
by Steving
Thu Dec 31, 2020 12:46 am
Forum: Coding Questions
Topic: Trying to add a node to an existing XML file
Replies: 2
Views: 957

Re: Trying to add a node to an existing XML file

:D :D :D :D :D :D :D :D :D :D :D :D

I'm a happy dude over here! Your answer pointed me in the correct direction. The thing that fixed it was (for anyone else that's starting out with this)

MainNode = XMLNodeFromPath(MainXMLNode(MasterXML), "/Customers")

Once I added that it worked and I was ...
by Steving
Wed Dec 30, 2020 3:38 am
Forum: Coding Questions
Topic: Trying to add a node to an existing XML file
Replies: 2
Views: 957

Trying to add a node to an existing XML file

Hello all,

I'm working with creating an XML file and updating it with new data when I get new entries from a file. The code works fine then I create the XML file with CreateXML but when I load the file with LoadXML and try to add a node it gives me an error. There must be something that I'm missing ...
by Steving
Tue Oct 03, 2017 1:42 am
Forum: Tricks 'n' Tips
Topic: WMI
Replies: 19
Views: 50653

Re: WMI

Thanks so much! You are a steely-eyed programming MASTER! :D
by Steving
Wed Sep 13, 2017 9:35 pm
Forum: Coding Questions
Topic: String manipulation gives Invalid Memory Access run time err
Replies: 4
Views: 2679

Re: String manipulation gives Invalid Memory Access run time

:idea: :arrow: :mrgreen:

Update:

Thanks so much Demivec for your suggestion of using Option Explicit. I fixed one of the typo's with the Pointer without the () but I missed another one. However, Option Explicit found it for me and now I'm fat dumb and happy (or at least fat and dumb).

Thanks ...
by Steving
Wed Sep 13, 2017 8:45 pm
Forum: Coding Questions
Topic: String manipulation gives Invalid Memory Access run time err
Replies: 4
Views: 2679

Re: String manipulation gives Invalid Memory Access run time

I'm sorry I didn't use the code "code" to put in my code :oops:

My code dies the first time it hits a line in the input file that qualifies to be edited out for the "Return String" ElseIf part of the code, around line 229. I put in a check to see if I'm bounding off the end of the string by ...
by Steving
Tue Sep 12, 2017 11:53 pm
Forum: Coding Questions
Topic: String manipulation gives Invalid Memory Access run time err
Replies: 4
Views: 2679

String manipulation gives Invalid Memory Access run time err

Hello all,

I'm sorry if this has been covered in another topic, I searched but there were a great many hits and it was hard sifting through them all. I'm having a problem with my code. It's a simple program to parse a log file and gather information together in a linked list and then export it to ...