Re: Report Writer Needed

2007-01-05 Thread Bill Marriott
Todd, I am looking for help building a report writer for a back end database. I can use either ODBC or XML to get the data, and I need printed sub summary reports out of it. I have not done any sub summary stuff with rev. I the basic version of quartum reports but I haven't even

Conversion?

2007-01-05 Thread LunchnMeets
Hi Everyone, Is there a way to determine if a stack was originally a HyperCard stack and converted to Revolution versus originally created within Revolution? Joe Orlando ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this

revDataFromQuery, Rev cgi mySQL

2007-01-05 Thread jbv
Hi list, For some reasons too long to explain here, I need to dump large amounts of data from a mySQL table to a txt file (for instance 15 columns for 35000 records that represents about 1.5 Mb). I'm using Rev cgi 2.5 and mySQL 3.23. I use revDataFromQuery which happens to be VERY slow (about 20

Galaxy on U3 drive

2007-01-05 Thread robmann
I am using rev on a U3 drive how do Install Galaxy on the U3 drive? Thanks Rob ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: MacWorld

2007-01-05 Thread Heather Nagey
Dear Ray, Yes, Guy Jones is holding a Revolution dinner in conjunction with MacWorld SF, contact [EMAIL PROTECTED] for details. Also, David Simpson of .comsolutions is representing Revolution at this booth, and will have some special offers to give out. It's well worth reading the

Re: Altbrowser html page communication with application?

2007-01-05 Thread Heather Nagey
Good advice, except that such emails should be sent to [EMAIL PROTECTED], not to my personal inbox where they are likely to drown... Regards, Heather On 4 Jan 2007, at 18:00, [EMAIL PROTECTED] wrote: No, but I am sure there may be. Perhaps Chris knows. Since we don't sell altBrowser

Item Delimiters?????

2007-01-05 Thread Dave
Hi All, What are the allowable Item Delimiters? How can I have a list that uses all printable characters? is there any way of setting a Delimiter as a non-printable character? All the Best Dave ___ use-revolution mailing list

Re: Item Delimiters?????

2007-01-05 Thread Mark Schonewille
Hi Dave, You can use any character with ASCII code 1 to 255 as an item delimiter. A list of all characters: repeat with x = 1 to 255 put x numtochar(x) cr after myList end repeat put myList You will easily see which characters are printable. Note that 9 is tab, 10 linefeed, 13 return

Re: revDataFromQuery, Rev cgi mySQL

2007-01-05 Thread Viktoras Didziulis
this will log all the subsequent queries into a local file C:/outfile.txt: tee C:/outfile.txt then do: SELECT * FROM yourtable or alternatively look for mysqldump or mysqlhotcopy in MySQL docummentation. Best wishes Viktoras ---Original Message--- From: jbv Date: 1/5/2007

Re: Tab Key vs Field

2007-01-05 Thread Robert Presender
Hi Chipp, Thanks for your reply. I had checked the tabstops. I found the solution and feel kind of stupid. Guess my age is catching up (87 next March). Anyway, For some reason or other I had placed in my library scripts: on tabKey - select empty. It did just that!!! Deleted that

Re: Item Delimiters?????

2007-01-05 Thread Dave
Hi, Great! Thanks a lot! All the Best Dave On 5 Jan 2007, at 13:44, Mark Schonewille wrote: Hi Dave, You can use any character with ASCII code 1 to 255 as an item delimiter. A list of all characters: repeat with x = 1 to 255 put x numtochar(x) cr after myList end repeat put myList

Rev MYSQL on U3 Drive

2007-01-05 Thread robmann
I have rev and mysql(xampplite) on a u3 drive along with a standalone of my application the application runs fine connects to the database no problem I then open up rev and try to connect to the database using the same stack and it will not connect, so I open up a web browser type in

Re: Item Delimiters?????

2007-01-05 Thread Jim Ault
On 1/5/07 5:44 AM, Mark Schonewille [EMAIL PROTECTED] wrote: Hi Dave, You can use any character with ASCII code 1 to 255 as an item delimiter. A list of all characters: repeat with x = 1 to 255 put x numtochar(x) cr after myList end repeat put myList You will easily see which

mysql tables

2007-01-05 Thread robmann
is there a way to get a list of all the tables in a revOpenDatabase command I was thinking of using revQueryDatabase(databaseID,SQLQuery) but not sure what the SQLQuery should be to just get the table names Thanks Rob ___ use-revolution mailing

Re: mysql tables

