Re: Some doubts 'bout Revolution

2003-10-05 Thread Jeanne A. E. DeVoto
At 10:44 PM -0300 10/4/2003, Júlio César Ködel wrote:
My question was: it is possible to make this look and feel of Classic
MacOS in a Rev. application running in Windows (i.e. I make a application,
that is distributed for Windows machines, and want to apply ClassicMacOS
style on it, as it is possible in the development stage)


Set the lookAndFeel property to Macintosh to get the Platinum 
appearance. (This is what the menu item in the development 
environment does.)
--
Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
Runtime Revolution - User-Centric Development Tools
~~~ Check our web site for new Revolution editions  special offers ~~~
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: JDBC instead of ODBC

2003-10-05 Thread Pierre Sahores
Le dim 05/10/2003  05:43, Monte Goulding a crit :
  On Saturday, October 4, 2003, at 06:02  PM, Todd Geist wrote:
 
   There is a FileMaker Pro plug-in which can connect to any database
   that has
   JDBC access.  I have used this plug-in to retrieve data from and edit
   data
   on Firebird, MySQL, and Postgres servers.  There was very little
   difference
   in the code, and it was very fast. (Why am I using FileMaker?  That's
   another story).
  
   FileMaker's plug-in API is C/C++, not Java.  So the developers of the
   plug-in had to write some kind of C/C++ wrapper around the java code.
   I was
   imagining that some clever Rev Nut could do the same thing for
   Revolution.
  
   Maybe as others have pointed out there is no need.
 
  Todd, that's a new one one me!
 
  I'm all for any method to get the bountiful world of JDBC drivers can
  be opened up to us. Certainly better than dealing with ODBC, on Win32
  platforms.
 
 
 This is a very interesting idea. Personally I'd go for expanding the
 external API to include Java. JDBC would be an advantage considering there's
 a JDBC dirver for almost every DB but think of the possibilities that RMI
 would bring. We could all get fat writing Rev clients to J2EE systems ;-)
 
 Cheers
 
 Monte

Yes, Yes, Yes. Even if Rev don't really need Java to connect RDBMS, it
could be a good marketing way to help and let J2EE developers come to
Revolution, in discovering and loving it's elegance and simplicity :-)

 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution
-- 
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

GSM:   +33 6 03 95 77 70
Pro:   +33 1 41 60 52 68
Dom:   +33 1 64 45 05 33
Fax:   +33 1 64 45 05 33

Inspection acadmique de Seine-Saint-Denis
Applications et SGBD ACID SQL (WEB et PGI)
Penser et produire delta de rentabilit
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Encryption and binary (was Decompress cross platform)

2003-10-05 Thread FlexibleLearning
It does, Dar... when compressed userProperty data is involved.

Is userProperty what I know as custom property?

Yes... terminology error... oops.

/H


Re: Menu parser

2003-10-05 Thread FlexibleLearning
Does anyone have a function that parses out only the
active menuitems from a menuList?


Try this :

 put the text of btn "Foo" into tMenuText
 -- strip off the elading tabs for submenus
 replace tab with empty in tMenuText
 -- now filter out the divider lines
 repeat for each line tMenuLine in tMenuText
 if tMenuLine is not among the items of "-,(-"
 then put tMenuLine return after tStrippedList
 end repeat
 -- finally clean up the trailing return
 delete char -1 of tStrippedList

Then the variable tStrippedList should contain what
you want. I was looking for a way to "filter" instead
of the "repeat" loop but didn't find one right away.


Not exactly, Jan. This retains the non-selectable lines of a menu which need to be stripped. I'm having a re-think here.

/H


RE: JDBC instead of ODBC

2003-10-05 Thread Monte Goulding

 Le dim 05/10/2003  05:43, Monte Goulding a crit :
   On Saturday, October 4, 2003, at 06:02  PM, Todd Geist wrote:
  
There is a FileMaker Pro plug-in which can connect to any database
that has
JDBC access.  I have used this plug-in to retrieve data 
 from and edit
data
on Firebird, MySQL, and Postgres servers.  There was very little
difference
in the code, and it was very fast. (Why am I using 
 FileMaker?  That's
another story).
   
FileMaker's plug-in API is C/C++, not Java.  So the 
 developers of the
plug-in had to write some kind of C/C++ wrapper around the 
 java code.
I was
imagining that some clever Rev Nut could do the same thing for
Revolution.
   
Maybe as others have pointed out there is no need.
  
   Todd, that's a new one one me!
  
   I'm all for any method to get the bountiful world of JDBC drivers can
   be opened up to us. Certainly better than dealing with ODBC, on Win32
   platforms.
  
  
  This is a very interesting idea. Personally I'd go for expanding the
  external API to include Java. JDBC would be an advantage 
 considering there's
  a JDBC dirver for almost every DB but think of the 
 possibilities that RMI
  would bring. We could all get fat writing Rev clients to J2EE 
 systems ;-)
  
  Cheers
  
  Monte
 
 Yes, Yes, Yes. Even if Rev don't really need Java to connect RDBMS, it
 could be a good marketing way to help and let J2EE developers come to
 Revolution, in discovering and loving it's elegance and simplicity :-)
 
I imagine the combination of Sun's 'write once, run anywhere' marketing and the fact 
that Rev actually delivers on it would be quite a good combination ;-)

To be quite honest I think this is an area that Rev could clean up. Java GUI's (swing 
or not) are crap and dog slow. J2EE clients could be developed in VB but that rules 
out cross platform clients. 

Cheers

Monte

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: JDBC instead of ODBC

2003-10-05 Thread Pierre Sahores
Le dim 05/10/2003  09:24, Monte Goulding a crit :
  Le dim 05/10/2003  05:43, Monte Goulding a crit :
On Saturday, October 4, 2003, at 06:02  PM, Todd Geist wrote:
   
 There is a FileMaker Pro plug-in which can connect to any database
 that has
 JDBC access.  I have used this plug-in to retrieve data 
  from and edit
 data
 on Firebird, MySQL, and Postgres servers.  There was very little
 difference
 in the code, and it was very fast. (Why am I using 
  FileMaker?  That's
 another story).

 FileMaker's plug-in API is C/C++, not Java.  So the 
  developers of the
 plug-in had to write some kind of C/C++ wrapper around the 
  java code.
 I was
 imagining that some clever Rev Nut could do the same thing for
 Revolution.

 Maybe as others have pointed out there is no need.
   
Todd, that's a new one one me!
   
I'm all for any method to get the bountiful world of JDBC drivers can
be opened up to us. Certainly better than dealing with ODBC, on Win32
platforms.
   
   
   This is a very interesting idea. Personally I'd go for expanding the
   external API to include Java. JDBC would be an advantage 
  considering there's
   a JDBC dirver for almost every DB but think of the 
  possibilities that RMI
   would bring. We could all get fat writing Rev clients to J2EE 
  systems ;-)
   
   Cheers
   
   Monte
  
  Yes, Yes, Yes. Even if Rev don't really need Java to connect RDBMS, it
  could be a good marketing way to help and let J2EE developers come to
  Revolution, in discovering and loving it's elegance and simplicity :-)
  
 I imagine the combination of Sun's 'write once, run anywhere' marketing and the fact 
 that Rev actually delivers on it would be quite a good combination ;-)
 
 To be quite honest I think this is an area that Rev could clean up. Java GUI's 
 (swing or not) are crap and dog slow. J2EE clients could be developed in VB but that 
 rules out cross platform clients. 
 
 Cheers
 
 Monte
 

LOTS MORE THAN 1000 TIMES TRUE. Kevin, Tuviah, Scott ?

 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution
-- 
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

GSM:   +33 6 03 95 77 70
Pro:   +33 1 41 60 52 68
Dom:   +33 1 64 45 05 33
Fax:   +33 1 64 45 05 33

Inspection acadmique de Seine-Saint-Denis
Applications et SGBD ACID SQL (WEB et PGI)
Penser et produire delta de rentabilit
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread Stephen Quinn Barncard
I don't think that's what Júlio meant. I think he 
wants his app to *look like* aqua  when it runs 
in Windoze, not just in development.

I suppose one could create 'aqua like' graphic 
objects such as invisible buttons, but the 
scrollbars in fields would be a problem, not to 
mention menus. There also might be some 'look and 
feel' copyright issues with Apple, depending on 
how far one went.

Besides, it would probably be disconcerting for a 
Windoze user to see what he is not used to


At 10:44 PM -0300 10/4/2003, Júlio César Ködel wrote:
My question was: it is possible to make this look and feel of Classic
MacOS in a Rev. application running in Windows (i.e. I make a application,
that is distributed for Windows machines, and want to apply ClassicMacOS
style on it, as it is possible in the development stage)


Set the lookAndFeel property to Macintosh to 
get the Platinum appearance. (This is what the 
menu item in the development environment does.)
--
Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread Jeanne A. E. DeVoto
At 12:57 AM -0700 10/5/2003, Stephen Quinn Barncard wrote:
I don't think that's what Júlio meant. I think he wants his app to 
*look like* aqua  when it runs in Windoze, not just in development.
He said classic Mac OS, though. (Julio?)
--
Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
Runtime Revolution - User-Centric Development Tools
~~~ Check our web site for new Revolution editions  special offers ~~~
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Newcard: a curious bug!?

2003-10-05 Thread Dom
Klaus Major [EMAIL PROTECTED] wrote:

  on newcard
answer Only one card, please!
send delete this card to this STACK in 1 sec ## stack !!!
  end newcard
 
 That works here for me ;-)

No luck for me...
The same bug arises!

OS 10.2.4
iceBook 800
Rev 2.1

-- 
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Newcard: a curious bug!?

2003-10-05 Thread Dom
Pierre Sahores [EMAIL PROTECTED] wrote:

 Just because your answer brakes the original message path, you just
 need to invert your two statments as below to get the expected result :

Tu as tout bon, Pierre :-)))

You are all right, Pierre :-)))

-- 
mais je ne sais pas si c'est une histoire de frein ;-
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Newcard: a curious bug!?

2003-10-05 Thread Pierre Sahores
Le dim 05/10/2003  11:19, Dom a crit :

 OS 10.2.4
 iceBook 800
 Rev 2.1

Run an icebook 800, here too. Good mothercard, lots more faster than my
previous icebook 600 and even than the G4 12 inches, i was going to
brought before my resseller said me i would do a best operation in
taking the icebook instead ;-)

Why don't you upgrade to 10.2.6 ?

Bests, Pierre
-- 
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

GSM:   +33 6 03 95 77 70
Pro:   +33 1 41 60 52 68
Dom:   +33 1 64 45 05 33
Fax:   +33 1 64 45 05 33

Inspection acadmique de Seine-Saint-Denis
Applications et SGBD ACID SQL (WEB et PGI)
Penser et produire delta de rentabilit
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


answer file of type JPEG

2003-10-05 Thread Klaus Major
Hi listers,

has anyone successfully used e.g.:

answer file yadda of type JPEG

on OS X?

Does not work, not ALL jpgs are shown in the open-dialog...
Some are dimmed...
Looks like the ones (coming from win or a digital camera!) without a 
filetype are dimmed.
Their last item is empty in the long files...

Is it a bug?
Is it already bugzilla'd?
Are there (not too ugly ;-) workarounds?
I reported this yesterday:
[Bug 762] result is empty when setting the filename of an image to a 
non-image file!

So checking the result does not work in this context/case...

Thanks in advance...

Regards

Klaus Major
[EMAIL PROTECTED]
www.major-k.de
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: JDBC instead of ODBC

2003-10-05 Thread Tuviah Snyder
I'm all for any method to get the bountiful world of JDBC drivers can
be opened up to us. Certainly better than dealing with ODBC, on Win32
platforms.
ODBC is standard on Win32 platforms, and OSX ships with an ODBC manager. So
it's just a matter of getting the ODBC drivers from the vendor. If you want
direct access we support a number of databases and are sure to support more.
If you want to get your hands dirty with RevDB you can build your own RevDB
driver (or pay someone else to), contact me off list for an SDK. You can
also use the bugzilla, and request support for the database.

Tuviah Snyder [EMAIL PROTECTED] http://www.runrev.com/
Runtime Revolution Limited - Software at the Speed of Thought

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: answer file of type JPEG

2003-10-05 Thread Klaus Major
Hi all,

Hi listers,

has anyone successfully used e.g.:
answer file yadda of type JPEG
on OS X?
Does not work, not ALL jpgs are shown in the open-dialog...
Some are dimmed...
Looks like the ones (coming from win or a digital camera!) without a 
filetype are dimmed.
Their last item is empty in the long files...

Is it a bug?
Is it already bugzilla'd?
Are there (not too ugly ;-) workarounds?
I reported this yesterday:
[Bug 762] result is empty when setting the filename of an image to a 
non-image file!

So checking the result does not work in this context/case...
I found a workaround by myself, maybe its helpful to others, too...

Since the open dialog on OS X does not work as it should***, i needed a 
solution to
check for a valid image file (BMP,JPG,GIF and PNG) before setting the 
filename of
an image to that file after the user chose one...

(*** with ask file yadda of type JPEG etc...
Not all files are accessible, some jpgs are dimmed...)
Otherwise you will end with anugly and empty image-object...

Anyway, here's my little function :-)

Works fine here with all my image files on OS X (X only!)

##function rrimage what
function rrbild was
  ### was = absolute path to the file...
  if there is not a file was then return false
  open file was for read
  read from file was for 15
  close file was
  if char 1 to 2 of it = BM then return true
  ### is a BMP file
  repeat for each item i in GIF,JFIF,PNG
