Re: reporting engine

2007-08-12 Thread william humphrey
Hi Mike
Have you tried Quartam reports?

Bill
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: including images from standard library...

2007-08-12 Thread Sarah Reichelt
> I use Revolution 2.6.1 to build executables (for Windows, MacOSX and
> Linux) that use images from Revolution's own standard image library. In
> a script images are referred to using their numeric id. Everything works
> within the IDE, but these images do not appear in the compiled
> application. How can I enforce the images from the standard library be
> imported during compilation of a stack ? Or is manual placement of these
> standard images on a stack the only way to do this?

There used to be an option in the standalone builder to include these
standard images, but that disappeared a while ago. It always seemed a
bit extravagant to include every image when you on;y needed one or two
anyway. My preference is to place the images in my stack, give them a
high ID number so they cannot conflict with any standard icons, then
hide them. After that your buttons can use them as icons whenever
needed.

Some people like to make a 2 card stack with all the images on the 2nd
card, or to make a sub-stack that contains all their images. If you do
either of these, then you don't have to hide them. I guess it just
depends how many images you need to deal with.

Cheers,
Sarah
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Resolved--> Re: Bug prevents Rev from building a standalone PC application

2007-08-12 Thread Phil Davis
Along the same line - I discovered the other day that the Standalone Builder 
(2.8.1 gm3) will not (or would not in my case) build a standalone with a Rev 
file whose extension is not ".rev".


Phil Davis


J. Landman Gay wrote:

Arthur Rann wrote:


Of course, I tried removing this, that, and the other, until I was
left with a single card, with no scripts, no custom properties, nada.
At that point, it was exactly the same as a blank, empty project.
Except the name.

The name was set to 'test.rev', which is the correct name of the
stack. On a whim, I changed it to get rid of the '.rev' at the end, in
the stack properties. I saved it, and it 'stuck'. I built, and wow--it
builds!


Okay, that makes some sense to me. You can refer to a stack in a script 
by either its short name (the one in stack properties) or by its file 
path. Apparently the engine assumes that a stack name with an extension 
is a file path on disk. I can see how this might mess up the standalone 
builder, which probably always assumes that the short name is never a 
disk-based reference.


Stack names in the property inspector should never include an extension, 
I suspect.



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: drawer question

2007-08-12 Thread Richard Gaskin
With all the talk about drawers, it may be helpful to remember that 
disclosure triangles are still a recommended UI element in Apple's HIG:




And unlike drawers, disclosure triangles are a common element on just 
about all other platforms too.


Easy to implement, standard on all platforms, with no penalty for use on 
OS X.  What's not to love? :)


--
 Richard Gaskin
 Managing Editor, revJournal
 ___
 Rev tips, tutorials and more: http://www.revJournal.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: drawer question

2007-08-12 Thread Mark Swindell
Thanks Wilhelm and Scott.  I've recrafted the effect I want using  
revChangeWindowSize, and it works nicely.  I've never liked drawers  
very much, to tell the truth, but for this one application the idea  
of them is right. I think it is better implemented with the built-in  
routines, though, and now I don't have to monkey with anything for  
the Windows version.


I looked at your stack yesterday after coming across it in Gmane,  
Wilhelm.  Nice work.  I've saved the stack for future reference.


Mark

On Aug 12, 2007, at 9:08 AM, Wilhelm Sanke wrote:



On Sat, Aug 11, 2007, Scott Morrow scott at elementarysoftware.com  
wrote:




Mark,
I feel your pain... drawers can be a frustration. Did I mention  
that  they stopped working below OSX 10.4  after rev 2.6.1:  )


Several experienced folks on this list suggest that in many cases  
it  might be wiser to resize the window (see: revChangeWindowSize)  
with  some graphics added in order to simulate a drawer.  (This  
works quite  well as long as the drawer is on the bottom or the  
right.)

-Scott




Those interested in creating their own drawer routines - without  
using the drawer commands - might have a look at my drawer stack  
from 2003


.

It contains both such resize routines which Scott recommends in his  
post qoted above and the sliding out of substacks from any point  
and any side of a mainstack - even in diagonal directions.
All these routines can be used also with older versions of Metacard  
and Revolution from before the introduction of the drawer commands.


Regards,

Wilhelm Sanke


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution



There are a terrible lot of lies going around the world, and the  
worst of it is half of them are true. - Sir Winston Churchill



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: testing CGI help?

2007-08-12 Thread Thomas McCarthy

>How do I find out if in the following theBuffer is empty?

--read info
put $QUERY_STRING into theBuffer

if theBuffer is empty then
--do stuff here
--for example, put "Hey! The buffer is empty!" into tresult
--later, you can print tresult to a log file or display it.
end if

___
Join Excite! - http://www.excite.com
The most personalized portal on the Web!


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Resolved--> Re: Bug prevents Rev from building a standalone PC application

2007-08-12 Thread J. Landman Gay

Arthur Rann wrote:


Of course, I tried removing this, that, and the other, until I was
left with a single card, with no scripts, no custom properties, nada.
At that point, it was exactly the same as a blank, empty project.
Except the name.

The name was set to 'test.rev', which is the correct name of the
stack. On a whim, I changed it to get rid of the '.rev' at the end, in
the stack properties. I saved it, and it 'stuck'. I built, and wow--it
builds!


Okay, that makes some sense to me. You can refer to a stack in a script 
by either its short name (the one in stack properties) or by its file 
path. Apparently the engine assumes that a stack name with an extension 
is a file path on disk. I can see how this might mess up the standalone 
builder, which probably always assumes that the short name is never a 
disk-based reference.


Stack names in the property inspector should never include an extension, 
I suspect.


--
Jacqueline Landman Gay | [EMAIL PROTECTED]
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: drawer question

2007-08-12 Thread Wilhelm Sanke


On Sat, Aug 11, 2007, Scott Morrow scott at elementarysoftware.com wrote:



Mark,
I feel your pain... drawers can be a frustration. Did I mention that  
they stopped working below OSX 10.4  after rev 2.6.1:  )


Several experienced folks on this list suggest that in many cases it  
might be wiser to resize the window (see: revChangeWindowSize) with  
some graphics added in order to simulate a drawer.  (This works quite  
well as long as the drawer is on the bottom or the right.)

-Scott




Those interested in creating their own drawer routines - without using 
the drawer commands - might have a look at my drawer stack from 2003


.

It contains both such resize routines which Scott recommends in his post 
qoted above and the sliding out of substacks from any point and any side 
of a mainstack - even in diagonal directions.
All these routines can be used also with older versions of Metacard and 
Revolution from before the introduction of the drawer commands.


Regards,

Wilhelm Sanke


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: testing CGI help? paypal

2007-08-12 Thread Robert Mann
It took me a week but I figured out my problem.
After some consulting with paypal support they told me to try the live site
not sandbox, it did not work at first but then I went through and completely
set up the business paypal account and it started to work. So not sure what
part of the paypal setup that made it start to work. I am now trying to do
the same with sandbox but not have much luck.

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


including images from standard library...

2007-08-12 Thread viktoras didziulis

Hi,
I use Revolution 2.6.1 to build executables (for Windows, MacOSX and 
Linux) that use images from Revolution's own standard image library. In 
a script images are referred to using their numeric id. Everything works 
within the IDE, but these images do not appear in the compiled 
application. How can I enforce the images from the standard library be 
imported during compilation of a stack ? Or is manual placement of these 
standard images on a stack the only way to do this?


Best wishes
Viktoras
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution