revPrintField ???? PDF

2010-03-21 Thread Richmond Mathewson

 on mouseUp
  revPrintField the name of fld TTEXT
end mouseUp

gives me (on Mac OS X) a standard print dialog (without the print to PDF 
option)


the documentation (PDF) has this:

On Mac OS X systems you can also print directly to a PDF file
-- even without showing the user a print dialog if choose to.

which is lovely - but nowhere can I find details on how to
effect this . . .

nor printing to XPS on Windows.


___
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: revPrintField ???? PDF

2010-03-21 Thread Sarah Reichelt
On Sun, Mar 21, 2010 at 8:19 PM, Richmond Mathewson
richmondmathew...@gmail.com wrote:
  on mouseUp
  revPrintField the name of fld TTEXT
 end mouseUp

 gives me (on Mac OS X) a standard print dialog (without the print to PDF
 option)

If you do:

on mouseUp
   showPrintDialog false, true
   revPrintField the name of fld TTEXT
end mouseUp

Then you will get the print dialog and be able to use OS X's standard
print to pdf.


 the documentation (PDF) has this:

 On Mac OS X systems you can also print directly to a PDF file
 -- even without showing the user a print dialog if choose to.

 which is lovely - but nowhere can I find details on how to
 effect this . . .

There are 2 ways to do this. If you have revEnterprise, you can use
the new open printing to pdf command which allows lots of extras
like setting author, title, keywords etc, as well as including links
and anchor to allow hyper-linking within the pdf.
If you don't have revEnterprise, or you don't need those features,
then you can set the printerOutput before printing. If you set this to
print to a file, then you will get a pdf on Mac and an XPS file on
Windows.

HTH,
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: revPrintField ???? PDF

2010-03-21 Thread Richmond Mathewson

 On 21/03/2010 13:18, Sarah Reichelt wrote:

On Sun, Mar 21, 2010 at 8:19 PM, Richmond Mathewson
richmondmathew...@gmail.com  wrote:

  on mouseUp
  revPrintField the name of fld TTEXT
end mouseUp

gives me (on Mac OS X) a standard print dialog (without the print to PDF
option)

If you do:

on mouseUp
showPrintDialog false, true
revPrintField the name of fld TTEXT
end mouseUp

Then you will get the print dialog and be able to use OS X's standard
print to pdf.


Lovely! Thank you so much.
___
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: revPrintField ???? PDF

2010-03-21 Thread Richmond Mathewson

 On 21/03/2010 13:18, Sarah Reichelt wrote:

snip
on mouseUp
showPrintDialog false, true
revPrintField the name of fld TTEXT
end mouseUp


 one needs to change showPrintDialog to revShowPrintDialog
___
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: Revmobile Internet Support