### you guessed
if i is in it then return true
  end repeat
  return false
end rrbild
(Takes about 1 to 20 millisecs :-)

And then i use it right after the user selected a file:

...
answer file ...
if rrbild(it) then set the filename of img ...
...
Have nice sunday...



Best from germany

Klaus Major
[EMAIL PROTECTED]
www.major-k.de
P.S.
Get you free Memory-game for little and not so little kids today :-)
On my site - Download
I can make a basic memory-RR-source-code available, too, if you 
like...
Surprisingly simple ;-)

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Menu parser

2003-10-05 Thread Jan Schenkel
--- [EMAIL PROTECTED] wrote:
 Aaaargh! Me brain's gone west and taken me
 intelligence with it
 
 Does anyone have a function that parses out only the
 active menuitems from a menuList? Feel free to mail
 me off-list as I am on digest. Thank you!
 
 Example:
 Menu1
Menu1.1
Menu1.2
 (-
 Menu2
 -
 Menu3
Menu3.1
Menu3.1.1
Menu3.1.2
Menu3.2
Menu3.3
 Menu4
 
 Would return...
 
 Menu1.1
 Menu1.2
 Menu2
 Menu3.1.1
 Menu3.1.2
 Menu3.2
 Menu3.3
 Menu4
 
 
 /H
 

Blegh, looks like my brain went out for a trip to the
Carribean as well (not me, unfortunately). Here's one
better suited to your purposes :

  put the text of btn Foobar into tMenuText
  put 0 into tLastNumTabs
  repeat for each line tMenuItem in tMenuText
if tMenuItem is empty or \
   tMenuItem is among the items of -,(-
then next repeat
put 0 into tNumTabs
repeat until char 1 of tMenuItem is not tab
  add 1 to tNumTabs
  delete char 1 of tMenuItem
end repeat
if tNumTabs  tLastNumTabs
then delete line -1 of tStrippedList
put tNumTabs into tLastNumTabs
put return  tMenuItem after tStrippedList
  end repeat
  if char 1 of tStrippedList is return
  then delete char 1 of tStrippedList
  
And now tStrippedList should be what you wanted.
Hope this helped,

Jan Schenkel.

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

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread Roger . E . Eller
 At 10:44 PM -0300 10/4/2003, Júlio César Ködel wrote:
My question was: it is possible to make this look and feel of Classic
MacOS in a Rev. application running in Windows (i.e. I make a 
application,
that is distributed for Windows machines, and want to apply ClassicMacOS
style on it, as it is possible in the development stage)
 
 
 Set the lookAndFeel property to Macintosh to get the Platinum
 appearance. (This is what the menu item in the development
 environment does.)
 --
 Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
 Runtime Revolution - User-Centric Development Tools
 ~~~ Check our web site for new Revolution editions  special offers ~~~

Jeanne,

Are there any plans for Rev to simulate the Aqua appearance in the same 
way? It would be nice for those of us who develop apps on Windows that 
will be used on OS X to be able to preview the look and feel.

Set the lookAndFeel to MacOSX -- would be a nice Christmas present this 
year.

Thanks.
Roger Eller
[EMAIL PROTECTED]
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: JDBC instead of ODBC

2003-10-05 Thread Alex Rice
On Sunday, October 5, 2003, at 05:08  AM, Tuviah Snyder wrote:

I'm all for any method to get the bountiful world of JDBC drivers can
be opened up to us. Certainly better than dealing with ODBC, on Win32
platforms.
ODBC is standard on Win32 platforms, and OSX ships with an ODBC 
manager. So
it's just a matter of getting the ODBC drivers from the vendor.
Understood. The point is that JDBC is de facto standard now for 
database access. Nobody is suggesting Rev's ODBC or revDB capabilities 
are faulty or anything.

BTW the ODBC Manager on OS X is totally broken in my experience) And 
ODBC drivers for OS X are *very* expensive.

If you want
direct access we support a number of databases and are sure to support 
more.
I know

If you want to get your hands dirty with RevDB you can build your own 
RevDB
driver (or pay someone else to), contact me off list for an SDK. You 
can
also use the bugzilla, and request support for the database.

Thanks for the offer, that's good to know.

Alex Rice [EMAIL PROTECTED] | Mindlube Software | http://mindlube.com

what a waste of thumbs that are opposable
to make machines that are disposable  -Ani DiFranco
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: JDBC instead of ODBC

2003-10-05 Thread Jlio Csar Kdel
Sorry If I'm making a great mistake, but... I was thinking...
There is a Microsoft Java (or, at least, an attempt to do so) called
Microsoft .Net Framework.
It's well know that there is a .Net Framework for *nix called Mono (and, If
I'm not wrong, available for Macitosh also).
If the Framework has ADODB capabilities, would be possible to achieve a
ADODB connection within Rev using a external plugin made in .Net?
I know it sounds insane, but, well, we're programmers, aren't we? =P

- Original Message - 
From: Monte Goulding [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, October 05, 2003 4:24 AM
Subject: RE: JDBC instead of ODBC



  Le dim 05/10/2003  05:43, Monte Goulding a crit :
On Saturday, October 4, 2003, at 06:02  PM, Todd Geist wrote:
   
 There is a FileMaker Pro plug-in which can connect to any database
 that has
 JDBC access.  I have used this plug-in to retrieve data
  from and edit
 data
 on Firebird, MySQL, and Postgres servers.  There was very little
 difference
 in the code, and it was very fast. (Why am I using
  FileMaker?  That's
 another story).

 FileMaker's plug-in API is C/C++, not Java.  So the
  developers of the
 plug-in had to write some kind of C/C++ wrapper around the
  java code.
 I was
 imagining that some clever Rev Nut could do the same thing for
 Revolution.

 Maybe as others have pointed out there is no need.
   
Todd, that's a new one one me!
   
I'm all for any method to get the bountiful world of JDBC drivers
can
be opened up to us. Certainly better than dealing with ODBC, on
Win32
platforms.
   
  
   This is a very interesting idea. Personally I'd go for expanding the
   external API to include Java. JDBC would be an advantage
  considering there's
   a JDBC dirver for almost every DB but think of the
  possibilities that RMI
   would bring. We could all get fat writing Rev clients to J2EE
  systems ;-)
  
   Cheers
  
   Monte
 
  Yes, Yes, Yes. Even if Rev don't really need Java to connect RDBMS, it
  could be a good marketing way to help and let J2EE developers come to
  Revolution, in discovering and loving it's elegance and simplicity :-)
 
 I imagine the combination of Sun's 'write once, run anywhere' marketing
and the fact that Rev actually delivers on it would be quite a good
combination ;-)

 To be quite honest I think this is an area that Rev could clean up. Java
