Re: [OT] Anyone hear of TapLynx?

2010-08-09 Thread Chipp Walters
Ack. Looks like it's only good for iPhone and not iPad-- at least I can't find any mention of iPads. Bummer. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pref

Re: [OT] Anyone hear of TapLynx?

2010-08-09 Thread Chipp Walters
Just in case anyone is interested-- here's a video explaining some of it (done last year. I suspect there's more this year). It's amazing to see someone build a full updatable app in only a few minutes and no programming: http://broadcast.oreilly.com/2009/10/making-an-oreilly-rss-iphone-a.html

[OT] Anyone hear of TapLynx?

2010-08-09 Thread Chipp Walters
http://www.taplynx.com/features/ Just wondering if anyone has seen this or heard of it? -- Chipp Walters CEO, Shafer Walters Group, Inc. ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this

Re: Rev/Linux update - for Richmond

2010-08-09 Thread Richard Gaskin
Richmond wrote: On 06/08/2010 15:23, Richard Gaskin wrote: I got another update this morning from the team on the progress of the Rev engine for Linux, and this one's for Richmond: With the screenshot Mark Waddingham noted: To be fair, the vis

Re: Harry Potter's magic button - a solution to another tricky group bug

2010-08-09 Thread Richard Gaskin
Wilhelm Sanke wrote: On August 7 you wrote: Yeah, the boundingRect property been a godsend on some projects, and I was quite pleased when Raney added it. Makes short work of things that can get quite complicated without it. Could you possibly provide us - the revolution users - with more de

Re: Copying binary files over a LAN using Rev

2010-08-09 Thread Richard Gaskin
Alejandro Tejada wrote: Looks like it should be completely necessary that i start learning about sockets communications and TCP IP. TCP's fun to play with and useful for so many things, but in your case since you only need to copy over a LAN I gotta ask: Any chance you could just use file s

Re: Making clickable text links in Rev

2010-08-09 Thread tech1
Judy, I did go through your excellent tutorial, but, as you said, it didn't fit this particular instance. Monte and Wilhem, thank you. I will check out your suggestions. Best regards, Sandy ___ use-revolution mailing list use-revolution@lists.runrev

Re: [ANNOYANCE] Custom protocols that are not registered do not trigger browserBeforeNavigate correctly on windows.

2010-08-09 Thread Terry Judd
Thanks Andre, that sounds very promising. I'll give it a whirl. Terry... On 9/08/10 10:55 PM, "Andre Garzia" wrote: > Terry, > > I believe that this can be "fixed" by using client side javascript only. By > fixed I mean "restore that behaviour". If you specify an action that is a > javascript

Input methods on Mac interfering with Unicode in RunRev.

2010-08-09 Thread Richmond
I had a chat with Sivakatirswami last night [Wow; what a sympathetic, easy-going sort of chap . . . would that we all could be like that] AND . . . and this is where things get 'ugly' . . . So, my Devawriter (both the Free and the Demo of the Pro versions) leverage a non-standard Unicode Sa

Re: Creating a folder using get specialFolderPath

2010-08-09 Thread Mark Schonewille
Hi, It is not entirely clear to me what you want. Why exactly did you choose to glue specialFolderPath("home") and specialFolderPath("asup") together? Have you actually checked what the two return? Also, you might need to check that folders actually exist. If they don't exist, create them. se

Re: Rev and Microsoft COM methods

2010-08-09 Thread Glen Bojsza
Gentlemen, thanks for the feedback... it looks like a good start. regards, Glen On Sun, Aug 8, 2010 at 7:16 PM, Thomas McGrath III wrote: > Glen, > > The as VBScript will work very well with COM methods. If you find my LibITS > stack on Rev that is how I made the Windows side. > > > Tom McGrat

Re: Making clickable text links in Rev

2010-08-09 Thread Wilhelm Sanke
On Sun Aug 8, 2010, tech1 at troutfoot.com tech1 at troutfoot.com wrote: Hi folks, I can’t find this in the docs. Let’s say there’s a scrolling field with a few thousand words. Is there a way to make some words into clickable links, as in html web pages, without using their position? Becaus

Re: How to set a empty registry setting on windows?

2010-08-09 Thread Bob Sneidar
Point taken. on readerObjection replace "bug" with "annoying specification by Microsoft" in theBodyText answer "Sorry about that" with "No Problemo!" end readerObjection Bob On Aug 9, 2010, at 9:13 AM, Andre Garzia wrote: > Bob, > > Let us be truthful here, what I am experiencing is not

Re: Creating a folder using get specialFolderPath

2010-08-09 Thread Mark Wieder
charles61- Monday, August 9, 2010, 9:08:08 AM, you wrote: > I have the following handler that creates a text file (list) on the user's > application support folder on OS X: > if the platform = "MacOS" then > get specialFolderPath("home") & specialFolderPath("asup") &"/" & > "list" >

Re: How to set a empty registry setting on windows?

2010-08-09 Thread Andre Garzia
Bob, Let us be truthful here, what I am experiencing is not a microsoft bug per se. It is an annoying specification by microsoft. We all agree that empty keys are not the way to go but they are valid. The problem was setting the key to empty which I had a suggestion from RunRev support. When I arr

Creating a folder using get specialFolderPath

2010-08-09 Thread charles61
I have the following handler that creates a text file (list) on the user's application support folder on OS X: if the platform = "MacOS" then get specialFolderPath("home") & specialFolderPath("asup") &"/" & "list" put it into tfilePath end if I tried the following to create a folde

Re: How to set a empty registry setting on windows?

2010-08-09 Thread Bob Sneidar
I have been saying for years that I don't think Microsoft uses their own product in development. I am convinced they use a Unix mainframe and workstations. If they did use their own product, all the thousands of little bugs that irritate the heck out of you and I every day would be fixed forthr

Re: Classic CGI on Win

2010-08-09 Thread Mark Wieder
Malte- Monday, August 9, 2010, 4:19:11 AM, you wrote: > Is this possible? If so, which components do I need to install where? Server > can run Apache. Use Apache. I did this once (and once only) using Windows' own IIS server technology. I don't recommend this and I won't do it again. Just use A

Re: Classic CGI on Win

2010-08-09 Thread Andre Garzia
I tried the standalone approach under linux many years ago and while the -ui setting would not load the graphic user interface it would still require the libs to be present which would not work for my servers. Maybe things changed, we should try it again. :D On Mon, Aug 9, 2010 at 11:23 AM, Peter

Re: Classic CGI on Win

2010-08-09 Thread Peter W A Wood
Andre I must admit I only tried a simple "hello world" test on Mac OS X and then not as a CGI but a simple command line executable. Regards Peter On 9 Aug 2010, at 21:44, Andre Garzia wrote: > Peter, > > The standalone trick will not work on some circunstances. If you don't > have X11 instal

Re: Classic CGI on Win

2010-08-09 Thread Andre Garzia
Peter, The standalone trick will not work on some circunstances. If you don't have X11 installed on the linux machine (Common for servers), the standalone will not load due to missing libraries. :-/ PS: This was the case long time ago, need to double check now if it still holds. Andre On Mon, A

Re: Classic CGI on Win

2010-08-09 Thread Peter W A Wood
Malte Thanks to RRobert from Hamburg, if you can do all you want in a standalone, you can do it as a CGI. It is easy to forget that a CGI is just an ordinary program with specific output. His detailed explanation is here - http://forums.runrev.com/phpBB2/viewtopic.php?f=8&t=5160&p=24096&hilit=R

Moving forward

2010-08-09 Thread Jerry Daniels
The following quotes has helped me through the ups and downs of business and life over the years. Thought I'd share it. "If you are kind, people may accuse you of selfish, ulterior motives; be kind anyway. If you are successful, you will win some false friends and some true enemies; succeed any

Re: Classic CGI on Win

2010-08-09 Thread Andre Garzia
Malte, I think you're in for a wild ride here my friend. I never used CGI on windows machines but if you can run apache then it should be easier than trying this kind of stunt with IIS. Below I will reproduce the steps needed. I haven't tried them I am just converting the common steps for other l

Re: [ANNOYANCE] Custom protocols that are not registered do not trigger browserBeforeNavigate correctly on windows.

2010-08-09 Thread Andre Garzia
Terry, I believe that this can be "fixed" by using client side javascript only. By fixed I mean "restore that behaviour". If you specify an action that is a javascript function and in that function you assemble your parameters in a url and set the window.location of the running page, it should tri

Re: Classic CGI on Win

2010-08-09 Thread Pierre Sahores
Hum ! ... Le 9 août 2010 à 13:55, Malte Pfaff-Brill a écrit : > Merci beaucoup Pierre, > > the crux is I have no control over the OS the server is running. :-/ > > Cheers, > Malte > ___ > use-revolution mailing list > use-revolution@lists.runrev.com >

Re: Classic CGI on Win

2010-08-09 Thread Malte Pfaff-Brill
Merci beaucoup Pierre, the crux is I have no control over the OS the server is running. :-/ Cheers, Malte ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription prefe

Re: Classic CGI on Win

2010-08-09 Thread Pierre Sahores
Malte, Richard, Andre and others may help you more directly than me ... My last experience about using a server side solution on the win platform (1998, win NT 4 server, Apache 1.3, PHP + MC + PG) did'nt never work very well. Why ? The win NT RAM management was so sad in this config that the se

Classic CGI on Win

2010-08-09 Thread Malte Pfaff-Brill
Hi folks, as we do not yet have a win version of revServer, I need to set up a CGI on Win Server 2003 (if possible) Requirements are: Needs to work with local postGreSQL DB Needs to work with revXML Is this possible? If so, which components do I need to install where? Server can run Apache.

Re: DataGrid column update and button center

2010-08-09 Thread Scott Morrow
Thank you, Mr. Slug. Your helpful observations about my beginning efforts with the data grid are much appreciated. -Scott On Aug 9, 2010, at 3:38 AM, zryip theSlug wrote: > On Fri, Aug 6, 2010 at 12:02 PM, Scott Morrow > wrote: > > Hi Scott, > >> Two Data Grid questions: >> >> 1) I'm upd

Re: DataGrid column update and button center

2010-08-09 Thread zryip theSlug
On Fri, Aug 6, 2010 at 12:02 PM, Scott Morrow wrote: Hi Scott, > Two Data Grid questions: > > 1)     I'm updating a single column of a Data Grid table.  I can't discover > any other way than to loop through each index.  Would this be the accepted > method? > > --- the code I'm using --

OT: Free eBook from Charles Petzold about Windows Phone7 Programming

2010-08-09 Thread Matthias Rebbe
Hi, just want to let you know, that there is a free ebook from Charles Petzold about "Programming Windows Phone 7" for download at http://www.charlespetzold.com/phone/index.html The book is a special draft preview and contains 11 chapter with 265 pages. The final book is available in october a