2010-03-21 Thread Mike Brown
Does anyone know the method for displaying the web page retrieved from  
the example put url (“http://www.google.com”) into tGooglePage?


I have been searching around for a sample script or explanation but  
have had no luck so far.


Thanks!

- Mike




Mike Brown
Cyber-NY Interactive
212-475-2721 Ext. 306
www.cyber-ny.com
m...@cyber-ny.com

Follow Us On Twitter
http://www.twitter.com/cyberny



On Mar 20, 2010, at 11:39 AM, Andre Garzia wrote:


Mike,

revBrowser is not supported on RevMobile. In the docs they say that
externals are not currently supported.

Cheers
andre

On Sat, Mar 20, 2010 at 10:47 AM, Mike Brown m...@cyber-ny.com  
wrote:



Does anyone know if revBrowserOpen is supported in the RevMobile
pre-alpha release?  I see in the documentation that non-file URL  
access is
limited but not much info is provided on how to get it to work.  I  
have a
stack that displays a web page using revBrowserOpen but does not  
work in the

iPhone simulator so I am not sure if it is my put url method or the
revBrowserOpen that is not working.

I am looking for a simple method to display a web page in my iPhone  
app.


- Mike


Mike Brown
Cyber-NY Interactive
212-475-2721 Ext. 306
www.cyber-ny.com
m...@cyber-ny.com

Follow Us On Twitter
http://www.twitter.com/cyberny


___
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





--
http://www.andregarzia.com All We Do Is Code.
___
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


___
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: Revmobile Internet Support

2010-03-21 Thread Colin Holgate

On Mar 21, 2010, at 8:36 AM, Mike Brown wrote:

 Does anyone know the method for displaying the web page retrieved from the 
 example put url (“http://www.google.com”) into tGooglePage?


I suppose you would say:

revBrowserSet id, htmltext,tGooglePage

where id would be the id of the revBrowser instance. Still wouldn't work on a 
phone.

Here's a script that would close all existing revBrowsers, get the Google page 
source, and then set it to a new instance:

on mouseUp
   put revBrowserInstances() into tInstances
   repeat for each item tInstance in tInstances
  revBrowserClose tInstance
   end repeat
   
   put url (http://www.google.com/;) into tGooglePage
   put revBrowserOpen(the windowId of this stack, ) into tBrowserId
   revBrowserSet tBrowserId,rect,the rect of button placeholder
   revBrowserSet tBrowserId,htmltext,tGooglePage
end mouseUp


Usually I think you would open the initial page in the first revBrowserSet 
line. In the above example, button placeholder is set to have an outer glow, 
which means that the web page seems to have that outer glow too.


___
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: Revmobile Internet Support

2010-03-21 Thread Mike Brown

Hi Colin,

Unfortunately the revBrowser external commands cannot be used for  
rendering HTML in the Revmobile pre-alpha.  The only for mat example  
provided in the documentation is using the put url format as in this  
example script:   put url (“http://www.google.com”) into tGooglePage  
but I can't find any info on what you do to display a web page using  
the page source captured in the tGooglePage container.


- Mike


Mike Brown
Cyber-NY Interactive
212-475-2721 Ext. 306
www.cyber-ny.com
m...@cyber-ny.com

Follow Us On Twitter
http://www.twitter.com/cyberny



On Mar 21, 2010, at 10:39 AM, Colin Holgate wrote:



On Mar 21, 2010, at 8:36 AM, Mike Brown wrote:

Does anyone know the method for displaying the web page retrieved  
from the example put url (“http://www.google.com”) into  
tGooglePage?



I suppose you would say:

revBrowserSet id, htmltext,tGooglePage

where id would be the id of the revBrowser instance. Still wouldn't  
work on a phone.


Here's a script that would close all existing revBrowsers, get the  
Google page source, and then set it to a new instance:


on mouseUp
  put revBrowserInstances() into tInstances
  repeat for each item tInstance in tInstances
 revBrowserClose tInstance
  end repeat

  put url (http://www.google.com/;) into tGooglePage
  put revBrowserOpen(the windowId of this stack, ) into tBrowserId
  revBrowserSet tBrowserId,rect,the rect of button placeholder
  revBrowserSet tBrowserId,htmltext,tGooglePage
end mouseUp


Usually I think you would open the initial page in the first  
revBrowserSet line. In the above example, button placeholder is  
set to have an outer glow, which means that the web page seems to  
have that outer glow too.



___
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


___
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: revPrintField ???? PDF

2010-03-21 Thread Jan Schenkel
You can set the 'printerOutput' property to a filepath before running print 
commands. This will generate a PDF file on MacOSX, an XPS file on Windows, or a 
Postscript file on Linux.

HTH,

Jan Schenkel.
=
Quartam Reports  PDF Library for Revolution
http://www.quartam.com

=
As we grow older, we grow both wiser and more foolish at the same time.  (La 
Rochefoucauld)


--- On Sun, 3/21/10, Richmond Mathewson richmondmathew...@gmail.com wrote:

 From: Richmond Mathewson richmondmathew...@gmail.com
 Subject: revPrintField   PDF
 To: How to use Revolution use-revolution@lists.runrev.com
 Date: Sunday, March 21, 2010, 3:19 AM
  on mouseUp
   revPrintField the name of fld TTEXT
 end mouseUp
 
 gives me (on Mac OS X) a standard print dialog (without the
 print to PDF option)
 
 the documentation (PDF) has this:
 
 On Mac OS X systems you can also print directly to a PDF
 file
 -- even without showing the user a print dialog if choose
 to.
 
 which is lovely - but nowhere can I find details on how to
 effect this . . .
 
 nor printing to XPS on Windows.
 
 
 ___
 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
 




___
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: revPrintField ???? PDF

2010-03-21 Thread Richmond Mathewson

 On 21/03/2010 19:28, Jan Schenkel wrote:

You can set the 'printerOutput' property to a filepath before running print 
commands. This will generate a PDF file on MacOSX, an XPS file on Windows, or a 
Postscript file on Linux.

Well, I must be doing something wrong as I could not get this to behave 
itself; it just kept
pumping out a PDF file called it with no suffix in the RunRev folder . 
. .   :)

___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-21 Thread Jan Schenkel
Hi Zeeshan,

Maybe my skull is especially thick today, but I'm still confused about what 
exactly you are trying to accomplish.

In order to help you create your solution, we'll need answers to a few basic 
questions:

- what exactly is JADE?
- a library, a framework, a development tool?
-- a URL with more information would help a lot
- and how does plain Java code use it?
-- do you have working Java code that uses/interacts with JADE?

- what exactly do you expect from rev?
- graphical user interface as front-end?
- or something else entirely?

- what is your planned architecture?
- do you want to run little Java programs that do a chunk of work? 
- or will there be a separate Java process running constantly? 
-- and will this be started separately?
-- or would your rev stack take the initiative to start this?
- is it running on the same machine or somewhere else?
-- if only local, then process communication may do the trick
-- if possibly remote, then socket communication is the way to go

This list is about how to use revolution, members are not necessarily experts 
in other languages, libraries, environments or platforms. Provide us with a 
detailed goal and initial plan, and we will help you put the pieces of the 
puzzle into place.

Best of luck,

Jan Schenkel.
=
Quartam Reports  PDF Library for Revolution
http://www.quartam.com

=
As we grow older, we grow both wiser and more foolish at the same time.  (La 
Rochefoucauld)


--- On Sat, 3/20/10, zeeshan aamir shani.run...@gmail.com wrote:
 Hay to all,
 
 now you can give me suggestion, initial program, sample
 code with your own
 folder in this link.
 
 
 http://www.4shared.com/dir/34362030/72462f27/RunRev_Suggestion.html
 
 Pass:      1234
 
 
 Thanks for your all affords and corporations.
 Regards,
 ZEESHAN AAMIR
 ___
 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
 




___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-21 Thread Mark Wieder
zeeshan-

Saturday, March 20, 2010, 9:36:22 AM, you wrote:

 javac Server.java
 it makes Server.Class

 and it is in same folder where rev is. but when i run this through rev or
 directly from command promt
 like java Server

 it gives error where as it run fine in JADE and gives output.

If you get an error when you run

java Server

from a command prompt then you will get the same error when you try to
execute this from a shell command in runrev. You will need to fix your
java classpath to run the server successfully from the command line
before you can procede any further.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-21 Thread Mark Wieder
Mark-

Saturday, March 20, 2010, 4:31:00 AM, you wrote:

 Sorry, I didn't mean to scare you off, Mark ;-)

g Between you and Jan, I figure things are in good hands now...

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-21 Thread zeeshan aamir
yes mark,

I think the prob is in  my class path.

Javac command runfine but when I try

Java jade.boot

Its not work

I set the class path for this

C:\Program Files\Java\jade

commons-codec-1.3.jar

jade.jar

jadeTools.jar

iiop.jar

http.jar



I set these path.

set path= C:\Program Files\Java\jdk \bin

set *JADE_HOME*= C:\Program Files\Java\jade

set CONTROLLER=127.0.0.1

set *classpath*=%*JADE_HOME*%

set *classpath*=%*JADE_HOME*% ;%*JADE_HOME*%\*jade*.*jar*

set *classpath*=%*JADE_HOME*% ;%*JADE_HOME*%\*jadeTools*.*jar*

set *classpath*=%*JADE_HOME*% ;%*JADE_HOME*%\*iiop.jar*

set *classpath*=%*JADE_HOME*% ;%*JADE_HOME*%*\http.jar*

set *classpath*=%*JADE_HOME*% ;%*JADE_HOME*%\ *commons-codec-1.3*

*.jar*



I don’t know why it not work. May be this is the problem.


Regards,
ZEESHAN

On Sun, Mar 21, 2010 at 7:30 PM, Mark Wieder mwie...@ahsoftware.net wrote:

 Mark-

 Saturday, March 20, 2010, 4:31:00 AM, you wrote:

  Sorry, I didn't mean to scare you off, Mark ;-)

 g Between you and Jan, I figure things are in good hands now...

 --
 -Mark Wieder
  mwie...@ahsoftware.net

 ___
 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

___
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


New Version of Field Object in Version 4.5

2010-03-21 Thread Gregory Lypny
Hello everyone,

I saw mention in RevUp that the field object was being updated for the next 
version.  Is there anywhere I can learn more about the proposed changes?

Regards,

Gregory
___
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


Still Having Data Grid Row Coloring Problems

2010-03-21 Thread Len Morgan
I'm still not able to set the background color of an individual row in a 
data grid.  Well, that's not entirely true.  I can make a row invisible 
but I can't change it to the color I want.


I have followed the instructions in the lesson How Can I Colorize 
Individual Lines in a Table?, and if I do what the lesson says, it does 
in fact work but it only changes the FOREGROUND color of the text.  I 
need to set the BACKGROUND color of the text/column and when I do that, 
as soon as another line is selected, the hilite changes to that new row 
and the old row is blanked out completely.


If I go back and select the now invisible row, all the data comes back 
(hilited) so the data is still there.


Is set the backgroundColor of me to XXX the correct command to use or 
should I be changing the background color of some other control (like 
the rectangle that shows up in the column template)?


len morgan

___
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: New Version of Field Object in Version 4.5

2010-03-21 Thread Len Morgan
I think Kevin Miller's road map for 2010 a week or two ago listed at 
least some of the features they were shooting for.


len morgan

On 3/21/2010 4:03 PM, Gregory Lypny wrote:

Hello everyone,

I saw mention in RevUp that the field object was being updated for the next 
version.  Is there anywhere I can learn more about the proposed changes?

Regards,

Gregory
___
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


   


___
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


Can compress also password protect?

2010-03-21 Thread Bill Vlahos
There is no provision in the Rev dictionary for other parameters in the 
compress or decompress function. The RFC shows one option for compression but 
nothing regarding encryption or password protection.

Is there a cross platform way to add encryption requiring a password in the 
compress statement or should I do this as two separate steps? If I encrypt 
first then I will lose any advantage of compression because there will be no 
patterns.

Bill Vlahos
___
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: Data Grid Column Header Alignment Changes after column resize

2010-03-21 Thread Len Morgan
It didn't work so I guess I need an updated datagrid library since I 
can't download the latest 4.5 dp-3 without error.  :-(


len morgan

On 3/15/2010 11:08 AM, Trevor DeVore wrote:

On Mar 13, 2010, at 11:18 AM, Len Morgan wrote:

I'm trying to use my first Data Grid (table) in a stack and I need to 
set the column Header alignment for a few of the columns.  Following 
the instructions in the DG manual, I entered the alignments using the 
message box and it looked fine.  But then I resized one of the 
columns and all of the alignments changed, some of them even aligning 
themselves such that only half of the text showed in the column.


Do I need to set the alignments every time the grid is displayed?  If 
so, where can I do that?


There is a bug in the version of the library shipping with 4.0 with 
regards to column header alignment. It has been fixed for 4.5 though.


Try setting the column alignment by script when your stack opens. Here 
is a lesson -
http://lessons.runrev.com/spaces/lessons/manuals/datagrid/lessons/7324-How-Do-I-Change-Column-Alignment- 



If that doesn't work then let me know and I can get you updated library.



___
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: New Version of Field Object in Version 4.5

2010-03-21 Thread J. Landman Gay

Len Morgan wrote:
I think Kevin Miller's road map for 2010 a week or two ago listed at 
least some of the features they were shooting for.


I think the road map was on the Improve list, which is only available to 
Enterprise customers. That info is all NDA, so anyone on the use-rev 
list has to wait.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
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: revPrintField ???? PDF

2010-03-21 Thread Sarah Reichelt
On Sun, Mar 21, 2010 at 9:44 PM, Richmond Mathewson
richmondmathew...@gmail.com wrote:
  On 21/03/2010 13:18, Sarah Reichelt wrote:

 snip
 on mouseUp
    showPrintDialog false, true
    revPrintField the name of fld TTEXT
 end mouseUp

  one needs to change showPrintDialog to revShowPrintDialog


Doh! Yes, sorry about that.

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: Can compress also password protect?

2010-03-21 Thread stephen barncard
You will need two steps. These are two separate actions..

On 21 March 2010 16:07, Bill Vlahos bvla...@mac.com wrote:

 There is no provision in the Rev dictionary for other parameters in the
 compress or decompress function. The RFC shows one option for compression
 but nothing regarding encryption or password protection.

 Is there a cross platform way to add encryption requiring a password in the
 compress statement or should I do this as two separate steps? If I encrypt
 first then I will lose any advantage of compression because there will be no
 patterns.

 Bill Vlahos
 ___
 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




-- 
-
Stephen Barncard
currently in Fairhope AL
___
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: Can compress also password protect?

2010-03-21 Thread stephen barncard
Bill,
are you planning on using ask password or using your own dialog? Ask
password is encrypted. Please see the entry in the dictionary regarding
this.

On 21 March 2010 16:07, Bill Vlahos bvla...@mac.com wrote:

 There is no provision in the Rev dictionary for other parameters in the
 compress or decompress function. The RFC shows one option for compression
 but nothing regarding encryption or password protection.

 Is there a cross platform way to add encryption requiring a password in the
 compress statement or should I do this as two separate steps? If I encrypt
 first then I will lose any advantage of compression because there will be no
 patterns.

 Bill Vlahos
 ___
 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




-- 
-
Stephen Barncard
currently in Fairhope AL
___
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: Can compress also password protect?

2010-03-21 Thread Bill Vlahos
I already know what the password is to use. I just need to know how to do it.

Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life 
information with you, accessible, and secure.

On Mar 21, 2010, at 3:18 PM, stephen barncard wrote:

 Bill,
 are you planning on using ask password or using your own dialog? Ask
 password is encrypted. Please see the entry in the dictionary regarding
 this.
 
 On 21 March 2010 16:07, Bill Vlahos bvla...@mac.com wrote:
 
 There is no provision in the Rev dictionary for other parameters in the
 compress or decompress function. The RFC shows one option for compression
 but nothing regarding encryption or password protection.
 
 Is there a cross platform way to add encryption requiring a password in the
 compress statement or should I do this as two separate steps? If I encrypt
 first then I will lose any advantage of compression because there will be no
 patterns.
 
 Bill Vlahos
 ___
 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
 
 
 
 
 -- 
 -
 Stephen Barncard
 currently in Fairhope AL
 ___
 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

___
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: Can compress also password protect?

2010-03-21 Thread stephen barncard
It's in the notes:

To use this command you need to have stored an encrypted password first.
There is no way to match a non-encrypted passphrase. Here's a simple
example.


Developer decides on a password and produces the encrypted password back by
entering in the message box:


*answer* password; *put* it

*-- encrypted password appears in message box results*


Now save that encrypted password in a custom property, say, the uPassword of
the stack.


For the end user, you just insert the ask password command in your code and
compare the encrypted result to the result you stored:


*ask* password Please enter the administrator password.

*if* it is empty *then* *exit* to top

*if* it = the uPassword of this stack *then*

   *# right password; proceed*

*else*

   *# incorrect password*

   *answer* Incorrect password. Please try again.

*end* *if*



On 21 March 2010 17:29, Bill Vlahos bvla...@mac.com wrote:

 I already know what the password is to use. I just need to know how to do
 it.

 Bill Vlahos
 _
 InfoWallet (http://www.infowallet.com) is about keeping your important
 life information with you, accessible, and secure.

 On Mar 21, 2010, at 3:18 PM, stephen barncard wrote:

  Bill,
  are you planning on using ask password or using your own dialog? Ask
  password is encrypted. Please see the entry in the dictionary regarding
  this.
 
  On 21 March 2010 16:07, Bill Vlahos bvla...@mac.com wrote:
 
  There is no provision in the Rev dictionary for other parameters in the
  compress or decompress function. The RFC shows one option for
 compression
  but nothing regarding encryption or password protection.
 
  Is there a cross platform way to add encryption requiring a password in
 the
  compress statement or should I do this as two separate steps? If I
 encrypt
  first then I will lose any advantage of compression because there will
 be no
  patterns.
 
  Bill Vlahos
  ___
  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
 
 
 
 
  --
  -
  Stephen Barncard
  currently in Fairhope AL
  ___
  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

 ___
 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




-- 
-
Stephen Barncard
currently in Fairhope AL
___
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: Can compress also password protect?

2010-03-21 Thread Bill Vlahos
I think you misunderstood my question.

How do I compress a file and then encrypt that file?

Bill Vlahos
_
InfoWallet (http://www.infowallet.com) is about keeping your important life 
information with you, accessible, and secure.

On Mar 21, 2010, at 3:32 PM, stephen barncard wrote:

 It's in the notes:
 
 To use this command you need to have stored an encrypted password first.
 There is no way to match a non-encrypted passphrase. Here's a simple
 example.
 
 
 Developer decides on a password and produces the encrypted password back by
 entering in the message box:
 
 
 *answer* password; *put* it
 
 *-- encrypted password appears in message box results*
 
 
 Now save that encrypted password in a custom property, say, the uPassword of
 the stack.
 
 
 For the end user, you just insert the ask password command in your code and
 compare the encrypted result to the result you stored:
 
 
 *ask* password Please enter the administrator password.
 
 *if* it is empty *then* *exit* to top
 
 *if* it = the uPassword of this stack *then*
 
   *# right password; proceed*
 
 *else*
 
   *# incorrect password*
 
   *answer* Incorrect password. Please try again.
 
 *end* *if*
 
 
 
 On 21 March 2010 17:29, Bill Vlahos bvla...@mac.com wrote:
 
 I already know what the password is to use. I just need to know how to do
 it.
 
 Bill Vlahos
 _
 InfoWallet (http://www.infowallet.com) is about keeping your important
 life information with you, accessible, and secure.
 
 On Mar 21, 2010, at 3:18 PM, stephen barncard wrote:
 
 Bill,
 are you planning on using ask password or using your own dialog? Ask
 password is encrypted. Please see the entry in the dictionary regarding
 this.
 
 On 21 March 2010 16:07, Bill Vlahos bvla...@mac.com wrote:
 
 There is no provision in the Rev dictionary for other parameters in the
 compress or decompress function. The RFC shows one option for
 compression
 but nothing regarding encryption or password protection.
 
 Is there a cross platform way to add encryption requiring a password in
 the
 compress statement or should I do this as two separate steps? If I
 encrypt
 first then I will lose any advantage of compression because there will
 be no
 patterns.
 
 Bill Vlahos
 ___
 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
 
 
 
 
 --
 -
 Stephen Barncard
 currently in Fairhope AL
 ___
 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
 
 ___
 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
 
 
 
 
 -- 
 -
 Stephen Barncard
 currently in Fairhope AL
 ___
 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

___
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: Can compress also password protect?

2010-03-21 Thread stephen barncard
put compress(tdata) into tCompressed
put codify(tCompressed) into tEncrypted

function codify pData

  encrypt pData using pCipher with  password pKey

  put the result into tR

  if tR is not empty

  then

putmessage Encode Error:  return  tR

  end if

  return it

end codify



On 21 March 2010 17:41, Bill Vlahos bvla...@mac.com wrote:

 I think you misunderstood my question.

 How do I compress a file and then encrypt that file?

 Bill Vlahos
 _
 InfoWallet (http://www.infowallet.com) is about keeping your important
 life information with you, accessible, and secure.

 On Mar 21, 2010, at 3:32 PM, stephen barncard wrote:

  It's in the notes:
 
  To use this command you need to have stored an encrypted password first.
  There is no way to match a non-encrypted passphrase. Here's a simple
  example.
 
 
  Developer decides on a password and produces the encrypted password back
 by
  entering in the message box:
 
 
  *answer* password; *put* it
 
  *-- encrypted password appears in message box results*
 
 
  Now save that encrypted password in a custom property, say, the uPassword
 of
  the stack.
 
 
  For the end user, you just insert the ask password command in your code
 and
  compare the encrypted result to the result you stored:
 
 
  *ask* password Please enter the administrator password.
 
  *if* it is empty *then* *exit* to top
 
  *if* it = the uPassword of this stack *then*
 
*# right password; proceed*
 
  *else*
 
*# incorrect password*
 
*answer* Incorrect password. Please try again.
 
  *end* *if*
 
 
 
  On 21 March 2010 17:29, Bill Vlahos bvla...@mac.com wrote:
 
  I already know what the password is to use. I just need to know how to
 do
  it.
 
  Bill Vlahos
  _
  InfoWallet (http://www.infowallet.com) is about keeping your important
  life information with you, accessible, and secure.
 
  On Mar 21, 2010, at 3:18 PM, stephen barncard wrote:
 
  Bill,
  are you planning on using ask password or using your own dialog? Ask
  password is encrypted. Please see the entry in the dictionary regarding
  this.
 
  On 21 March 2010 16:07, Bill Vlahos bvla...@mac.com wrote:
 
  There is no provision in the Rev dictionary for other parameters in
 the
  compress or decompress function. The RFC shows one option for
  compression
  but nothing regarding encryption or password protection.
 
  Is there a cross platform way to add encryption requiring a password
 in
  the
  compress statement or should I do this as two separate steps? If I
  encrypt
  first then I will lose any advantage of compression because there will
  be no
  patterns.
 
  Bill Vlahos
  ___
  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
 
 
 
 
  --
  -
  Stephen Barncard
  currently in Fairhope AL
  ___
  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
 
  ___
  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
 
 
 
 
  --
  -
  Stephen Barncard
  currently in Fairhope AL
  ___
  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

 ___
 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




-- 
-
Stephen Barncard
currently in Fairhope AL
___
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


Fwd: Can compress also password protect?

2010-03-21 Thread stephen barncard
the 15k limit squashed my previous post,

put compress(tdata) into tCompressed
put codify(tCompressed) into tEncrypted

function codify pData

  encrypt pData using pCipher with  password pKey

  put the result into tR

  if tR is not empty

  then

putmessage Encode Error:  return  tR

  end if

  return it

end codify

you can use

put the cipherNames into tCypherNameList

to get the possible encryption methods.

I used this for the client I mentioned earlier that wanted compressed and
encrypted MP3 files

Decrypt and decompress on the other side in that order.



On 21 March 2010 17:41, Bill Vlahos bvla...@mac.com wrote:

 I think you misunderstood my question.

 How do I compress a file and then encrypt that file?

 Bill Vlahos

___
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: revPrintField ???? PDF

2010-03-21 Thread Sarah Reichelt
On Mon, Mar 22, 2010 at 3:51 AM, Richmond Mathewson
richmondmathew...@gmail.com wrote:
  On 21/03/2010 19:28, Jan Schenkel wrote:

 You can set the 'printerOutput' property to a filepath before running
 print commands. This will generate a PDF file on MacOSX, an XPS file on
 Windows, or a Postscript file on Linux.

 Well, I must be doing something wrong as I could not get this to behave
 itself; it just kept
 pumping out a PDF file called it with no suffix in the RunRev folder . . .
   :)


Try this:

on mouseUp
   ask file Save printout as: with Print.pdf
   put it into tFileName
   if tFileName is empty then exit to top

   set the printerOutput to file:  tFileName

   revShowPrintDialog false, false
   revPrintField the long name of fld TTEXT
end mouseUp


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: Revmobile Internet Support

2010-03-21 Thread Sarah Reichelt
On Sun, Mar 21, 2010 at 10:36 PM, Mike Brown m...@cyber-ny.com wrote:
 Does anyone know the method for displaying the web page retrieved from the
 example put url (“http://www.google.com”) into tGooglePage?

You can get a basic web page display using:

put url (“http://www.google.com”) into tGooglePage
set the htmltext of fld WebPage to tGooglePage

This just uses Rev's built-in html support, which is not complete, but
it gets you part of the way.

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: JADE (NetBeans IDE 6.8) and Rev Studio 4.0

2010-03-21 Thread Mark Wieder
zeeshan-

If you really have embedded spaces and asterisks in your path, then
yes, this is a problem. If you don't and you're just adding them for
display purposes, DONT DO THAT. It makes it impossible to figure out
what's really going on.

Also, it seems that you're overwriting your existing classpath several
times rather than adding to it.

This is getting quite a bit off-topic for members of this list - you
may want to take this discussion to a java list until you can get
things working from the command line. Then your runrev shell command
should work. If it doesn't, then it's appropriate to bring it back
here.

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
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: New Version of Field Object in Version 4.5

2010-03-21 Thread Len Morgan
Opps.  Sorry.  I don't think I let anything out of the bag though.  I'll 
pay a little closer attention to which list the question comes from from 
now on.


len

On 3/21/2010 5:02 PM, J. Landman Gay wrote:

Len Morgan wrote:
I think Kevin Miller's road map for 2010 a week or two ago listed 
at least some of the features they were shooting for.


I think the road map was on the Improve list, which is only available 
to Enterprise customers. That info is all NDA, so anyone on the 
use-rev list has to wait.




___
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