GUI's (swing or not) are crap and dog slow. J2EE clients could be developed
in VB but that rules out cross platform clients.

 Cheers

 Monte

 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution

 Esta mensagem foi verificada pelo E-mail Protegido Terra.
 Scan engine: VirusScan / Atualizado em 01/10/2003 / Verso: 1.4.0
 Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread Júlio César Ködel
I think that would be a problem, since both Windows XP and MacOS X use, in a
large scale, alpha blending (those shadows and a lot of other window
gadgets). Would be impossible to achieve a complete MacOS X look and feel in
Windows 32, Windows NT 4 and Linuxes environments.

- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, October 05, 2003 10:15 AM
Subject: Re: Some doubts 'bout Revolution


  At 10:44 PM -0300 10/4/2003, Júlio César Ködel wrote:
 My question was: it is possible to make this look and feel of Classic
 MacOS in a Rev. application running in Windows (i.e. I make a
 application,
 that is distributed for Windows machines, and want to apply ClassicMacOS
 style on it, as it is possible in the development stage)
 
 
  Set the lookAndFeel property to Macintosh to get the Platinum
  appearance. (This is what the menu item in the development
  environment does.)
  --
  Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
  Runtime Revolution - User-Centric Development Tools
  ~~~ Check our web site for new Revolution editions  special offers ~~~

 Jeanne,

 Are there any plans for Rev to simulate the Aqua appearance in the same
 way? It would be nice for those of us who develop apps on Windows that
 will be used on OS X to be able to preview the look and feel.

 Set the lookAndFeel to MacOSX -- would be a nice Christmas present this
 year.

 Thanks.
 Roger Eller
 [EMAIL PROTECTED]
 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution

 Esta mensagem foi verificada pelo E-mail Protegido Terra.
 Scan engine: VirusScan / Atualizado em 01/10/2003 / Versão: 1.4.0
 Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread Richard Gaskin
[EMAIL PROTECTED] wrote:

 Set the lookAndFeel to MacOSX -- would be a nice Christmas present this
 year.

I'd rather have a new bicycle. :)

Emulating OS X'x complex Appearance Manager would be a tremendous amount of
work, effectively requiring the reverse-engineering and re-implementation of
the Quartz rendering engine along with it for it to look right.

I'd much rather see that amount of effort go into a hundred other new
features, the sum of all of which would likely cost less.

Besides, OS X is such an odd beast that the best way to build apps for it is
to at least spend some time tweaking on that OS natively.  One of the
downsides to implementing Aqua emulation would be to encourage a false
confidence for things that might look good buy do not work properly once
actually deployed there.

-- 
 Richard Gaskin 
 Fourth World Media Corporation
 Developer of WebMerge: Publish any database on any Web site
 ___
 [EMAIL PROTECTED]   http://www.FourthWorld.com
 Tel: 323-225-3717   AIM: FourthWorldInc

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Why this doesn't work? =(

2003-10-05 Thread Júlio César Ködel



HTMLText property of a field = 

"a href=""file://c:\teste.htm"  quote 
"Teste/a"

The link is shown, but it won't open nothing =(

What I'm doing wrong???

(Notice: this text has to be setted FROM CODE, not editing the contents of 
fields in IDE)


Re: Some doubts 'bout Revolution

2003-10-05 Thread Pierre Sahores
Le dim 05/10/2003  18:50, Jlio Csar Kdel a crit :
 No... I was thinking in Platinum... ;-)
 After some time, users get a little tired about the look and feel of their
 OSes (that's why exists skins modules for Windows and Linux). It would be
 nice to change the look of my app without any effort.
 One thing that I'm getting some problem is on buttons.
 It would be nice if we could make buttons like the skins programs. Let's
 suppose a PNG file:
 +-+
 !*!
 +-+
 A Skin program would divide a PNG file in a 3x3 matrix, then, apply the + on
 corners, repeat -, * and - on center (H) and ! on vertical, mouting this way
 a button (independent of its size).
 Would be a nice addition to Rev a way to make a fixed 32x32 PNG and apply it
 to a button (whatever the button changes in size, it will reorganize the
 matrix making the graphic fit to any size without magnifications).

Hi Jlio,

In between many good addresses, you will find most of what you are
thinking about in visiting the Chipp's web site at
http://www.altuit.com/webs/altuit2/RunRev/About.htm,
the Richard's one at http://www.fourthworld.com/rev/,
the Jacque's one at http://www.hyperactivesw.com/,
the Rev's developers home at
http://www.runrev.com/Revolution1/developercentral/usercontributions.html

etc, etc...

Just see how it's always, in between us, a Revolutionnary to gohead,
in what each other is searching about ;-) Cool, is'n it ?

Bests, Pierre
 
 - Original Message - 
 From: Stephen Quinn Barncard [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, October 05, 2003 4:57 AM
 Subject: Re: Some doubts 'bout Revolution
 
 
  I don't think that's what Jlio meant. I think he
  wants his app to *look like* aqua  when it runs
  in Windoze, not just in development.
 
  I suppose one could create 'aqua like' graphic
  objects such as invisible buttons, but the
  scrollbars in fields would be a problem, not to
  mention menus. There also might be some 'look and
  feel' copyright issues with Apple, depending on
  how far one went.
 
  Besides, it would probably be disconcerting for a
  Windoze user to see what he is not used to
 
 
  At 10:44 PM -0300 10/4/2003, Jlio Csar Kdel wrote:
  My question was: it is possible to make this look and feel of Classic
  MacOS in a Rev. application running in Windows (i.e. I make a
 application,
  that is distributed for Windows machines, and want to apply ClassicMacOS
  style on it, as it is possible in the development stage)
  
  
  Set the lookAndFeel property to Macintosh to
  get the Platinum appearance. (This is what the
  menu item in the development environment does.)
  --
  Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
  ___
  use-revolution mailing list
  [EMAIL PROTECTED]
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  Esta mensagem foi verificada pelo E-mail Protegido Terra.
  Scan engine: VirusScan / Atualizado em 01/10/2003 / Verso: 1.4.0
  Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/
 
 
 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution
-- 
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

GSM:   +33 6 03 95 77 70
Pro:   +33 1 41 60 52 68
Dom:   +33 1 64 45 05 33
Fax:   +33 1 64 45 05 33

Inspection acadmique de Seine-Saint-Denis
Applications et SGBD ACID SQL (WEB et PGI)
Penser et produire delta de rentabilit
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Drivers for Firebird/Interbase (Was Re: JDBC instead of ODBC)

2003-10-05 Thread Júlio César Ködel
You are talking about commercial drivers, I'm talking about free software.
You're right, 'cos I didn't mention this before, but, for users like me,
from Brazil, it's almost impossible to buy foreign softwares (the software
must be VERY good to compensate all the troubles that we have to make such
transations).

