I should add an important caveat. In the Web Browsers
OnNavigationCompleteCustomEEP I put the following code:
pause for 1 using 'Navigation Complete'
PROPERTY id_varedit set_focus 'true'
RETURN
It appears to be a timing issue with the Navigation Complete being reported
to RBase appropriately. With the pause for 1 statement, which requires no
user intervention, sufficient time is allowed for the focus to go to the var
edit control.
----- Original Message -----
From: "Michael J. Sinclair" <[email protected]>
To: "RBASE-L Mailing List" <[email protected]>
Sent: Sunday, April 18, 2010 3:08 PM
Subject: [RBASE-L] - Which is the correct DIR command from within an EEP?
Hi all,
From the R>, all of these work the same...
dir c:\documents
dir c:\documents\
dir c:\documents\*.*
But, from within an EEP, I found at least one instance that capturing the
output of a DIR command would not work if I used the *.*., for example...
erase dir.txt
output dir.txt
dir c:\documents\*.*
output screen
did not work. Replacing the dir c:\documents\*.* with c:\documents seemed to
work.
Which is the preferred method? Should it matter?
Mike