Re: group syntax question

2005-11-22 Thread Jim Ault
I suppose you could set a custom property of the group and test that . Assuming the hilite is only changed by a user click, the mouseup would be the only place to do the maintenance of the property, then you could test it later. Does this change on each card, or could this even be a stack custom

Re: What I understand 'Open Source' to mean

2005-11-22 Thread David Bovill
On 21 Nov 2005, at 21:38, Richard Gaskin wrote: But in terms of contracting with governments which require open source software, I think that leaves us out even if our part of a solution is open source since we, like Flash, Director, Toolbook, and xCode developers, rely on proprietary

Re: Living together BUT not married: RR/MC and Linux

2005-11-22 Thread David Bovill
On 21 Nov 2005, at 21:50, Richard Gaskin wrote: But the bottom line for us Rev developers is that if a customer requires a truly open source solution then the source must be open -- that's not the case with Rev, Windows, or OS X, so it rules out solutions dependent on any of those

Re: SHA-1 algorithm in xTalk?

2005-11-22 Thread David Bovill
On 21 Nov 2005, at 21:58, Alessandro Manotti wrote: On 11/21/05, David Bovill [EMAIL PROTECTED] wrote: The SSL libraries that RunRev uses should be able to do this - and I would have thought considerably faster than a native and possibly less secure Transcript implementation - no? What do

Re: Object Orientation in arrays

2005-11-22 Thread David Bovill
On 22 Nov 2005, at 08:53, [EMAIL PROTECTED] wrote: I know how to handle these, that's not the problem. Im wondering if there isn't a better way to handle the arrays and/or which is easier to manage... Not with arrays - I don't think they are up to handling the complex nesting required.

Re: SHA-1 algorithm in xTalk?

2005-11-22 Thread Wouter
On 21 Nov 2005, at 17:40, David Bovill wrote: The SSL libraries that RunRev uses should be able to do this - and I would have thought considerably faster than a native and possibly less secure Transcript implementation - no? Which is easy to do with shell() and openssl. Shao Sean will

Re: SHA-1 algorithm in xTalk?

2005-11-22 Thread David Bovill
Thanks! On 22 Nov 2005, at 12:22, Wouter wrote: Which is easy to do with shell() and openssl. SHA-1 has been compromised too. http://www.schneier.com/blog/archives/2005/02/sha1_broken.html http://www.rsasecurity.com/rsalabs/node.asp?id=2927 etc. Bummer isn't it :)

Re: Object Orientation in arrays

2005-11-22 Thread xavier . bury
David, The thing with XUL or the basis for this question is to just translate XML type data or streams of data to memory for faster management I also tried to work with xml in a recent project and as soon as i had 500 objects in this text variable things started slowing down

Re: Object Orientation in arrays

2005-11-22 Thread David Bovill
On 22 Nov 2005, at 12:40, [EMAIL PROTECTED] wrote: David, The thing with XUL or the basis for this question is to just translate XML type data or streams of data to memory for faster management I also tried to work with xml in a recent project and as soon as i had 500 objects in

Speaking of opensource

2005-11-22 Thread xavier . bury
Two articles i saw today: one in slashdot: Paris going opensource http://politics.slashdot.org/politics/05/11/21/180220.shtml?tid=185tid=219 one in the register: Vienna too... http://www.theregister.co.uk/2005/11/22/vienna_goes_open/ My question is this: Sooner or later governments will do so

Re: Living together BUT not married: RR/MC and Linux

2005-11-22 Thread David Bovill
On 21 Nov 2005, at 22:03, Mathewson wrote: I believe that it would, ultimately, be in RR's interest to release a FREE (as in totally free) version of RR for Linux - possibly modified from current Linux RR versions so that it cannot be used to manufacture standalones for commercial platforms.

Re: Object Orientation in arrays

2005-11-22 Thread Ruslan Zasukhin
On 11/22/05 2:08 PM, David Bovill [EMAIL PROTECTED] wrote: Hi David, BTW, i did try xml into an array, and the problem is still parsing xml... Parsing Arrays is much more efficient... Yes - would be a problem for large documents - but XUL and web services are not that large? For anything

Re: [slightly OT] using sudo -S via shell

2005-11-22 Thread Ton Kuypers
Couldn't get it to work, but found a much better solution on http:// developer.apple.com/technotes/tn2002/tn2065.html Now I just create an AppleScript and run it, works like a charm :-) And with a little extra added to the functionality as a bonus: Note: Using sudo(8) with with administrator