- Original Message - 
From: Bernard Devlin [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, October 04, 2003 2:41 PM
Subject: Drivers for Firebird/Interbase (Was Re: JDBC instead of ODBC)


 Julio

 
 Even if ODBC would be a TRUE reality on all
 plataforms, we'd need a ODBC driver for Firebird, wich exists only for
 Windows (there is plans for a Linux one, but it's not available yet). For
 Macintosh, Firebird is nothing.
 

 You are mistaken. There are ODBC drivers for Interbase (and Firebird) for
 Linux, Solaris, Windows, and OS X.

 Have a look at:

 http://www.easysoft.com/products//platforms.phtml?product=2201

 and

 http://www.ibdatabase.com/

 Nevertheless, if there was only one external database for which Runrev
 provided native Rev drivers, it should be Interbase/Firebird.



 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution

 Esta mensagem foi verificada pelo E-mail Protegido Terra.
 Scan engine: VirusScan / Atualizado em 01/10/2003 / Versão: 1.4.0
 Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Newcard: a curious bug!?

2003-10-05 Thread Dom
Klaus Major [EMAIL PROTECTED] wrote:

 C'est: Never touch a running system! ;-)

I thought to a more argotic one, such as 
If ain't broke, don't touch it

?

-- 
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: JDBC instead of ODBC

2003-10-05 Thread Pierre Sahores
Le dim 05/10/2003  18:56, Jlio Csar Kdel a crit :
 The problem is (for Firebird):
 Firebird is, in my opinion, the best database engine, after Microsoft SQL
 and MySQL. 

I would for my own say : before them and many others alike, Sybase ASE
12.5 or IBM DB2, and along the other best ACID compliant SQL server
available for free : the usefull and unbreakable PostgreSQL...

 BUT, there only source code for direct access in Linux and
 Windows (nobody likes mac =( ). Even if ODBC would be a TRUE reality on all
 plataforms, we'd need a ODBC driver for Firebird, wich exists only for
 Windows (there is plans for a Linux one, but it's not available yet). For
 Macintosh, Firebird is nothing. (Those who program in Windows environment
 know what is Borland and Interbase, are strong names on our plataform, and
 Firebird is the continuation, the evolution, of Interbase).
 So, we need not only ODBC, but the drivers for ODBC also (that's why I
 insist that would be A LOT simple, faster, clean and easier, to make a
 native driver for Firebird/Interbase). After MySQL, Valentine, PostgreSQL
 and Firebird, what more could we want??? Access and MSSQL Server? (This
 could be true to Macs and Windows, but I doubt about someone in Linux make
 some Microsoft thing, he he he)
 
 - Original Message - 
 From: Tuviah Snyder [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, October 05, 2003 8:08 AM
 Subject: Re: JDBC instead of ODBC
 
 
  I'm all for any method to get the bountiful world of JDBC drivers can
  be opened up to us. Certainly better than dealing with ODBC, on Win32
  platforms.
  ODBC is standard on Win32 platforms, and OSX ships with an ODBC manager.
 So
  it's just a matter of getting the ODBC drivers from the vendor. If you
 want
  direct access we support a number of databases and are sure to support
 more.
  If you want to get your hands dirty with RevDB you can build your own
 RevDB
  driver (or pay someone else to), contact me off list for an SDK. You can
  also use the bugzilla, and request support for the database.
 
  Tuviah Snyder [EMAIL PROTECTED] http://www.runrev.com/
  Runtime Revolution Limited - Software at the Speed of Thought
 
  ___
  use-revolution mailing list
  [EMAIL PROTECTED]
  http://lists.runrev.com/mailman/listinfo/use-revolution
 
  Esta mensagem foi verificada pelo E-mail Protegido Terra.
  Scan engine: VirusScan / Atualizado em 01/10/2003 / Verso: 1.4.0
  Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/
 
 
 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution
-- 
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

GSM:   +33 6 03 95 77 70
Pro:   +33 1 41 60 52 68
Dom:   +33 1 64 45 05 33
Fax:   +33 1 64 45 05 33

Inspection acadmique de Seine-Saint-Denis
Applications et SGBD ACID SQL (WEB et PGI)
Penser et produire delta de rentabilit
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Newcard: a curious bug!?

2003-10-05 Thread Pierre Sahores
Le dim 05/10/2003  19:35, Dom a crit :
 Pierre Sahores [EMAIL PROTECTED] wrote:
 
  Why don't you upgrade to 10.2.6 ?
 
 Quand a marche, ne touche  rien ;-
 
 (c'est comment en anglais ?)
 (I know there is an expression in english but can't remember)
 
 With each upgrade the battery problem arises again... idem with  the
 new fresh 10.2.8 ;-

Agreed. Some times, mouse freezing and so on, on wake-up, there too...
 
 I will wait until a stable 10.3 ;-)))
-- 
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

GSM:   +33 6 03 95 77 70
Pro:   +33 1 41 60 52 68
Dom:   +33 1 64 45 05 33
Fax:   +33 1 64 45 05 33

Inspection acadmique de Seine-Saint-Denis
Applications et SGBD ACID SQL (WEB et PGI)
Penser et produire delta de rentabilit
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


re: Drivers for Firebird/Interbase (Was Re: JDBC instead of ODBC)

2003-10-05 Thread Tuviah Snyder
Nevertheless, if there was only one external database for which Runrev
provided native Rev drivers, it should be Interbase/Firebird.
So go file an enhancement request and everyone who thinks we should support
FireBird or whatever other database (SQLLite, OpenBase, FrontBase, ect)
please vote for it.

Tuviah Snyder [EMAIL PROTECTED] http://www.runrev.com/
Runtime Revolution Limited - Software at the Speed of Thought


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Why this doesn't work? =(

2003-10-05 Thread Jlio Csar Kdel
Nop. I don't want to open a http: file, I want to open a local file (a HTML
file saved in my AppFolder).

- Original Message - 
From: Pierre Sahores [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, October 05, 2003 4:02 PM
Subject: Re: Why this doesn't work? =(


 Le dim 05/10/2003  20:48, Jlio Csar Kdel a crit :
  HTMLText property of a field =
 
  a href=  quote  file://c:\teste.htm  quote Teste/a
 
  The link is shown, but it won't open nothing =(
 
  What I'm doing wrong???
 
  (Notice: this text has to be setted FROM CODE, not editing the
  contents of fields in IDE)

 Try to see if it's not because you need to launch the ref file
 dynamically trough your web server (IIS or Apache), something alike :

 a href=  quote  http://localhost/teste.htm;  quote Teste/a

 or :

 a href=  quote  http://127.0.0.1/teste.htm;  quote Teste/a

 where teste.htm will be stored in your default web directory.

 Bests,
 -- 
 Bien cordialement, Pierre Sahores

 100, rue de Paris
 F - 77140 Nemours

 GSM:   +33 6 03 95 77 70
 Pro:   +33 1 41 60 52 68
 Dom:   +33 1 64 45 05 33
 Fax:   +33 1 64 45 05 33

 Inspection acadmique de Seine-Saint-Denis
 Applications et SGBD ACID SQL (WEB et PGI)
 Penser et produire delta de rentabilit
 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution

 Esta mensagem foi verificada pelo E-mail Protegido Terra.
 Scan engine: VirusScan / Atualizado em 01/10/2003 / Verso: 1.4.0
 Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: JDBC instead of ODBC

2003-10-05 Thread Jlio Csar Kdel
 I would for my own say : before them and many others alike, Sybase ASE
 12.5 or IBM DB2, and along the other best ACID compliant SQL server
 available for free : the usefull and unbreakable PostgreSQL...

PostgreSQL... Did you install it on Windows? How many days did you get to do
this task?
A good program is a program that you don't need to be a pHD in informatic to
install. Remember that our costumers are not always genius. Install MySQL or
PostgreSQL is a pain for a light user, MS SQL is too big... Firebird is the
only one that you can deploy within your application (it have about 3Mb and
installation is just as simple as copy files and run a register app.). The
driver is just a small ActiveX DLL, which you put in the System Folder, call
Register Service of DLL and you're done (and you don't need to use ODBC for
that. It will create a ADODB engine).
Remember RAD? It would be fast, easy and fun ;-)

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Sheet command in MAc OS X

2003-10-05 Thread Yves COPPE
Hi,

I've  tried something  in Mac OSX but doesn't luck

Main stack A, substack B and C

from stack A, a btn with

sheet stack B in stack A

from stack B, a btn with

sheet stack C in stack B

the last command doesn't work : the stack C is open but without the 
sheet effect...

Bien amicalement.
Yves COPPE
[EMAIL PROTECTED]

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread Ken Norris
Hi Richard,

 Date: Sun, 05 Oct 2003 11:33:13 -0700
 Subject: Re: Some doubts 'bout Revolution
 From: Richard Gaskin [EMAIL PROTECTED]

 One of the
 downsides to implementing Aqua emulation would be to encourage a false
 confidence for things that might look good buy do not work properly once
 actually deployed there.
--
Dumb question from someone who hasn't followed all of this. Why would
someone want to emulate Mac OSX Aqua on a Windoze platform to begin with?

Ken N.

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: JDBC instead of ODBC

2003-10-05 Thread Pierre Sahores
Le dim 05/10/2003  21:56, Jlio Csar Kdel a crit :
  I would for my own say : before them and many others alike, Sybase ASE
  12.5 or IBM DB2, and along the other best ACID compliant SQL server
  available for free : the usefull and unbreakable PostgreSQL...
 
 PostgreSQL... Did you install it on Windows? How many days did you get to do
 this task?

My apologies about Win32 ;- I don't need nor want to use it anymore,
since i'm mostly working in about Web's and ERP's client-server
solutions and because OSX and Linux are giving me all the power and
security i need, where Win NT, XP and so, are, as server-side solutions,
in less than 15 seconds, still full breakables and unsecure systems.

 A good program is a program that you don't need to be a pHD in informatic to
 install. Remember that our costumers are not always genius. Install MySQL or
 PostgreSQL is a pain for a light user, MS SQL is too big... 

Agreed ;-)

 Firebird is the
 only one that you can deploy within your application (it have about 3Mb and
 installation is just as simple as copy files and run a register app.). The
 driver is just a small ActiveX DLL, which you put in the System Folder, call
 Register Service of DLL and you're done (and you don't need to use ODBC for
 that. It will create a ADODB engine).
 Remember RAD? It would be fast, easy and fun ;-)
 
 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution
-- 
Bien cordialement, Pierre Sahores

100, rue de Paris
F - 77140 Nemours

GSM:   +33 6 03 95 77 70
Pro:   +33 1 41 60 52 68
Dom:   +33 1 64 45 05 33
Fax:   +33 1 64 45 05 33

Inspection acadmique de Seine-Saint-Denis
Applications et SGBD ACID SQL (WEB et PGI)
Penser et produire delta de rentabilit
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


re: Drivers for Firebird/Interbase (Was Re: JDBC instead of ODBC)

2003-10-05 Thread Bernard Devlin
Nevertheless, if there was only one external database for which Runrev
provided native Rev drivers, it should be Interbase/Firebird.

So go file an enhancement request

Tuviah,

If I'm not mistaken, I did this about 12 months ago.  I remember Geoff 
Canyon writing to me for further details. 

Where does one view (and vote for) these feature requests?  I had a look 
on the Runrev website, and all I found was a list of 9 top feature 
requests, most of which were marked now available in 2.0 
(http://www.runrev.com/Revolution1/developercentral/featurerequests.html)

Bernard



___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread Júlio César Ködel
'Cos is beaultiful??? =P

For Windows XP, it's not a problem, since there is Aqua-like styles for
Windows XP wich make Windows works as Aqua does. But, for other Windows
(like 95 and 98), the user is REALLY bored of that non-gracefull gray
window, every day, year by year...
It's just a cosmetic trick to bring more hapiness to the user, just this ;-)
(Besides: someone here knows of a Media Player that works in a default
window, with default buttons and all those gray stuffs? No. Almost all
media players are skinned to have a better appearence. Sometimes it's good
to change the user experience within your application).

Windows XP uses Luna interface, MacOS uses Platinum, MacOSX use Aqua, Linux
use, well, I don't know what the hell is that, he he he... It's just
graphics... nothing more.

And I'm not asking nothing about Aqua... Just Platinum =)

- Original Message - 
From: Ken Norris [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, October 05, 2003 5:00 PM
Subject: Re: Some doubts 'bout Revolution


 Hi Richard,

  Date: Sun, 05 Oct 2003 11:33:13 -0700
  Subject: Re: Some doubts 'bout Revolution
  From: Richard Gaskin [EMAIL PROTECTED]

  One of the
  downsides to implementing Aqua emulation would be to encourage a false
  confidence for things that might look good buy do not work properly once
  actually deployed there.
 --
 Dumb question from someone who hasn't followed all of this. Why would
 someone want to emulate Mac OSX Aqua on a Windoze platform to begin with?

 Ken N.

 ___
 use-revolution mailing list
 [EMAIL PROTECTED]
 http://lists.runrev.com/mailman/listinfo/use-revolution

 Esta mensagem foi verificada pelo E-mail Protegido Terra.
 Scan engine: VirusScan / Atualizado em 01/10/2003 / Versão: 1.4.0
 Proteja o seu e-mail Terra: http://www.emailprotegido.terra.com.br/


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Pardon my French...

2003-10-05 Thread Ryno Swart
Quand ça marche, ne touche à rien ;-
Or: Don't fix it if it ain't broke...

Thanks for a very nice new French expression.
Ryno.
http://artistvision.org ...a work in progress...
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Newcard: a curious bug!?

2003-10-05 Thread Klaus Major
Hi Dom,

Klaus Major [EMAIL PROTECTED] wrote:

C'est: Never touch a running system! ;-)
I thought to a more argotic one, such as
If ain't broke, don't touch it
?
Sorry, looks like i'm too computer-centric ;-)

Ciao ragazzo...

Klaus Major
[EMAIL PROTECTED]
www.major-k.de
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


re: Drivers for Firebird/Interbase (Was Re: JDBC instead of ODBC)

2003-10-05 Thread Jeanne A. E. DeVoto
At 9:11 PM +0100 10/4/2003, Bernard Devlin wrote:
Where does one view (and vote for) these feature requests?
In Bugzilla: 
http://www.runrev.com/revolution/developers/bugdatabase/. To file 
an enhancement request, click Submit a new bug report or enhancement 
request, and set the Severity rating to Enhancement.

(You'll need to sign up for a bugzilla account first - just click 
Create a new account.)
--
Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
Runtime Revolution - User-Centric Development Tools
~~~ Check our web site for new Revolution editions  special offers ~~~
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Cladding C Libraries for Rev use?

2003-10-05 Thread Peter Reid
My older son is at a university that provide a range of functions for 
programming in the form of C libraries.  Can anyone tell me what's 
involved in creating some suitable cladding around such libraries so 
the functions can be called from Rev?

My son has his own licence for Rev 2.0.3, so any solutions would need 
to work for that version of Rev if possible.

Thanks.

Peter
--
Peter Reid
Reid-IT Limited, Loughborough, Leics., UK
Tel: +44 (0)1509 268843 Fax: +44 (0)8700 527576
E-mail: [EMAIL PROTECTED]
Web: http://www.reidit.co.uk
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Some doubts 'bout Revolution

2003-10-05 Thread Monte Goulding
 Are there any plans for Rev to simulate the Aqua appearance in the same
 way? It would be nice for those of us who develop apps on Windows that
 will be used on OS X to be able to preview the look and feel.

Ummm... no offence Roger but wouldn't it be nice to get even an emulated XP
look and feel before RunRev goes trying to emulate OS X? If we had full XP
theme support you could get OS X look anyway. Many of us have been
frustrated by the focus on OS X look and feel while a far more popular OS is
2 years out of date. I'm reasonably sure that XP theme support is just
around the corner. I'm also reasonably sure that we won't ever get OS X
emulation seeing as by the time it was emulated Apple would have changed it
;-)

Cheers

Monte

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


getting revXML to work in a standalone - how?

2003-10-05 Thread Terry Judd
Hmm - what am I missing? I included the XML script library in the 
distribution builder prefs but there's no XML action in my built 
application (OSX Rev 2.1). Admittedly this is the first time I've built 
an app with the XML library included (actually come to think of it this 
is the first time I've actually used the distribution builder). 
Everything works fine in the development environment.

Any clues?

Cheers,

Terry...

Dr Terry Judd
Lecturer in Educational Technology (Design)
Biomedical Multimedia Unit
Faculty of Medicine, Dentistry  Health Sciences
The University of Melbourne
Parkville VIC 3052
AUSTRALIA
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


re: Drivers for Firebird/Interbase (Was Re: JDBC instead of ODBC)

2003-10-05 Thread Bernard Devlin
Where does one view (and vote for) these feature requests?

In Bugzilla: 
http://www.runrev.com/revolution/developers/bugdatabase/. To file 
an enhancement request, click Submit a new bug report or enhancement 
request, and set the Severity rating to Enhancement.

(You'll need to sign up for a bugzilla account first - just click 
Create a new account.)

Kinda weird, but thanks Jeanne :-)  I wouldn't have thought to submit an 
enhancement request through a bug-reporting facility.  And I must have 
missed the advisory that non-Enterprise users could submit bugs (I 
remember emailing Heather last year that it was a bad idea to not 
encourage bug-reports from all users).

Regards,
Bernard

Rooting for Revolution!
(but www.runrev.com really needs an overhaul)



___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Revolution names on the dock (OS X)

2003-10-05 Thread Dar Scott
I sometimes keep a version back and a beta ahead on the dock.  But they 
all have the name Revolution.  Is there a way to set the version # in 
the name that shows up.

Dar Scott

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Revolution names on the dock (OS X)

2003-10-05 Thread Monte Goulding

 I sometimes keep a version back and a beta ahead on the dock.  But they
 all have the name Revolution.  Is there a way to set the version # in
 the name that shows up.

Change the name of the .app bundle to Revolution 2.1.app then drag it to the
dock ;-)

