Re: SQLite Issue

2005-12-27 Thread Dave Cragg
On 27 Dec 2005, at 04:52, Scott Kane wrote: I'm getting the result It rather than the value of the field (in the example below the field is called edName). -- COLLECT name AND email put name,email into tColumnItems repeat for each item I in tColumnItems --ask question New value for

Re: SQLite Issue

2005-12-27 Thread Jim Ault
On 12/26/05 8:52 PM, Scott Kane [EMAIL PROTECTED] wrote: -- COLLECT name AND email put name,email into tColumnItems repeat for each item I in tColumnItems --ask question New value for column: I put Field edName into i --if it is empty or the result is cancel then exit to

Automating Rev Apps in OS X

2005-12-27 Thread Dan Shafer
This may be common knowledge among OS X folks but since it was a new thought to me, I figured I'd share it anyway. If you want to launch a Rev standalone app (or, for that matter, Rev itself) at a specific date and time in OS X, you can do so simply by using iCal to define an alarm for that

Re: SQLite Issue

2005-12-27 Thread Jim Ault
On 12/26/05 8:52 PM, Scott Kane [EMAIL PROTECTED] wrote: put name,email into tColumnItems repeat for each item I in tColumnItems --ask question New value for column: I put Field edName into i --if it is empty or the result is cancel then exit to top put ' cleanSQL(it)

Re: I Was Wrong

2005-12-27 Thread Sarah Reichelt
Inadequate testing led to my earlier post about how to automate Rev apps in OS X. For reasons I don't yet fully understand, other apps will launch this way but Rev standalones don't, at least not predictably or reliably. I'm going to investigate the reason. Hi Dan, The iCal trick worked for

RE: SQLite Issue

2005-12-27 Thread Scott Kane
Hi Jim and all, It seems that 'put field edName into i' would make the value of that variable the same both times thru the loop, thus name would become the field value and email would become the field value as well. Agreed. I got so messed up with it all I threw the example together.

Re: SQLite Issue

2005-12-27 Thread Sarah Reichelt
Agreed. I got so messed up with it all I threw the example together. Really there should be no loop at all as it is not needed. What I'm really having trouble with is placing each edit field into the array. I know the problem is a lack of script knowledge and that's doubly frustrating

RE: SQLite Issue

2005-12-27 Thread Scott Kane
Hi Jim, Chipp and Dave... I worked it out thanks to your help. Works beautifully now! I'm back to where I was again with my code. Thank you all a heap!! :-) Scott ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this

RE: SQLite Issue

2005-12-27 Thread Scott Kane
Hi Sarah, What about: put edName into myArray[name] put edAddress into myArray[address] or put edName into myArray[1] put edAddress into myArray[2] Is this what you were trying to do? Exactly! And I got it working as well. :-) Again - this list and the people on it are awesome!

Re: REv Documentation locking up

2005-12-27 Thread Charles Hartman
BZ 2936. It's got no votes, but it's what keeps me from ever using the Topics part of the docs. Charles Hartman On Dec 26, 2005, at 8:15 PM, Kurt Kaufman wrote: I have a new problem, open docs, click on Topics then click in the TOC book marks -Containers etc. Rev locks up... any

RE: REv Documentation locking up

2005-12-27 Thread Scott Kane
BZ 2936. It's got no votes, but it's what keeps me from ever using the Topics part of the docs. I've been experiencing much the same thing. Also the doc's mysteriously die from time to time and I can't get them going again unless I reinstall Rev. How do you vote for BugZilla? Scott

Re: REv Documentation locking up

2005-12-27 Thread Charles Hartman
On Dec 27, 2005, at 7:52 AM, Scott Kane wrote: BZ 2936. It's got no votes, but it's what keeps me from ever using the Topics part of the docs. I've been experiencing much the same thing. Also the doc's mysteriously die from time to time and I can't get them going again unless I reinstall

Re: Ask Answer

2005-12-27 Thread Eric Chatonet
Hi Joe, Le 26 déc. 05 à 18:17, [EMAIL PROTECTED] a écrit : 1) How do I delete the rev logo from ask and answer dialog boxes? This question has been answered :-) 2) On ask dialog boxes how do I insert the cursor at the end of my default answer rather than have the default answer selected?

Re: Automating Rev Apps in OS X

2005-12-27 Thread MisterX
For all I know there's some equivalent way to do this using Outlook on Windows. I'll leave that to the Windows dudes and dudettes. Dan, Actually there's a variety of ways to do it. The most obvious would be the Automated Tasks in the control panels. Other ways are WinAT, AT, Soon.exe etc...

Current card

2005-12-27 Thread Robert Presender
Using Rev 2.5.1, OS 10.3.9 I have card A of stack A and card B of stack B on the desktop. Assume card A is the current card. Clicking on card B, it becomes the current card. When this occurs, I would like card B to trigger a script to do something. For example, beep 5. Since openCard and

Re: A supplement suite of office programs?

2005-12-27 Thread Dave LeYanna
Jonathan; This sounds like a great idea. Dan's idea of SourceForge and a roadmap along with some skinable ui guidelines and the common librarys sound like a must. Let me know if there is anything I can help with. I will dl the stack(s) and give you some feedback. Dave Lynch, Jonathan

RE: A supplement suite of office programs?

2005-12-27 Thread Lynch, Jonathan
I think brainstorming for good ideas is our first step - I will keep track of them for bringing up later. I don't know much about sourceForge, but I have looked into it a little bit, and it looks like a good system. I am sure I would have to make zillions of changes to Work mage/Task Mage to fit

Re: Current card

2005-12-27 Thread Eric Chatonet
Hi Bob, Just trap the resumeStack message in stack B :-) See also suspendStack in the docs. on resumeStack beep 5 end resumeStack Le 27 déc. 05 à 15:54, Robert Presender a écrit : Using Rev 2.5.1, OS 10.3.9 I have card A of stack A and card B of stack B on the desktop. Assume card A is

Re: Current card

2005-12-27 Thread Mark Smith
Also remember that the resumeStack message (like the various open, preopenand close messages) are sent to the current card of a stack, so you can have different resumeStack handlers on different cards. If you finish them with 'pass resumeStack', the message will get passed along to the

Rev XML tutorial?

2005-12-27 Thread Lynch, Jonathan
Can anyone recommend a decent site for explaining how to use XML with RunRev? Thanks, Jonathan ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Rev XML tutorial?

2005-12-27 Thread Eric Chatonet
Hi Jonathan, Have a look at Sarah's XMLdemo1.rev at http://www.troz.net/Rev/ tutorials.html Le 27 déc. 05 à 16:32, Lynch, Jonathan a écrit : Can anyone recommend a decent site for explaining how to use XML with RunRev? Best Regards from Paris, Eric Chatonet

RE: Rev XML tutorial?

2005-12-27 Thread Lynch, Jonathan
It's very nice - thanks. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Chatonet Sent: Tuesday, December 27, 2005 10:38 AM To: How to use Revolution Subject: Re: Rev XML tutorial? Hi Jonathan, Have a look at Sarah's XMLdemo1.rev at

Re: Automating Rev Apps in OS X

2005-12-27 Thread Andre Garzia
Dan, the way MacOS X and other Unixes schedule tasks is the way of cronjobs, cron is a nice tool that comes bundled with all *nix and MacOS X that allows you to launch apps and processess using all kinds of calendar tricks, repetition and whatever... there are lots of info on cron on the

Re: REv Documentation locking up

2005-12-27 Thread Ken Ray
On 12/27/05 7:06 AM, Charles Hartman [EMAIL PROTECTED] wrote: On Dec 27, 2005, at 7:52 AM, Scott Kane wrote: BZ 2936. It's got no votes, but it's what keeps me from ever using the Topics part of the docs. I've been experiencing much the same thing. Also the doc's mysteriously die from

Re: REv Documentation locking up

2005-12-27 Thread Charles Hartman
I never had any! (sniff) I'll write RunRev . . . Charles On Dec 27, 2005, at 11:53 AM, Ken Ray wrote: Hmm... Charles, each person is supposedly given 100 votes to spend on bugs. You can remove votes from bugs you've already voted on and give them to another bug, so long as you never

Re: Automating Rev Apps in OS X