Re: Object Orientation in arrays - XML

2005-11-22 Thread Bill
I have found the same thing. It would be nice if there were some routine that translated XML schema but so far I have found none and write my XML directly. On 11/22/05 7:16 AM, David Bovill [EMAIL PROTECTED] wrote: On 22 Nov 2005, at 08:53, [EMAIL PROTECTED] wrote: I know how to handle

Re: Object Orientation in arrays

2005-11-22 Thread xavier . bury
Ruslan that's very interesting... You are kind of confirming my need for multiple tables - a sort of linked list approach along with relational lookups/indexes. The thing is i dont want to convert stream/ xml file to be parsed to memory to db to memory to xml file or other formats... This

Re: Object Orientation in arrays - XML

2005-11-22 Thread xavier . bury
Bill, [EMAIL PROTECTED] wrote on 22/11/2005 14:17:23: I have found the same thing. It would be nice if there were some routine that translated XML schema but so far I have found none and write my XML directly. What do you want to translate your schema to? X

Re: Object Orientation in arrays - XML

2005-11-22 Thread Bill
I want to translate a microsft infopath XML schema to create a SQLite database and later use that database to generate the XML that the infopath schema used to. On 11/22/05 9:29 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Bill, [EMAIL PROTECTED] wrote on 22/11/2005 14:17:23: I have

Re: Filter Command

2005-11-22 Thread Wouter
On 21 Nov 2005, at 20:29, Gregory Lypny wrote: -snip- This seems to works fine for all my companies except for TSE 100 Index Participation Fund Units. I'm getting a lot of hits that contain TSE (Toronto Stock Exchange) in the headline but not the rest of the name. This does not happen

Re: Object Orientation in arrays

2005-11-22 Thread David Bovill
I thought this would be your baby :) On 22 Nov 2005, at 13:49, Ruslan Zasukhin wrote: Hi David, Do you talk about mapping of XML document into database ? Yes. Any nested level of XML can be simulated on self-recursive table. I just love recursion :) Generally speaking any XML document

Re: Object Orientation in arrays - XML

2005-11-22 Thread xavier . bury
Bill, I haven't worked extensively with xml or sql - though the later for my website and the former for my TAOO arrays in arrays solution or parseable handler parameters... But from what i saw on the net, you have to define the data models (schema) you want translated. From there (and i see

Re: [slightly OT] using sudo -S via shell

2005-11-22 Thread David Bovill
On 22 Nov 2005, at 13:58, Ton Kuypers wrote: Couldn't get it to work, but found a much better solution on http://developer.apple.com/technotes/tn2002/tn2065.html; Now I just create an AppleScript and run it, works like a charm :-) Thanks for the pointer! Something like this (not tested):

Re: Object Orientation in arrays - XML

2005-11-22 Thread xavier . bury
just to back my last post, i found this just a minute ago... http://lists.xml.org/archives/xml-dev/200303/msg00806.html I want to translate a microsft infopath XML schema to create a SQLite database and later use that database to generate the XML that the infopath schema used to. cheers

[ANN][EN][FR] Rev Online Picker 1.0

2005-11-22 Thread Eric Chatonet
Paris, Tue, Nov 22, 2005 -- English version - Hello, So Smart Software has the pleasure of announcing the availability of Rev Online Picker 1.0, a sophisticated Rev Online browser to find and display the stack you need. Rev Online Picker works

Re: Object Orientation in arrays

2005-11-22 Thread Ruslan Zasukhin
On 11/22/05 3:27 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Ruslan that's very interesting... You are kind of confirming my need for multiple tables - a sort of linked list approach along with relational lookups/indexes. The thing is i dont want to convert stream/ xml file to be

Re: Object Orientation in arrays

2005-11-22 Thread Ruslan Zasukhin
On 11/22/05 3:55 PM, David Bovill [EMAIL PROTECTED] wrote: Also it is possible to use 2 tables for this, to make things little more clean. Would be great to have an example of this for / with your documentation - it is not an easy concept to grasp without a good example? Easy in fact,

Re: Object Orientation in arrays

2005-11-22 Thread Ruslan Zasukhin
On 11/22/05 3:55 PM, David Bovill [EMAIL PROTECTED] wrote: Hi David, - FYI, we have realize that Valentina with its Object-Relational model is perfect for XML work. This have point one my friend, that is teacher in university. He say that we must add into Valentina support of