2007-01-05 Thread robmann
I got it put revDataFromQuery(comma,return,dbresult, SHOW TABLES) into tdescribe put tdescribe into fld fieldtables Quoting [EMAIL PROTECTED]: is there a way to get a list of all the tables in a revOpenDatabase command I was thinking of using revQueryDatabase(databaseID,SQLQuery) but

Popdown menu question...

2007-01-05 Thread David Bovill
Thought I would ask as I may be missing something... is there any general way to know what the user clciked on to activate a pulldown menu? In a field: on mouseDown popup button Contextual Menu pass mouseDown end mouseDown In the menu button Contextual Menu: on menuPick menuPath menu_Send

Re: Report Writer Needed

2007-01-05 Thread Todd Geist
On Jan 5, 2007, at 2:23 AM, Bill Marriott wrote: Todd, I am looking for help building a report writer for a back end database. I can use either ODBC or XML to get the data, and I need printed sub summary reports out of it. I have not done any sub summary stuff with rev. I the basic

Re: Conversion?

2007-01-05 Thread kee nethery
On Jan 5, 2007, at 4:27 AM, [EMAIL PROTECTED] wrote: Hi Everyone, Is there a way to determine if a stack was originally a HyperCard stack and converted to Revolution versus originally created within Revolution? HCStack property Index Definition: Reports whether a stack

Re: Galaxy on U3 drive

2007-01-05 Thread Jerry Daniels
Rob, I have never tried that myself. Maybe someone else has had experience in this area? Best, Jerry Daniels Makers of Galaxy 1.5 http://www.daniels-mara.com/new_in_galaxy_1_5.htm On Jan 5, 2007, at 6:56 AM, [EMAIL PROTECTED] wrote: I am using rev on a U3 drive how do Install Galaxy

Adding a Substack???

2007-01-05 Thread Dave
Hi, I have two .rev file, both contain one mainStack: StackA.Rev StackA StackB.Rev StackB How can I move StackB so it's a substack of StackA? Can't seem to figure out how to do it. All the Best Dave ___ use-revolution mailing list

Re: Report Writer Needed

2007-01-05 Thread Karen Hughes
On 5/1/07 18:00, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks for the feedback... Then perhaps I should ask for somebody with experience using Quartum Reports. Anybody interested? Todd Hi Todd, I've used Quartam Reports (Express - I can't comment on the Professional features).

Re: Adding a Substack???

2007-01-05 Thread Jim Ault
On 1/5/07 10:26 AM, Dave [EMAIL PROTECTED] wrote: Hi, I have two .rev file, both contain one mainStack: StackA.Rev StackA StackB.Rev StackB How can I move StackB so it's a substack of StackA? Can't seem to figure out how to do it. Open both stacks Use the inspector for StackB,

Re: MacWorld

2007-01-05 Thread Mark Wieder
Lynn- Thursday, January 4, 2007, 3:49:24 PM, you wrote: Guy and Mark W are organizing a dinner get together. Assuming that I'm the Mark W in question, I have formally abdicated all responsibility for this and am now just in the same boat as everyone else, waiting for Guy to decide on when,

Re: Server-side type-ahead data for Rev standalone

2007-01-05 Thread Stephen Barncard
It's not clear whether you're developing a thin client or a web app. The best features of Rev are clearly shown with the thin client of which I'd suggest for this. I don't think mySQL used locally would be too slow and the network would be a bigger slowdown, but the kind of response you

Re: Server-side type-ahead data for Rev standalone

2007-01-05 Thread RGould8
Stephen, Thanks for all your great advice! This would be a Revolution standalone app (thin client) that pulls data from a system on the internet. Now when you say that the response is best accomplished with the data in RAM - - - do you suggest that I have the host server

Re: Report Writer Needed

2007-01-05 Thread Todd Geist
Thanks for your feedback Karen Todd On Jan 5, 2007, at 10:36 AM, Karen Hughes wrote: Hi Todd, I've used Quartam Reports (Express - I can't comment on the Professional features). -- Todd Geist __ g e i s t i n t e r a c t i v e

Re: Server-side type-ahead data for Rev standalone

2007-01-05 Thread Stephen Barncard
the closer you are to the data, the faster it is to obtain. SQL is a very simple language - and the text based commands are very versatile. For instance, to get a line delimited list of all the data in the field Device_Name in a database Devices_Main, one would use this: SELECT `Device_Name`

sorting by mixed fields

2007-01-05 Thread Timothy Miller
Thanks Jacque and Jim, One tiny little final detail... As far as I know, I can turn on Behave like a background for this group, so I don't have to place it again every time I make a new card. But I'm not certain. I'm wondering about possible problems if I have two or more behave like a

Variable holding a chunk