2005-12-27 Thread Mark Smith
In fact, there is an excellent cron GUI by the name of Cronnix at: http://www.abstracture.de/projects-en/cronnix It's donationware, and very good. Mark On 27 Dec 2005, at 16:38, Andre Garzia wrote: Dan, the way MacOS X and other Unixes schedule tasks is the way of cronjobs, cron is a

Re: I Was Wrong

2005-12-27 Thread Dan Shafer
Do you tie that to an iCal alarm as well? On 12/27/05, Sarah Reichelt [EMAIL PROTECTED] wrote: The iCal trick worked for me, at least with the only Rev app I tested, but if in doubt, perhaps you could use an AppleScript. I have one that starts the RadioShark radio every morning for me --

There was an error...

2005-12-27 Thread Rob Cozens
Hi All, I have a stack that runs fine interpretively on both Win XP (Rev 2.6.1) Mac OSX (Rev 2.1.2). It also compiles and runs correctly on OSX. The stack is compressed decompressed with each transfer between platforms. Compiling on Windows gives me There was an error while saving the

Re: Automating Rev Apps in OS X

2005-12-27 Thread Dan Shafer
Yeah, I know about cron. I was trying to find a way that would be accessible to Rev developers who don't want to wander in the muck and mire of *nix. That would include yours truly, who wanders in there from time to time and always feels somehow inadequate. I'm just not a command-line kinda guy.

Re: Rights to write in Programs folder

2005-12-27 Thread David Glasgow
Thanks to all who replied on this thread. Food for thought, and some good practical lines to follow. It seems like where things 'really' are on the hard drive is becoming less and less important for users, but more and more important for OSs. Best Wishes, David Glasgow

Re: I Was Wrong

2005-12-27 Thread Timothy Miller
As you were. Inadequate testing led to my earlier post about how to automate Rev apps in OS X. For reasons I don't yet fully understand, other apps will launch this way but Rev standalones don't, at least not predictably or reliably. I'm going to investigate the reason. I was wrong is the

Re: There was an error...

2005-12-27 Thread Gordon Webster
Hi Rob I believe that in keeping with the current geopolitical climate, from version 2.6 onwards rev has implemented error logging that conforms to Department of Homeland Security guidelines for public announcements. The message you received tells you that based upon the best

Re: REv Documentation locking up

2005-12-27 Thread Sivakatirswami
Kurt... OK, I stand corrected. The behavior is as you describe... it is not locked up in the sense of crashed...it does, as you say, just take 30 seconds... but this makes the docs- topics virtually unusable. On Dec 26, 2005, at 3:15 PM, Kurt Kaufman wrote: I have a new problem, open

Re: linking text

2005-12-27 Thread Sivakatirswami
Here is a little script I have been using forever (10 years or more?) to link a todo list field to another substack. Button Make Link on mouseup makelink end mouseup # be sure to set the traversalOn of this button to false this will allow you to select text in a field, and then clicking

See the topic About arrays and matrixes.

2005-12-27 Thread Sivakatirswami
OK, I'm trying to do my homework on arrays... the docs are so rich... an ocean of info there, but having problems with the topics area (is this the old encyclopedia?) It's slow to the point of being un useable. I see things also like: For more information about array variables, see the

Re: Stacks not being removed from memory

2005-12-27 Thread Mark Wieder
Sivakatirswami- Monday, December 26, 2005, 1:18:51 PM, you wrote: I still continue to get stack already memory do you want to purge over and over again, but I have set all my stacks (and have *always* set all my stacks) destroy both stack and window on close... I ran into this problem with

Re: REv Documentation locking up

2005-12-27 Thread Mark Wieder
Charles- As Ken said: The only thing to keep in mind is that you need to set up your account at Bugzilla (using a web browser) before you can use RevZilla. That goes for voting, too, obviously. http://support.runrev.com/bugdatabase/query.cgi?product=RevolutionGoAheadAndLogIn=1 -- -Mark

Re: There was an error...

2005-12-27 Thread Mark Wieder
Rob- Tuesday, December 27, 2005, 9:20:33 AM, you wrote: Ideas or suggestions, anyone? Are any of the substacks password-protected? Have you tried deselecting the automatic search for libraries? -- -Mark Wieder [EMAIL PROTECTED] ___ use-revolution