Re: Object Orientation in arrays

2005-11-22 Thread xavier . bury
Here's yet another paper on the subject which im sure will interest even Ruslan ;) http://www.cs.wisc.edu/~sekar/application/sekar_intelligence.pdf cheers Xavier [EMAIL PROTECTED] wrote on 22/11/2005 15:30:09: On 11/22/05 3:55 PM, David Bovill [EMAIL PROTECTED] wrote: Hi David,

Re: Object Orientation in arrays

2005-11-22 Thread David Bovill
On 22 Nov 2005, at 15:23, Ruslan Zasukhin wrote: Would be great to have an example of this for / with your documentation - it is not an easy concept to grasp without a good example? Easy in fact, e.g. Something as Single Table Kind{ element, attribute, .. } Name Value

Re: Living together BUT not married: RR/MC and Linux

2005-11-22 Thread rev
Quoting David Bovill [EMAIL PROTECTED]: On 21 Nov 2005, at 22:03, Mathewson wrote: I believe that it would, ultimately, be in RR's interest to release a FREE (as in totally free) version of RR for Linux - possibly modified from current Linux RR versions so that it cannot be used to

Re: Living together BUT not married: RR/MC and Linux

2005-11-22 Thread David Bovill
On 22 Nov 2005, at 16:02, [EMAIL PROTECTED] wrote: xara http://www.xara.com/ ? ___ use-revolution mailing list use-revolution@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: SHA-1 algorithm in xTalk?

2005-11-22 Thread Alessandro Manotti
Great! But I think this solution will raise the problem of security who David was talking about. If everything would be included in self-contained executable, or in RuRev player, maybe the security problem could be solved. On 11/22/05, David Bovill [EMAIL PROTECTED] wrote: Thanks! On 22 Nov

Re: Object Orientation in arrays

2005-11-22 Thread Ruslan Zasukhin
On 11/22/05 4:49 PM, David Bovill [EMAIL PROTECTED] wrote: Would be great to have an example of this for / with your documentation - it is not an easy concept to grasp without a good example? Easy in fact, e.g. Something as Single Table Kind{ element, attribute, .. }

Re: What I understand 'Open Source' to mean

2005-11-22 Thread Rob Cozens
Hi Richmond, I would like to find out what the Princes of the Church understand by 'Open Source'; because until a consensus is established as to what 'Open Source' means the present discussion is probably a bit pointless, with all parties entrenched in their respective corners baring their

Re: Difference between Step over and Run

2005-11-22 Thread Jim Hurley
Jim Hurley wrote: I have noticed in the debugger that there is quite a difference in time of execution between Step over and Run I think this is because of the traceDelay. When you are debugging, every step includes a pause equivalent to the traceDelay setting. When you run,

Why I equate RR/MC with LEGO - FREE, 'FREE' and UNFREE

2005-11-22 Thread Mathewson
In my house I have about a cubic metre of LEGO. This consists of a nucleus of LEGO pieces that were given to me for Christmas 1965, bits bought with my pocket money as a child, a whole lot I bought from a shop going out of business when I was 22, some given to my children, and some I found in a

Re: Speaking of opensource

2005-11-22 Thread Stephen Barncard
Two articles i saw today: one in slashdot: Paris going opensource http://politics.slashdot.org/politics/05/11/21/180220.shtml?tid=185tid=219 And that link goes to another link - and deep inside the article a chestnut: http://www.computerworld.com.au/index.php/id;1941298570;fp;16;fpid;0 This

Re: Why I equate RR/MC with LEGO - FREE, 'FREE' and UNFREE

2005-11-22 Thread Thomas McGrath III
Hey, I love LEGOs and am saving my money to buy the computerized version then I can start to see what Revolution can do 'WITH' LEGOs. Myabe someone will give me them for the Holidays Tom On Nov 22, 2005, at 12:04 PM, Mathewson wrote: NOW the big question is, surely, how like LEGO

Re: Why I equate RR/MC with LEGO - FREE, 'FREE' and UNFREE

2005-11-22 Thread Ken Ray
This is getting a bit black-and-white again, and what is needed is a MIDDLE WAY - a licence (ideally authored under the supervision and approval of RR) that RR/MC authors can use when they chose to release their end products made with licenced versions of RR/MC into the FREE software arena.

[OT] LEGO - for those who missed the point