Cheers

Monte

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Revolution names on the dock (OS X)

2003-10-05 Thread Dar Scott
On Sunday, October 5, 2003, at 06:35 PM, Monte Goulding wrote:

I sometimes keep a version back and a beta ahead on the dock.  But 
they
all have the name Revolution.  Is there a way to set the version # in
the name that shows up.
Change the name of the .app bundle to Revolution 2.1.app then drag it 
to the
dock ;-)
Couldn't you come with something more complicated?

Dar Scott

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: Revolution names on the dock (OS X)

2003-10-05 Thread Monte Goulding

  I sometimes keep a version back and a beta ahead on the dock.  But 
  they
  all have the name Revolution.  Is there a way to set the version # in
  the name that shows up.
 
  Change the name of the .app bundle to Revolution 2.1.app then drag it 
  to the
  dock ;-)
 
 Couldn't you come with something more complicated?

I tried but I couldn't understand it so I came up with this ;-)

Cheers

monte
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


RE: use-revolution digest, Vol 1 #1997 - 17 msgs

2003-10-05 Thread Michael Young
 I sometimes keep a version back and a beta ahead on the dock.  But they
 all have the name Revolution.  Is there a way to set the version # in
 the name that shows up.

 Dar Scott

When faced with the same problem, I have created aliases to each program
version I wanted. I then renamed the aliases with version number names. I
then put the renamed aliases on the OS X dock. It worked for me. :-)

Michael
[EMAIL PROTECTED]


___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


newTool

2003-10-05 Thread [EMAIL PROTECTED]
I can not let work the newTool message.

if i create a new stack with the script
on newTool nTool
  beep
  put nTool
end newTool
nothing happens when i switch from browse tool to pointer tool.
What am i missing ?
--**

