Re: Has anybody run into this problem?

2007-11-07 Thread Charles Szasz
Thanks for the suggestions! I have already downloaded the pc program to check to if the program is still running. -- View this message in context: http://www.nabble.com/Has-anybody-run-into-this-problem--tf4755463.html#a13641119 Sent from the Revolution - User mailing list archive at Nabble.c

Re: Neat Trick!

2007-11-07 Thread Ken Ray
On Wed, 7 Nov 2007 23:44:49 +, Dave wrote: > Thought I'd share this one! If you have a number of function calls > that can fail by returning a value and you need to check but also > save the result, here's a neat trick: Nice one, Dave! I can see that coming in handy... Ken Ray Sons of Thu

Re: Rev cgi on Win 2K server, anyone ?

2007-11-07 Thread Mark Wieder
jbv- > actually I have good news : I now have Rev cgi running on my client's > Win 2003 server !!! I pointed the guy in charge of the server to your > earlier post from 18 months ago, and 20 mins later the thing was up and > running > ! > those young guys can be impressive... My guess is that

Neat Trick!

2007-11-07 Thread Dave
Hi All, Thought I'd share this one! If you have a number of function calls that can fail by returning a value and you need to check but also save the result, here's a neat trick: repeat forever put empty into myErrorMessage if somefunction(Inputparam1, Inputparam2,myResult1,myErrorMessage)

Re: Idle handlers and Text files

2007-11-07 Thread Kay C Lan
On Nov 7, 2007 9:28 PM, Malte Brill <[EMAIL PROTECTED]> wrote: > following test scenario. Vanilla Stack, first card script reads: > > on preOpenStack > answer "moo" > end preOpenStack > > Save->quit rev, double click -> No moo at all > > quit rev -> open Rev -> double click -> Moos just fine > >

Re: Rev cgi on Win 2K server, anyone ?

2007-11-07 Thread Stephen Barncard
There's a variable that needs to be set for the 'old style passwords' in MySQL, then it will work. others here have the recipe. but now I have another problem : I just can't connect to mySQL 5.0.22... -- stephen barncard s a n f r a n c i s c o - - - - - - - - - - - - __

Re: Rev cgi on Win 2K server, anyone ?

2007-11-07 Thread jbv
Mark , Thanks again for kindly answering my post. actually I have good news : I now have Rev cgi running on my client's Win 2003 server !!! I pointed the guy in charge of the server to your earlier post from 18 months ago, and 20 mins later the thing was up and running ! those young guys can b

Re: Rev cgi on Win 2K server, anyone ?

2007-11-07 Thread jbv
Andre, thanks for the offer, but I've also been using rev cgi on Linux since 2001 (MC cgi actually)... but this is the first time on a windows server... JB > Hey JBV, > > I don't do windows, but if you ever get this running, I can try to > help with the cgi part... I been using rev cgi under l

Re: Rev cgi on Win 2K server, anyone ?

2007-11-07 Thread Andre Garzia
Hey JBV, I don't do windows, but if you ever get this running, I can try to help with the cgi part... I been using rev cgi under linux for some time! Cheers andre On 11/5/07, jbv <[EMAIL PROTECTED]> wrote: > Hi list, > > I need to install Rev cgi on a Win 2003 server, with connections > to mySQL

Re: Rev cgi on Win 2K server, anyone ?

2007-11-07 Thread Mark Wieder
JB- > servers. Last but not least, the whole thing must be up and running by > next monday... !!! > what I'm more concerned with, is to find a Rev cgi engine that runs > on a Win2K server. Your above mentioned post to the list featured > a link to a Rev engine for Win... do you know which versio

Re: [ANN] Quartam PDF Library joins RevSelect program

2007-11-07 Thread Andre Garzia
I just bought it :-) I have a project I always wanted to do and Quartam PDF is just what I needed! Congratulations Jan! :-D Cheers andre ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: stripping style from pasted text...

2007-11-07 Thread Andre Garzia
Hello Friends, it appears that somehow, I am loosing the pasteKey event. It is not working. I am not in the IDE (I know the IDE traps those, it is a standalone). I have a silly HTMLTextToXHTML function here that is able to pick a weird htmltext of a field and make it nice and tidy like all XHTML

Re: [ANN] Quartam PDF Library joins RevSelect program

2007-11-07 Thread Richard Gaskin
Congratulations Jan! Good move. In my shop the biggest need we have is to be able to display and search PDF contents. Anything in the pipeline for those tasks? -- Richard Gaskin Managing Editor, revJournal ___ Rev tips, tutorials and mo

Re: stripping style from pasted text...