2005-11-22 Thread Mathewson
You don't need to save up for a LEGO program as the LEGO company provide a FREEly downloadable one: http://www.lego.com/eng/create/digitaldesigner/ unfortunately it is only available for Mac OS X and Windows (which LEGO ignorantly describes as MAC and PC respectively, forgetting you can run

Re: Why I equate RR/MC with LEGO - FREE, 'FREE' and UNFREE

2005-11-22 Thread Dave LeYanna
May there be some confusion here caused by equating free software with open source software that is under a license that requires a source to be distributed as well as the .exe? (And that there is some kind of a requirement that source to the runtimes be released as well or in some cases the

Re: [OT] Security Goes Visual

2005-11-22 Thread Dan Shafer
At least one of these I've seen doesn't actually require the user to remember what picture/phrase was chosen except on it being shown. IOW, I choose a picture of a baseball and the word homer as my confirmations. When I log in with my usual user ID and password, the server presents those

Re: Spelling out the license - some geometry handlers

2005-11-22 Thread Chipp Walters
David, I suspect one could interpret your obsession with licensing, as also an obsession with enforcing said licensing. I suggest you post your 'protected' code on your website and provide a link to it. Not only is it easier to enforce licensing practice from your website, but it also keeps

Re: [OT] Security Goes Visual

2005-11-22 Thread Scott Rossi
Recently,Dan Shafer wrote: At least one of these I've seen doesn't actually require the user to remember what picture/phrase was chosen except on it being shown. IOW, I choose a picture of a baseball and the word homer as my confirmations. When I log in with my usual user ID and password, the

Spelling out the license - protesting too much

2005-11-22 Thread Mathewson
Framkly software should be either FREE (and any proprietary elements within FREE software items should be 'bound up' in such a way that to reverse engineer them would take such a long time that it would be counterproductive) or UNFREE (as in, totally bound up in legla clauses cooked up by highly

Re: group syntax question

2005-11-22 Thread Mark Wieder
Ken- Monday, November 21, 2005, 11:58:51 PM, you wrote: Can you use the *name* of the button instead of its label? If you can, it would be: Thanks. That's close enough for me. I'm usually pretty good about sticking to naming conventions, so as long as I'm careful about this I wouldn't have to

Re: Living together BUT not married: RR/MC and Linux

2005-11-22 Thread Marielle Lange
On 21 Nov 2005, at 21:38, Richard Gaskin wrote: But in terms of contracting with governments which require open source software, I think that leaves us out even if our part of a solution is open source since we, like Flash, Director, Toolbook, and xCode developers, rely on proprietary

Char position of token...

2005-11-22 Thread Gilberto Cuba
Hi, How I can know the position of char of the determined token of the string? Example: put a*sin(x+b) into temp put token 5 of temp -- that return x put char 7 of temp -- that return x ... now, well ... put token 3 of temp -- that return sin put char 3 to 5 of temp -- that return sin

Re: Spelling out the license - protesting too much

2005-11-22 Thread Chipp Walters
Richmond, I agree with you. Mathewson wrote: Framkly software should be either FREE (and any proprietary elements within FREE software items should be 'bound up' in such a way that to reverse engineer them would take such a long time that it would be counterproductive) or UNFREE (as in,

Re: Char position of token...

2005-11-22 Thread Ken Ray
On 11/22/05 3:23 PM, Gilberto Cuba [EMAIL PROTECTED] wrote: Hi, then, i need any function that return the follow values: token 5 of temp --- char 7 of temp token 3 of temp --- char 3 to 5 of temp Here you go, Gilbert: function stsTokenCharChunk pTokenNum,pData put the number of

Re: Difference between Step over and Run

2005-11-22 Thread J. Landman Gay
Jim Hurley wrote: To understand my point you need to run the following script: on mouseUp put into field 1 lock screen --Try with and without this line. doWindowWork --With a break point maker here beep end mouseUp on doWindowWork put the ticks into tStartTime put 1 into field 1

PostgreSQL on linux

2005-11-22 Thread Allen Morgan
Hi, My first post: I've tried my best to get the Linux engine to successfully hit PostgreSQL. I put a libpq.so.2 into play as described back on Mar 1 to workaround the missing lib error, but get hello world found dbPostgreSQL.so symbols 1082168400,1082168272,1082168368 called

Re: Char position of token...

2005-11-22 Thread Jeanne A. E. DeVoto
At 4:23 PM -0500 11/22/2005, Gilberto Cuba wrote: How I can know the position of char of the determined token of the string? Example: put a*sin(x+b) into temp put token 5 of temp -- that return x put char 7 of temp -- that return x ... now, well ... put token 3 of temp -- that return sin

Re: [OT] Security Goes Visual

2005-11-22 Thread Dan Shafer
Scott... Indeed. And if we decided to standardize on, say, a photo of the user as the standard, then it would become easier and more profitable for the bad guys to figure out how to pirate that data and thus defeat its intent. There are no easy solutions as far as I can see. On Nov 22,

Question on Radio Buttons

2005-11-22 Thread Fred Giannetto
Hello, I am trying to store the response from a radio button group in a global variable. I have went throught the board and every remedy I try does not return a value. I have one multiple choice group and one button that I am using to try to answer the result (so I can see if it is

AUTORUN

2005-11-22 Thread Preston Shea
I have a standalone that I want to distribute on CD. What do I have to do to get the program to begin automatically when the CD is inserted? What is different about distributing on DVD? Thanks ___ use-revolution mailing list

Netware

2005-11-22 Thread Thomas McCarthy
My program saves student's usage data in a stack (which also serves to display/evaluate it). Some teachers wanted to have this info available from anywhere. My original solution (worked on my home machine) was to store the data stack on a web server and ftp it down to the local machine to

Re: AUTORUN

2005-11-22 Thread Andre Garzia
On Nov 22, 2005, at 9:22 PM, Preston Shea wrote: I have a standalone that I want to distribute on CD. What do I have to do to get the program to begin automatically when the CD is inserted? What is different about distributing on DVD? Thanks Preston, The only OS supporting autorun right

Mp3 recording stack available

2005-11-22 Thread Thomas McCarthy
I've put my mp3 recording rev stack on my site for download. It's the file titled, Mp3Recording_stack.zip http://homepage.mac.com/speakup/BasicChristian/FileSharing17.html It contains everything you need, including the LAME encoders for both Windows and Mac. [I should probably include a GNU

revSaveAsStandalone Error

2005-11-22 Thread Gregg
Anyone seen this error? Any clues about getting my stack to build? There was an error executing a script in stack revSaveAsStandalone. No more informaiton is available because the stack is password protected. Here's a screenshot of the error:

Re: Question on Radio Buttons

2005-11-22 Thread Phil Davis
Hi Fred - If you just want to put the into the global, try this: on mouseUp -- in the radio button group global gQuestion1 put the hilitedButtonName of me into gQuestion1 end mouseUp Then your original 'button script' below should work fine. If you want to score each answer as you go,

Re: revSaveAsStandalone Error

2005-11-22 Thread Sarah Reichelt
On 11/23/05, Gregg [EMAIL PROTECTED] wrote: Anyone seen this error? Any clues about getting my stack to build? There was an error executing a script in stack revSaveAsStandalone. No more informaiton is available because the stack is password protected. The usual cause of

Re: Char position of token...

2005-11-22 Thread Ken Ray
On 11/22/05 3:48 PM, Jeanne A. E. DeVoto [EMAIL PROTECTED] wrote: Try something like this: put offset(token 5 of temp,temp) -- gives position of first char of token 5 put offset(token 6 of temp,temp) - 1 -- gives position of last char of token 5 Unfortunately this won't work for

Re: Spelling out the license - protesting too much

2005-11-22 Thread Sean Shao
You want free without any restrictions, that's what Public Domain is for ^_^ _ Express yourself instantly with MSN Messenger! Download today - it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/

Re: Spelling out the license - protesting too much

2005-11-22 Thread Kay C Lan
Mathewson wrote: FREE software shouldn't need any licenses - Creative Commons, GNU, Rampantly Oversexed Wrathog, or what ever. FREE means FREE. So those of us interested in producing FREE software should get on and produce it; and include a nice little READ ME document that says

Re: Object Orientation in arrays

2005-11-22 Thread Kay C Lan
Xavier pondered: The issues here is that either we have one big array with LOTs of keys or different arrays to parse each (less keys, but more loops )... Any ideas on how to make big multidimensional arrays easier to handle? I'm out of my league here but as a fairly 'basic' thinker I tend

Polling Search Engines

2005-11-22 Thread Marty Knapp
Is it possible from within Rev to poll search engines for data? I do a lot of keyword research and would like to automate getting the first page of search results along with the Google Page Rank and the number of links (stuff you can get from the Google tool bar). I know (and use) various

Re: Polling Search Engines

2005-11-22 Thread Richard Gaskin
Marty Knapp wrote: Is it possible from within Rev to poll search engines for data? Possible? Yes. Allowable in Google's Terms of Service? Debatable: http://www.google.com/terms_of_service.html No Automated Querying You may not send automated queries of any sort to Google's

Storing encrypted passwords in mySQL

2005-11-22 Thread John Tregea
I am hoping for a suggestion or two on a simple way to encrypt a text string for storage in mySql. I have built a login dialog (on a card) and hide what the user types like this on openfield global gThePass put empty into gThePass pass openfield end openfield on keydown thekey global

Re: Polling Search Engines

2005-11-22 Thread Scott Rossi
Recently,Richard Gaskin wrote: You may not send automated queries of any sort to Google's system without express permission in advance from Google. Note that sending automated queries includes, among other things: * using any software which sends queries to Google to

RE: Object Orientation in arrays

2005-11-22 Thread MisterX
Kay C Lan said Xavier pondered: The issues here is that either we have one big array with LOTs of keys or different arrays to parse each (less keys, but more loops )... Any ideas on how to make big multidimensional arrays easier to handle? I'm out of my league here but as a

RE: Netware

2005-11-22 Thread MisterX
Thomas, Netware's or Window's UNC paths should work in Rev. I use them in a Windows NT and Netware environment and without a problem every day - including open stack, open url or open file and the same with saving... Share and DFS access also works fine. Any trouble of access not working is

Re: Polling Search Engines

2005-11-22 Thread Marty Knapp
Scott Rossi wrote: Recently,Richard Gaskin wrote: You may not send automated queries of any sort to Google's system without express permission in advance from Google. Note that sending automated queries includes, among other things: * using any software which sends queries to

Re: Polling Search Engines

2005-11-22 Thread Richard Gaskin
Scott Rossi wrote: Recently,Richard Gaskin wrote: You may not send automated queries of any sort to Google's system without express permission in advance from Google. Note that sending automated queries includes, among other things: * using any software which sends queries to

Re: Storing encrypted passwords in mySQL

2005-11-22 Thread Trevor DeVore
On Nov 22, 2005, at 8:57 PM, John Tregea wrote: Is there a way of encrypting the plain text string in Rev, (before sending to mySQL) so I can store it in a mySQL table. I don't want the password to be human readable by logging into mySQL and doing a SELECT statement directly. You can use

Re: Storing encrypted passwords in mySQL

2005-11-22 Thread Sarah Reichelt
On 11/23/05, John Tregea [EMAIL PROTECTED] wrote: I am hoping for a suggestion or two on a simple way to encrypt a text string for storage in mySql. I have built a login dialog (on a card) and hide what the user types like this snip That seems to work fine, but the resulting variable

Re: Netware

2005-11-22 Thread Ken Ray
On 11/22/05 11:20 PM, MisterX [EMAIL PROTECTED] wrote: Thomas, Netware's or Window's UNC paths should work in Rev. Actually there is one situation where UNC paths don't work (unless Rev's fixed it - haven't had a chance to check since 2.5.1), and that is when you have a Rev application on an

Re: Storing encrypted passwords in mySQL

2005-11-22 Thread Eric Chatonet
Hi John, You have got excellent answers yet from Trevor and Sarah but you might consider inserting a deleteKey handler to allow the user to correct his entry :-) Best Regards from Paris, Eric Chatonet. Le 23 nov. 05 à 05:57, John Tregea a écrit : I am hoping for a suggestion or two on a

Re: Netware

2005-11-22 Thread xavier . bury
Sorry Ken sure it work, and even in my older version of MC 2.5... put url (file:\\vandyck\c$\boot.ini) cheers Xavier [EMAIL PROTECTED] wrote on 23/11/2005 07:48:50: On 11/22/05 11:20 PM, MisterX [EMAIL PROTECTED] wrote: Thomas, Netware's or Window's UNC paths should work in Rev.

Re: Netware

2005-11-22 Thread Ken Ray
On 11/23/05 1:21 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Sorry Ken sure it work, and even in my older version of MC 2.5... put url (file:\\vandyck\c$\boot.ini) Just to confirm - this is launching an application stored on a network share from a client, and the application itself is

Re: Netware

2005-11-22 Thread xavier . bury
Ken set the directory to a UNC path wont work! But you can use adapted shell calls to list the directory (trivial as dir \\myserver\myshare). Note that C$ is a share (and a hidden one too) so that's not the problem. launching also works fine (though the application is invisible) open