I can also not let work the saveStackRequest and closeStackRequest 
messages.
I reported it to bugzilla and was answered they where trapped by the 
frontscripts.
So i know why they dont work but i still dont know how i can let them work 
:-(
Any suggestion ?

Claude
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Cladding C Libraries for Rev use?

2003-10-05 Thread Alex Rice
On Sunday, October 5, 2003, at 04:07  PM, Peter Reid wrote:

My older son is at a university that provide a range of functions for 
programming in the form of C libraries.  Can anyone tell me what's 
involved in creating some suitable cladding around such libraries so 
the functions can be called from Rev?

My son has his own licence for Rev 2.0.3, so any solutions would need 
to work for that version of Rev if possible.

Thanks.
Peter, you can email [EMAIL PROTECTED] and ask for the Externals SDK, 
or look for it on metacard.com.

An external is C library (.dll/.bundle/.so) that the Rev engine loads 
and defines new transcript handlers and functions that are implemented 
in C or whatever language.

The Externals SDK consists of a couple of example projects, but no 
documentation. Docs are expected to be forthcoming.

Alex Rice [EMAIL PROTECTED] | Mindlube Software | http://mindlube.com

what a waste of thumbs that are opposable
to make machines that are disposable  -Ani DiFranco
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread [EMAIL PROTECTED]
i'd rather have my buttons looking native in winXP ;-)

-Original Message-
  Set the lookAndFeel to MacOSX -- would be a nice Christmas present

___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Some doubts 'bout Revolution

2003-10-05 Thread Alex Rice
On Sunday, October 5, 2003, at 05:07  PM, Monte Goulding wrote:

Ummm... no offence Roger but wouldn't it be nice to get even an 
emulated XP
look and feel before RunRev goes trying to emulate OS X? If we had 
full XP
theme support you could get OS X look anyway. Many of us have been
frustrated by the focus on OS X look and feel while a far more popular 
OS is
2 years out of date. I'm reasonably sure that XP theme support is just
around the corner.
I hope so. It's like swimming upstream I guess. They are planning a new 
style UI again http://news.com.com/2100-1016-5083491.html

Avalon is the graphics and media plumbing within Longhorn that 
software developers use to build applications. Aero is the company's 
name for the actual graphical user interface (GUI) in Longhorn that the 
end user sees. 

Also keep in mind that the Aqua/Appearance Manager look and feel is 
the only one currently offered by Rev that uses native widgets. All the 
others are emulated. I agree with what Richard said: it would be 
difficult or impossible to emulate. All those drop shadows and 
gradients and animated buttons. Too much.

Alex Rice [EMAIL PROTECTED] | Mindlube Software | http://mindlube.com

what a waste of thumbs that are opposable
to make machines that are disposable  -Ani DiFranco
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


re: Drivers for Firebird/Interbase (Was Re: JDBC instead of ODBC)

2003-10-05 Thread Jeanne A. E. DeVoto
At 1:07 AM +0100 10/5/2003, Bernard Devlin wrote:
Kinda weird, but thanks Jeanne :-)  I wouldn't have thought to submit an
enhancement request through a bug-reporting facility.  And I must have
missed the advisory that non-Enterprise users could submit bugs (I
remember emailing Heather last year that it was a bad idea to not
encourage bug-reports from all users).
I think Heather posted about it in June sometime. (You might have 
missed the message - this is a pretty high-traffic list)

We may separate bugfixes and enhancement requests at some point, but 
for right now they're in a convenient one-stop-shopping location. 
(And when I've done QA, often the two have been in the same database 
- it can be handy when there's a borderline issue that might be 
considered either a bug or a feature request, depending on how you 
squint.)


(but www.runrev.com really needs an overhaul)
I know. Patience. ;-)
--
Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
Runtime Revolution - User-Centric Development Tools
~~~ Check our web site for new Revolution editions  special offers ~~~
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Cladding C Libraries for Rev use?

2003-10-05 Thread Jeanne A. E. DeVoto
At 9:37 PM -0600 10/5/2003, Alex Rice wrote:
Peter, you can email [EMAIL PROTECTED] and ask for the Externals 
SDK, or look for it on metacard.com.


You can also download it from 
http://www.runrev.com/revolution/downloads/distributions/sdk/.
--
Jeanne DeVoto ~ [EMAIL PROTECTED] ~ http://www.runrev.com/
Runtime Revolution - User-Centric Development Tools
~~~ Check our web site for new Revolution editions  special offers ~~~
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


revCopyFile broken on OS X?

2003-10-05 Thread Sannyasin Sivakatirswami
We are experiencing some corruption on files worked directly over the 
LAN on our OS X server (InDesign) and Adobe's recommendation is to 
always copy the files to the local hard drive and then work on the 
local file, then put it back. It works, suddenty ID2 file corruption is 
gone... that's the good news.

But, this creates challenges for a collaborative work group with many 
editors and writers... so, I am trying to create a drag and drop RCS 
(Revision Control System), which copies files to the local hard drive, 
increments a galley number in the file name, moves old galleys on the 
server to a back up folder etc... all very easy thanks to Rev... in 
fact we have a number of other applications running in Rev that we use 
every day that perform all these same operations in one for or another, 
but they are all raw ascii, xml, html files this is different...

the problem is

revCopyFile

is not behaving as documented on OS X... purportedly it should:

... the revCopyFile command provides certain advantages. It copies 
file attributes (such as file type) and Mac OS resource forks along 
with the file. It also does not require reading the entire file into 
memory, so even extremely large files can be copied.

But, we are not seeing this. An InDesign file (or any file for that 
matter) copied from the server which has a visible ID2 icon in the 
finder, using:

  revCopyFile (gRemotePath gRemoteFile),fld localfolder

arrives on the local hard drive as nondescript, no icon and no 
application binding... looks like the resource fork is not making it 
across the copy... An attempt to boot the file by double-clicking in 
the finder invokes the OS user input dialog,:

There is no specified application to open document whatever 
document.ind
[btns:] Choose Application  OK

Presumably, since revCopyfile invokes onboard Applescript in the 
background, one might assume its not Rev's fault but AppleScript's 
fault.. but before digging into this any further I thought I might just 
ask here... This is pretty much a show stopper for the little RCS 
widget I am trying to create, which otherwise took about 30 minutes to 
put together and will be a dream machine for the team.

Retaining the application binding is mandatory and adding the .ind 
extension doesn't help...

Any thoughts? (including any thoughts on RCS if you have already been 
there, done that.)

Sannyasin Sivakatirswami
Himalayan Academy Publications
at Kauai's Hindu Monastery
[EMAIL PROTECTED]
www.HimalayanAcademy.com,
www.HinduismToday.com
www.Gurudeva.org
www.Hindu.org
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Sheet command in MAc OS X

2003-10-05 Thread Jan Schenkel
--- Yves COPPE [EMAIL PROTECTED] wrote:
 Hi,
 
 
 I've  tried something  in Mac OSX but doesn't luck
 
 
 Main stack A, substack B and C
 
 from stack A, a btn with
 
 sheet stack B in stack A
 
 
 from stack B, a btn with
 
 sheet stack C in stack B
 
 the last command doesn't work : the stack C is
 open but without the 
 sheet effect...
 
 
 Bien amicalement.
 Yves COPPE
 

Hi Yves,

If you're trying to display a sheet within another
sheet : well it just doesn't work that way ; it will
automatically be displayed as a modal dialog box.

Sorry to disappoint you,

Jan Schenkel.

__
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
http://shopping.yahoo.com
___
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution