Re: LC Licensing and Website

2023-11-20 Thread G.W.Gaich via use-livecode

Hello Matthias,
Thank you for the info.
I just tested it and it works for me again, too.

Best
Günter

--
Mit freundlichen Grüßen

und bleiben Sie gesund

Günter Wolfgang Gaich
c/o AI-IT GmbH & Co KG
Marburger Str. 6, 35088 Battenberg
Fon: +49 15201704007
E-Mail: gwolfg...@gaich.de




Am 20.11.2023 um 20:06 schrieb matthias rebbe via use-livecode:

I just received an answer from the LC hosting support. Login and licensing 
should be possible again. Tried it here already with success.



Am 20.11.2023 um 19:57 schrieb matthias rebbe via use-livecode 
:

Me too, but send an email to livecode hosting support as urgent, because the 
service at that address is provided 24/7. I am not sure if the normal LC 
support address is watched outside the office hours?


Am 20.11.2023 um 19:55 schrieb Ralph DiMola via use-livecode 
:

I sent an email to support before I sent to the list.

Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


-Original Message-
From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf
Of Mark Wieder via use-livecode
Sent: Monday, November 20, 2023 1:41 PM
To: Ralph DiMola via use-livecode
Cc: Mark Wieder
Subject: Re: LC Licensing and Website

On 11/20/23 10:29, Ralph DiMola via use-livecode wrote:

I can't license LC or login to my LC account on the website. Anyone else

having problems?

Yep. It's dead.

--
Mark Wieder
ahsoftw...@gmail.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



--
Mit freundlichen Grüßen

und bleiben Sie gesund

Günter Wolfgang Gaich
Neustädter Str. 25, 35066 Frankenberg
Fon: +49 15201704007
E-Mail: gwolfg...@gaich.de


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: signature widget

2023-06-22 Thread G.W.Gaich via use-livecode

Mike,

in one of my applications I use this code:

command saveSign
   show grc "UnterschriftRect"  -- lies behind the widget for a white 
background

   show widget "Unterschrift"

   lock screen
   if the pathData of widget "Unterschrift" is empty then exit to top
   thickenSignature "Unterschrift", 8  -- the signature is often too thin
   put 1200 into aMeta["density"]
   export snapshot from widget "Unterschrift" at size 140,70 with 
metadata aMeta["density"] to file "sign.png" as PNG


   hide grc "UnterschriftRect"
   hide widget "Unterschrift"

   unlock sceen
end saveSign

command thickenSignature pSignature,pFactor
   put the pathData of widget pSignature into tPathData
   repeat for each key tKey in tPathData
  multiply tPathData[tKey]["width"] by pFactor
   end repeat
   set the pathData of widget pSignature to tPathData
end thickenSignature

Hope this helps

Best regards
Günter
E-Mail: gwolfg...@gaich.de




Am 21.06.2023 um 22:52 schrieb Mike Kerner via use-livecode:

i finally have a use-case for the signature widget.
* has anyone used it?
* does anyone have experiencing transporting the signature data, then
recreating it, say, by adding it to a document, or generating an svg
file?

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: tsNetSmtpSync (with attachment

2018-03-22 Thread G.W.Gaich via use-livecode

Hello Charles,

thank you very much. Now it works.


Am 22.03.2018 um 05:25 schrieb Charles Warwick via use-livecode:

Hi,


On 22 Mar 2018, at 1:57 am, G.W.Gaich via use-livecode 
<use-livecode@lists.runrev.com> wrote:


schannel: decrypted data buffer: offset 0 length 16384
501 Syntax error - line too long


This gives us a clue.  It looks like your mail server is not detecting the line 
endings in the body of the e-mail.

Can you try add the following line just before the call to tsNetSmtpSync (line 
38) in the mouseUp handler of the “Send Email” button:

replace LF with CRLF in tPostData

And see if that makes any difference?

Regards,

Charles




Am 21.03.2018 um 09:34 schrieb Charles Warwick via use-livecode:
Can you please download the following stack:

https://downloads.techstrategies.com.au/tsnet/debug_liburl.livecode

Open it while you have your LCMail stack open, click the “start debug” button 
in the above stack, try send an e-mail with an attachment and then click “stop 
debug” to stop the timer in the debug field.

That should generate some debug information about your SMTP connection.  If you 
can post the results of that (minus any private details) it might help us to 
work out what is going on.

Regards,

Charles


On 21 Mar 2018, at 5:24 am, G.W.Gaich via use-livecode 
<use-livecode@lists.runrev.com> wrote:

Hello Charles,

thank you for your reply.

I have the same result if I disable the anti-virus software.

I testet it on another machine (windows 10). I get that error:


tsneterr: (56) Failure when receiving data from the peer

My Mailserver:
smtp.1und1.de
Port is 587
Authentification Method is password, normal
Encryption is STARTTLS


With Thunderbird I can send emails with attachments

Best
Günter


Am 19.03.2018 um 04:07 schrieb Charles Warwick via use-livecode:
Hi,

That does seem odd...  Is there any chance you might have some anti-virus 
software running that might be getting in the way?

Regards,

Charles


On 14 Mar 2018, at 1:18 am, G. Wolfgang Gaich via use-livecode 
<use-livecode@lists.runrev.com> wrote:

Hallo all,

try to send an email with attachment (PDF) from LiveCode with tsNet 
(tsNetSmtpSync)

I tried the sample stack "Mail v1.2" from
https://downloads.techstrategies.com.au/tsnet/LCMail.livecode

I get an error when I try to send with an attachment (PDF document):

Error tsneterr: (28) schannel: timed out sending data (bytes sent: 0)
returned from server


Without the attachment the email is send.

Windows 7, LC 8.1.9


Any ideas?

Best
Günter


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: tsNetSmtpSync (with attachment

2018-03-21 Thread G.W.Gaich via use-livecode
d data cached: offset 43 length 16384
schannel: encrypted data buffer: offset 0 length 17408
schannel: decrypted data buffer: offset 43 length 16384
schannel: schannel_recv cleanup
schannel: decrypted data returned 43
schannel: decrypted data buffer: offset 0 length 16384
250 Requested mail action okay, completed
RCPT TO:<guen...@gaich.de>
schannel: client wants to read 16384 bytes
schannel: encrypted data buffer: offset 0 length 17408
schannel: encrypted data got 37
schannel: encrypted data buffer: offset 37 length 17408
schannel: decrypted data length: 8
schannel: decrypted data added: 8
schannel: decrypted data cached: offset 8 length 16384
schannel: encrypted data buffer: offset 0 length 17408
schannel: decrypted data buffer: offset 8 length 16384
schannel: schannel_recv cleanup
schannel: decrypted data returned 8
schannel: decrypted data buffer: offset 0 length 16384
250 OK
DATA
schannel: client wants to read 16384 bytes
schannel: encrypted data buffer: offset 0 length 17408
schannel: encrypted data got 75
schannel: encrypted data buffer: offset 75 length 17408
schannel: decrypted data length: 46
schannel: decrypted data added: 46
schannel: decrypted data cached: offset 46 length 16384
schannel: encrypted data buffer: offset 0 length 17408
schannel: decrypted data buffer: offset 46 length 16384
schannel: schannel_recv cleanup
schannel: decrypted data returned 46
schannel: decrypted data buffer: offset 0 length 16384
354 Start mail input; end with .
We are completely uploaded and fine
schannel: client wants to read 16384 bytes
schannel: encrypted data buffer: offset 0 length 17408
schannel: encrypted data got 63
schannel: encrypted data buffer: offset 63 length 17408
schannel: decrypted data length: 34
schannel: decrypted data added: 34
schannel: decrypted data cached: offset 34 length 16384
schannel: encrypted data buffer: offset 0 length 17408
schannel: decrypted data buffer: offset 34 length 16384
schannel: schannel_recv cleanup
schannel: decrypted data returned 34
schannel: decrypted data buffer: offset 0 length 16384
501 Syntax error - line too long
Connection #2 to host smtp.1und1.de left intact
1521647499
1521647500
1521647501
1521647502
1521647503
1521647504





Am 21.03.2018 um 09:34 schrieb Charles Warwick via use-livecode:

Can you please download the following stack:

https://downloads.techstrategies.com.au/tsnet/debug_liburl.livecode

Open it while you have your LCMail stack open, click the “start debug” button 
in the above stack, try send an e-mail with an attachment and then click “stop 
debug” to stop the timer in the debug field.

That should generate some debug information about your SMTP connection.  If you 
can post the results of that (minus any private details) it might help us to 
work out what is going on.

Regards,

Charles


On 21 Mar 2018, at 5:24 am, G.W.Gaich via use-livecode 
<use-livecode@lists.runrev.com> wrote:

Hello Charles,

thank you for your reply.

I have the same result if I disable the anti-virus software.

I testet it on another machine (windows 10). I get that error:


tsneterr: (56) Failure when receiving data from the peer

My Mailserver:
smtp.1und1.de
Port is 587
Authentification Method is password, normal
Encryption is STARTTLS


With Thunderbird I can send emails with attachments

Best
Günter


Am 19.03.2018 um 04:07 schrieb Charles Warwick via use-livecode:
Hi,

That does seem odd...  Is there any chance you might have some anti-virus 
software running that might be getting in the way?

Regards,

Charles


On 14 Mar 2018, at 1:18 am, G. Wolfgang Gaich via use-livecode 
<use-livecode@lists.runrev.com> wrote:

Hallo all,

try to send an email with attachment (PDF) from LiveCode with tsNet 
(tsNetSmtpSync)

I tried the sample stack "Mail v1.2" from
https://downloads.techstrategies.com.au/tsnet/LCMail.livecode

I get an error when I try to send with an attachment (PDF document):

Error tsneterr: (28) schannel: timed out sending data (bytes sent: 0)
returned from server


Without the attachment the email is send.

Windows 7, LC 8.1.9


Any ideas?

Best
Günter


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subs

Re: tsNetSmtpSync (with attachment

2018-03-20 Thread G.W.Gaich via use-livecode

Hello Bob,
thank you for your reply.
With Thunderbird I send emails with attachments everyday to that server.

Best
Günter


Am 19.03.2018 um 16:45 schrieb Bob Sneidar via use-livecode:

Sounds like the receiver is blocking attachments. Many mail gateways do this, 
either because the extension is not allowed, or the attachment is too big.

Bob S



On Mar 18, 2018, at 20:07 , Charles Warwick via use-livecode 
 wrote:

[This message was identified as a phishing scam. Learn about phishing at 
http://aka.ms/LearnAboutPhishing]

Hi,

That does seem odd...  Is there any chance you might have some anti-virus 
software running that might be getting in the way?

Regards,

Charles


On 14 Mar 2018, at 1:18 am, G. Wolfgang Gaich via use-livecode 
 wrote:

Hallo all,

try to send an email with attachment (PDF) from LiveCode with tsNet 
(tsNetSmtpSync)

I tried the sample stack "Mail v1.2" from
https://downloads.techstrategies.com.au/tsnet/LCMail.livecode

I get an error when I try to send with an attachment (PDF document):

Error tsneterr: (28) schannel: timed out sending data (bytes sent: 0)
returned from server


Without the attachment the email is send.

Windows 7, LC 8.1.9


Any ideas?

Best
Günter


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: tsNetSmtpSync (with attachment

2018-03-20 Thread G.W.Gaich via use-livecode

Hello Charles,

thank you for your reply.

I have the same result if I disable the anti-virus software.

I testet it on another machine (windows 10). I get that error:


tsneterr: (56) Failure when receiving data from the peer

My Mailserver:
smtp.1und1.de
Port is 587
Authentification Method is password, normal
Encryption is STARTTLS


With Thunderbird I can send emails with attachments

Best
Günter

Am 19.03.2018 um 04:07 schrieb Charles Warwick via use-livecode:

Hi,

That does seem odd...  Is there any chance you might have some anti-virus 
software running that might be getting in the way?

Regards,

Charles


On 14 Mar 2018, at 1:18 am, G. Wolfgang Gaich via use-livecode 
 wrote:

Hallo all,

try to send an email with attachment (PDF) from LiveCode with tsNet 
(tsNetSmtpSync)

I tried the sample stack "Mail v1.2" from
https://downloads.techstrategies.com.au/tsnet/LCMail.livecode

I get an error when I try to send with an attachment (PDF document):

Error tsneterr: (28) schannel: timed out sending data (bytes sent: 0)
returned from server


Without the attachment the email is send.

Windows 7, LC 8.1.9


Any ideas?

Best
Günter


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Clipboard pastes into single spreadsheet cell

2017-10-18 Thread G.W.Gaich via use-livecode

I made a test:

set the clipboarddata to 1 & tab & 2 & tab & 3

pasted into a google spreadsheet cell and three cells were filled as 
expected.


Livecode 8.1.6
windows 7
firefox 56

perhaps it's a mac or browser thing


Am 18.10.2017 um 10:27 schrieb Paul Foraker via use-livecode:

On a Mac with LC 8.6.1 (Community)

Tabs coming from LiveCode are converted to spaces when pasted to a Google
spreadsheet, but are not converted when pasting from BBEdit.

I'm collecting data into a tab-delimited row (line) and putting it on the
Clipboard, then pasting the row into a Google spreadsheet. For example:

*put theData["Date"] & theData["First name"] \*
*& theData["Surname"] into theRow*

*set the ClipboardData["text"] to theRow*


When I go to a Google Spreadsheet, click in an empty cell and paste, the
tabs are ignored (converted to spaces) and the entire row gets pasted into
the single cell as space-delimited.

I have discovered a workaround. If I first paste from LiveCode to BBEdit
(the tabs are recognized) and then copy and paste from BBEdit to the
spreadsheet, the tabs are OK and the data populates into separate cells.

I've tried this with Safari, Firefox, and Chrome, so the problem isn't
browser-specific.


I don't want to ask my end-user to paste into another application before
pasting into the spreadsheet.

Anyone know of a fix for this?

-- Paul




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode