Wow, I did not know you could do this...now, if I could get it to display at the top of BROWSE forms....just thinking aloud... Javier,
Javier Valencia, PE President Valencia Technology Group, L.L.C. 14315 S. Twilight Ln, Suite #14 Olathe, Kansas 66062-4578 Office (913)829-0888 Fax (913)649-2904 Cell (913)915-3137 ================================================ Attention: The information contained in this message and or attachments is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from all system and destroy all copies. ====================================================== -----Original Message----- From: [email protected] [mailto:[EMAIL PROTECTED] Behalf Of A. Razzak Memon Sent: Wednesday, February 23, 2005 6:30 PM To: RBG7-L Mailing List Subject: [RBG7-L] - RE: Changing the RBASE caption At 05:25 PM 2/23/2005, Javier Valencia wrote: >John: >Just run this snippet of code in your start up file: > >SET VAR vmydir = ('''' + 'Dir: ' + (CVAL('CURRDIR'))+ '''') >PROPERTY APPLICATION TITLE &vmydir >RETURN > >You can of course change the caption to be anything you want, >if you just want to use the directory name then use: > >SET VAR vmydir = (CVAL('CURRDIR')) >PROPERTY APPLICATION TITLE &vmydir >RETURN > >Every time that you start R:Base from a different directory, >each instance will display the starting directory name on the >caption at the bottom of the screen. I hope this is what you >were looking for... At 05:35 PM 2/23/2005, John Docherty wrote: >Javier, > >Thanks for your reply - I am using that property already >which tells me the name on the taskbar, but that does not get >reflected in the caption which appears on the RBase 'window'. John and Javier, Try this: SET VAR vMyCurrentDir TEXT = NULL SET VAR vMyCurrentDir = (CVAL('CURRDIR')) SET CAPTION .vMyCurrentDir RETURN That should give you exactly what you are looking for. And that is your tip of the day! Very Best R:egards, Razzak.