2007-11-07 Thread Jim Ault
Wouldn't the following work for you? > on pasteKey > if the clipboard is "text" then get the clipboardData["text"] set the clipboardData to it > end if > paste > end pasteKey Jim Ault Las Vegas On 11/7/07 8:45 AM, "Andre Garzia" <[EMAIL PROTECTED]> wrote: > Hello Friends, > > ne

Re: stripping style from pasted text...

2007-11-07 Thread Phil Davis
Hi Andre, Does this not work? -- assumes that some styled text has been copied to clipboard on mouseUp -- button script put the clipboarddata["text"] into fld 2 end mouseUp In a simple test here, it worked. Maybe there's more to it than I grasp. Or maybe it's not as hard as you think! ;o) P

Re: stripping style from pasted text...

2007-11-07 Thread Mark Smith
Andre, from an earler thread, you can do something like this (not well tested): put the clipboarddata into the templatefield put the text of the templatefield into fld "myField" Best, Mark ___ use-revolution mailing list use-revolution@lists.ru

Re: stripping style from pasted text...

2007-11-07 Thread Andre Garzia
Hello Andres, Due to bad luck, I can't use that code snip. The field may contain styled data already in there and the user is just adding more data. This would remove the styles from the text that is already there. The problem is that when pasting styled text, I have no control over the styles ins

Re: stripping style from pasted text...

2007-11-07 Thread Andres Martinez
Hello Andre You can use something like. set the textstyle of field "Field" to plain But it needs to run after the text has been pasted in your field. Regards, Andres Martinez www.baKno.com On Nov 7, 2007, at 11:45 AM, Andre Garzia wrote: Hello Friends, newbie question here. I have many fie

stripping style from pasted text...

2007-11-07 Thread Andre Garzia
Hello Friends, newbie question here. I have many fields where the user can paste text. The problem is, I don't want the text to be styled, I want to paste as plain text. I've added this to a frontscript: on pasteKey if the clipboard is "text" then ## Get rid of text styles...

Re: Idle handlers and Text files

2007-11-07 Thread Malte Brill
Hi Kay, following test scenario. Vanilla Stack, first card script reads: on preOpenStack answer "moo" end preOpenStack Save->quit rev, double click -> No moo at all quit rev -> open Rev -> double click -> Moos just fine same with drag and drop RR 2.8.1, Intel MacBook, German Os X.4.10, wit

Re: Rev cgi on Win 2K server, anyone ?

2007-11-07 Thread jbv
Mark, thanks for the reply. > jbv- > > Monday, November 5, 2007, 2:34:28 PM, you wrote: > > > I've found some advices / tutorials in the list archives, but most > > of them are at least 18 months old... > > Hmmm... 18 months sounds like you're looking at my posting of > instructions on how to d

Re: Re: Idle handlers and Text files

2007-11-07 Thread Kay C Lan
On Nov 6, 2007 11:11 PM, Malte Brill <[EMAIL PROTECTED]> wrote: > > Well, my experience is that it does not get sent if Rev is not yet > open and you double click on a stack file, or drag the stack to the > rev icon in the Dock under Os X. > If Rev is already open stacks Do get preOpenstack and o

[ANN] Quartam PDF Library joins RevSelect program

2007-11-07 Thread Jan Schenkel
[For those who haven't read the Revolution Newsletter] Quartam PDF Library for Revolution joins RevSelect program Powerful add-on helps developers create high-resolution documents in industry-standard format. Edinburgh, Scotland, November 1st 2007 Quartam Software (www.quartam.com) and Runtime Re

Re: [UPD] Script Editor Mod 002

2007-11-07 Thread runrev260805
Hi, thanks for that enhancement. One little thing about line numbering here with windows version of Rev. If i open a new script the cursor is betwenn "on mouseup" and "end mouseup". If i enter code, the first line i enter is line 1, instead of "on mouseup" I have to put the cursor before "on mous

Re: Idle handlers and Text files

2007-11-07 Thread Mark Schonewille
Yes, and I missed it. Sorry. Best regards, Mark Schonewille -- Economy-x-Talk Consulting and Software Engineering http://economy-x-talk.com http://www.salery.biz Quickly extract data from your HyperCard stacks with DIFfersifier. http://differsifier.economy-x-talk.com Op 7-nov-2007, om 8:

[UPD] Script Editor Mod 002

2007-11-07 Thread Shao Sean
Just a quick note to let those interested that a new version of the script editor modification has been released. - added script line numbering - fixed a menu flickering problem - clicking between handlers updates the handler list much quicker - cleaned up some of the code with the splitter Sc