2007-01-05 Thread Jim Carwardine
Hi List... I always seem to draw a blank when I try to debug this structure. It doesn't matter how many times I do it I always seem to run into this wall. I have a variable, myVar, that holds a chunk, [line 2 of field myField of group myGroup of card id 1002 of stack myStack]. When I say [put

File lists - function or command?

2007-01-05 Thread Richard Gaskin
Oliver recently published a useful function for obtaining a list of files, as noted in the latest Rev newsletter: http://www.runrev.com/newsletter/january/issue17/newsletter3.php It seems a good function, very similar to a function I've been using without issue for some years. But I recall

Re: Variable holding a chunk

2007-01-05 Thread Scott Rossi
Recently, Jim Carwardine wrote: I have a variable, myVar, that holds a chunk, [line 2 of field myField of group myGroup of card id 1002 of stack myStack]. When I say [put myVar into field xxx] I get the chunk expression not the data held by the field represented by the chunk expression.

Re: Variable holding a chunk

2007-01-05 Thread Jim Ault
On 1/5/07 1:06 PM, Jim Carwardine [EMAIL PROTECTED] wrote: Hi List... I always seem to draw a blank when I try to debug this structure. It doesn't matter how many times I do it I always seem to run into this wall. I have a variable, myVar, that holds a chunk, [line 2 of field myField of

Re: Variable holding a chunk

2007-01-05 Thread Bill Marriott
you have a chunk *expression* in myvar :) put the value of myVar will work. As for the help file, what version of Rev do you have? Jim Carwardine [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi List... I always seem to draw a blank when I try to debug this structure. It

libURL and Resumable Downloads

2007-01-05 Thread Derek Bump
Does libURL support resumable downloads via HTTP yet? I was looking at it a long time ago and it seems that if you just pass the start-byte number within the headers that it can be done (provided the server supports it). Though, it was not supported by libURL at the time. Derek Bump

cProps and umlauts Mac - Win

2007-01-05 Thread Malte Brill
Hi all, came across something weird. Stored different text chunks in a cProp on a Mac. I set the label of a button to that chunk. If the stack is transfered from a Mac to a Win Box, umlauts are replaced with some strange characters. Has anyone else seen this? Rev. 2.7.4 Os X.4.8 Intel

Re: cProps and umlauts Mac - Win

2007-01-05 Thread Phil Davis
Hi Malte, Could this be corrected with a MacToISO call before the prop value reaches the button label? Don't know - just a thought - Phil Davis Malte Brill wrote: Hi all, came across something weird. Stored different text chunks in a cProp on a Mac. I set the label of a button to that

Re: cProps and umlauts Mac - Win

2007-01-05 Thread Klaus Major
Hi Phil and Malte, Hi Malte, Could this be corrected with a MacToISO call before the prop value reaches the button label? Yes. Text in CPs is not being converted from platform to platform like fields, so you have to take care of a macToiso function by yourself. If it would, we could

Re: sorting by mixed fields

2007-01-05 Thread Klaus Major
Hi Timothy, Thanks Jacque and Jim, One tiny little final detail... As far as I know, I can turn on Behave like a background for this group, so I don't have to place it again every time I make a new card. But I'm not certain. I'm wondering about possible problems if I have two or more

pre-MacWorld info

2007-01-05 Thread Mark Wieder
All- Anyone who's still thinking about going to MacWorld Expo but hasn't yet registered might want to print out Other World Computing's free Expo pass: http://eshop.macsales.com/Macworld/ And the list of MacWorld-related events and parties is, as usual, posted on Ilene's machine at:

RE: MacWorld

2007-01-05 Thread Lynn Fredricks
Hi Mark, Guy and Mark W are organizing a dinner get together. Assuming that I'm the Mark W in question, I have formally abdicated all responsibility for this and am now just in the same boat as everyone else, waiting for Guy to decide on when, where, and what. Hopefully he'll come up

Re: Variable holding a chunk

2007-01-05 Thread Jim Carwardine
Hi Bill... I have 2.7.4 on MacIntel... Jim on 1/5/07 6:03 PM, Bill Marriott wrote: you have a chunk *expression* in myvar :) put the value of myVar will work. As for the help file, what version of Rev do you have? Jim Carwardine [EMAIL PROTECTED] wrote in message news:[EMAIL

overloaded stack script

2007-01-05 Thread kevin
Hi All, I am running Rev 2.7.4 on the Mac and have a stack script containing ~25,000 lines of code. Its hard to edit because Rev runs so slowly with so many lines in a script and I'd love to split it up but most of the code are functions, not handlers, and furthermore, the script refer to