Search found 5 matches

by jagermeister
Mon Oct 09, 2023 7:06 pm
Forum: Coding Questions
Topic: How to async this (if it has to be)?
Replies: 3
Views: 6408

Re: How to async this?

*sigh*

Okay, it was my rusty brain. MSSQL needs to allow SQL authentication, have the login set up, and permission to the database, along with the listener using that login. Forgot about scope when it comes to web applications. :oops:

Made the changes and it's working beautifully.

Thank you, SB ...
by jagermeister
Mon Oct 09, 2023 3:38 pm
Forum: Coding Questions
Topic: How to async this (if it has to be)?
Replies: 3
Views: 6408

Re: How to async this?

Hello Plouf,

Yes, web server (IIS) and listener are on the same server, as well as the database (MSSQL). The listener has permissions to run, and does, and will return correct strings in PB debug. In production, however, only the parts of the string that are directly set like header$ are returned ...
by jagermeister
Mon Oct 09, 2023 7:20 am
Forum: Coding Questions
Topic: How to async this (if it has to be)?
Replies: 3
Views: 6408

How to async this (if it has to be)?

This should be a simple request with XML string returned, but I don't get the result$ data back (though I do get header$ and <Records> tags). Probably rock bottom basic for you sorcerers. :P

SB page:

Procedure HttpGetEvent(Success, Result$, UserData)
If Success
MessageRequester("Success" + Chr ...
by jagermeister
Sat Sep 02, 2023 11:54 pm
Forum: Coding Questions
Topic: Why isn't this working?
Replies: 3
Views: 7077

Re: Why isn't this working?

Your code will only output if the window x or y is out of bounds on the left or top of the screen. What is it you're trying to accomplish exactly?

Note: Whoops! Didn't notice this is from months ago. :oops:
by jagermeister
Thu Sep 21, 2017 6:33 am
Forum: Coding Questions
Topic: How to send text to default email client
Replies: 7
Views: 8369

How to send text to default email client

Hi!

How can I send body / subject / recipient from a string/editor gadget to the default email client ? This is not like the earlier topic about sending email directly from the application.

- j