tsNetSmtpSync (with attachment

2018-03-13 Thread G. Wolfgang Gaich via use-livecode
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)

Re: Passing Ampersand and Dot to PostGreSQL - MySQL

2011-11-02 Thread G. Wolfgang Gaich
Hello Sivakatirswami, I think it's an unicode problem if your database is UTF8. I use this function in that case to execute the SQL: function exeSQL_UTF8 pSQL -- pSQL is your SQL string global gDB local tRS local tSQL put unidecode(uniencode(pSQL),UTF8) into tSQL put

Re: Ask Password and Login Screen (Linux)

2011-08-19 Thread G. Wolfgang Gaich
Hello Richard, on Linux try the unicode char 25cf (9679): set the useunicode to true set the unicodetext of fld myFld to numtochar(9679) HTH Wolfgang Am 19.08.2011 16:34, schrieb Richard Gaskin: Jim Ault wrote: The option-8 is not always a bullet. It depends on the font and the high-ascii

German revolutionboard?

2011-08-11 Thread G. Wolfgang Gaich
Hello german livecoder, today I tried to go to revolutionboard.de. I got this: Forbidden You don't have permission to access / on this server. Revolutionboard doesn't exist anymore? Best regards Wolfgang ___ use-livecode mailing list

Re: German revolutionboard?

2011-08-11 Thread G. Wolfgang Gaich
A must-have for LiveCode programmers. On 11 aug 2011, at 09:44, G. Wolfgang Gaich wrote: Hello german livecoder, today I tried to go to revolutionboard.de. I got this: Forbidden You don't have permission to access / on this server. Revolutionboard doesn't exist anymore? Best regards Wolfgang

Legacy Drivers - Documentation?

2011-08-11 Thread G. Wolfgang Gaich
Hello, in the livecode ide preferences/Compatibility there is an option to Use Legacy Drivers. Is there any detailed documentation, when to use the Legacy Drivers and when it is not necessary. I detected some anomalies using odbc with MS SQL Server and Ingres. Any information would be

Re: how can I wait for revCopyFolder execution?

2011-08-11 Thread G. Wolfgang Gaich
Hello Tiemo from my experiences I can say that revcopyfolder is a blocking command. If I have in a script: revcopyfolder myFolder,myCopyFolder answer the result then the dialog pops up when the copy-process has ended I'm on Windows 7, may be on Mac it is not blocking (Can't test that) Best

Re: how can I wait for revCopyFolder execution?

2011-08-11 Thread G. Wolfgang Gaich
Hello Tiemo, my test was with a 26GB folder with many, many subfolders. it took 24 minutes and the script was hold until all folders and files were copied. Best Wolfgang Am 11.08.2011 14:34, schrieb Tiemo Hollmann TB: Thanks Mark, I will give it a try. @Wolfgang, perhaps the issue, why

Re: Storing Data in Standalone Apps

2011-08-11 Thread G. Wolfgang Gaich
or you use a serialized array. E.g.: -- to save your preferences global gPrefs on mouseUp put the loc of this stack into gPrefs[Stackloc] put the rect of this stack into gPrefs[StackRect] put the backcolor of this stack into gPrefs[StackBCol] put arrayencode(gPrefs) into url

Re: setting bordercolor of images in group

2011-04-19 Thread G. Wolfgang Gaich
Hallo Klaus, a workaround may be: on dragenter ... if the short name of the owner of the target is not g1 then do group the long id of the target set the name of the owner of the target to g1 end if set the bordercolor of the owner of the target to 255,255,102

Re: Accessing 'ntext' fields from SQL Server over ODBC (Windows)

2011-01-12 Thread G. Wolfgang Gaich
Hi Ben, try to convert nstring to varchar in your sql query: select convert(varchar, yourNStringColumn) from table ... HTH Wolfgang Am 12.01.2011 13:51, schrieb Ben Rubinstein: We've got a problem with reading data from an 'ntext' column in a MS SQL Server database. This has arisen in a