Re: I Was Wrong

2005-12-27 Thread Sarah Reichelt
Yes, I compile the AppleScript into an app and select that in te iCal Open file.. dialog. For the radio, I use it to set the volume too, so that I'll hear it even if I muted or turned down the volume the day before. Sarah On 12/28/05, Dan Shafer [EMAIL PROTECTED] wrote: Do you tie that to an

Re: I Was Wrong

2005-12-27 Thread Dom
Sarah Reichelt [EMAIL PROTECTED] wrote: Yes, I compile the AppleScript into an app and select that in te iCal Open file.. dialog. How about simply making a cron to do this? For instance, I have a cron which runs avery hour to open... an AppleScript app ;-) which... tells MacSOUP to fetch the

Comm Port Send and Receive

2005-12-27 Thread Camm29
Hi , Still having with problems Comm Port sending and receiving. Before i can write to the some Hardware i must wait for the character i have tried write Data to file COM1: wait 250 milliseconds read from file COM1: until X X do something with the received Data X then write Data to file

Image Masks - Completely lost

2005-12-27 Thread Bob Warren
I am trying to apply a mask to an image without any success whatsoever in getting it to work correctly. Would someone be kind enough to give me an example of how it might be done? My experiments with imagedata and alphadata have so far failed. Let's outline a simple spec: 1. I have a normal

Re: Image Masks - Completely lost

2005-12-27 Thread Scott Rossi
Recently, Bob Warren wrote: I am trying to apply a mask to an image without any success whatsoever in getting it to work correctly. Would someone be kind enough to give me an example of how it might be done? My experiments with imagedata and alphadata have so far failed. ... Any hints

Re: Image Masks - Completely lost

2005-12-27 Thread Jim Ault
On 12/27/05 2:24 PM, Bob Warren [EMAIL PROTECTED] wrote: The RR HELP hasn't helped me very much so far, I'm afraid. My experiments with imagedata and alphadata have so far failed. Bob, maybe the following will help you get a handle on this image stuff. a 10x10 image has 100 alphaData bytes a

Re: Image Masks - Completely lost

2005-12-27 Thread Chipp Walters
Yeah, what Scott said. You can find a host of nifty compositing and imaging routines at: http://www.altuit.com/webs/altuit2/RunRev/Downloads.htm best, Chipp Bob Warren wrote: Also, can anyone recommend useful webpages elucidating this kind of thing? The RR HELP hasn't helped me very much

Re: There was an error...

2005-12-27 Thread Chipp Walters
Hi Rob, Happy Holidays! I've had this happen before, and there have been many suggestions. You might check the archives. Also, 1) Try building in a completely new and empty folder; 2) Manually select inclusions 3) If it still doesn't work, consider using the splashscreen approach (It's all

Re: REv Documentation locking up

2005-12-27 Thread Charles Hartman
Hm . . . I have a login account, and RevZilla shows that I've expended one (1) vote. But it also says I don't have any more votes to spend. ? Charles On Dec 27, 2005, at 11:53 AM, Ken Ray wrote: On 12/27/05 7:06 AM, Charles Hartman [EMAIL PROTECTED] wrote: On Dec 27, 2005, at 7:52

mySQL question

2005-12-27 Thread Ton Kuypers
Hi, I've seem to have a small problem using mySQL from within Revolution... I'm trying to import a lot of data into mySQL tables. I'm reading an export file and build a query using a repeat loop, which basically creates a command like: insert into Clients

Re: Get from File

2005-12-27 Thread Michael D.
Jim, Thank you the help. - Original Message - From: Jim Ault [EMAIL PROTECTED] To: How to use Revolution use-revolution@lists.runrev.com Sent: Tuesday, December 27, 2005 1:52 AM Subject: Re: Get from File This works for me... I used a quick stack with fld 1 and fld 2 and 1 button

Re: Current Card

2005-12-27 Thread Robert Presender
Thanks to Eric Chatonet and Mark Smith for your input. Your help is appreciated. Regards ... Bob On Dec 27, 2005, Eric and Mark wrote: Hi Bob, Just trap the resumeStack message in stack B :-) See also suspendStack in the docs. on resumeStack beep 5 end resumeStack Best Regards from

Re: REv Documentation locking up

2005-12-27 Thread Ken Ray
On 12/27/05 6:22 PM, Charles Hartman [EMAIL PROTECTED] wrote: Hm . . . I have a login account, and RevZilla shows that I've expended one (1) vote. But it also says I don't have any more votes to spend. ? Well, this might be a RevZilla bug... if you log in through a browser, and then go to any

Re: Image Masks - Completely lost

2005-12-27 Thread Thomas McGrath III
JIm, That was an excellent review of alpha/image/mask data bytes. Maybe you can explain the difference between the alpha and mask data type. I think more people need to know this stuff. Thanks, Tom On Dec 27, 2005, at 6:50 PM, Jim Ault wrote: On 12/27/05 2:24 PM, Bob Warren [EMAIL

Re: Image Masks - Completely lost

2005-12-27 Thread Bob Warren
Thanks boys! I'm sure your great explanations will also be of help to other completely lost souls! I'll let you know if I have any further trouble. Regards, Bob ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url

Re: Image Masks - Completely lost

2005-12-27 Thread Ken Ray
On 12/27/05 9:42 PM, Thomas McGrath III [EMAIL PROTECTED] wrote: JIm, That was an excellent review of alpha/image/mask data bytes. Maybe you can explain the difference between the alpha and mask data type. I think more people need to know this stuff. There's good coverage of this here:

Another little SQL issue

2005-12-27 Thread Scott Kane
Hi again! I've got another dumb Rev newbie issue with databases. I'm using SQLite still. I thank those who helped yesterday. I really appreciated it. Here's the issue. I can populate a Table Field with the array resulting from a Select query with no problems. What I don't seem to be able

Re: I Was Wrong

2005-12-27 Thread Sarah Reichelt
Yes, I compile the AppleScript into an app and select that in te iCal Open file.. dialog. How about simply making a cron to do this? For instance, I have a cron which runs avery hour to open... an AppleScript app ;-) which... tells MacSOUP to fetch the mail (I prefer to read the mailing

Japanese dates problem

2005-12-27 Thread Sarah Reichelt
Hi All, I have received some error reports from Japanese users of my Pic-a-POD program and they all get an error at the same point. Here is the script snippet: convert tNow from long system date to seconds subtract 86400 from tNow with the error report showing: Type:

Re: mySQL question

2005-12-27 Thread Trevor DeVore
On Dec 27, 2005, at 4:54 PM, Ton Kuypers wrote: I've seem to have a small problem using mySQL from within Revolution... I'm trying to import a lot of data into mySQL tables. I'm reading an export file and build a query using a repeat loop, which basically creates a command like: insert

Re: I Was Wrong

2005-12-27 Thread sims
At 3:15 PM +1000 12/28/05, Sarah Reichelt wrote: I have a Mac only Rev app that really needs to be set to run at a specified time every day. Just curious...is there any reason why you cannot check the time with the rev app and then have it perform whatever you want when that time occurs?

Re: I Was Wrong

2005-12-27 Thread Sarah Reichelt
At 3:15 PM +1000 12/28/05, Sarah Reichelt wrote: I have a Mac only Rev app that really needs to be set to run at a specified time every day. Just curious...is there any reason why you cannot check the time with the rev app and then have it perform whatever you want when that time occurs?

Re: Another little SQL issue

2005-12-27 Thread Trevor DeVore
On Dec 27, 2005, at 8:34 PM, Scott Kane wrote: What I'm trying to do is: put SELECT * FROM users into tSQL -- EXECUTE SQL put revdb_querylist(,,gConID,tSQL) into tList handleRevDBerror tList if the result is not empty then answer warning the result exit mouseUp end if put

RE: Another little SQL issue

2005-12-27 Thread Scott Kane
Hi Trevor, I'm not quite sure how your edit boxes are being used. Are you trying to just put one of the records from the tList result into the edit boxes? Or are you trying to edit all of the names, emails, etc. at once? If you are just trying to edit one result at a time then I