At 06:37 PM 4/7/2009, Bob Thompson wrote:
What version are you using. My 7.5 does the same. It does not
show in the application
list in task manager at any time. Perhaps this was modified
in later versions?
Did you know that R:BASE 7.5, released on October 21, 2005, was
supported until September 30, 2008? The end of support and end
of life was officially announced on 09/30/2008.
Currently supported version of R:BASE Turbo V-8 was officially
released on October 19, 2006. Twenty-One major updates have
been made available since then. Next update is scheduled for
04-20-2009.
Currently supported version of R:BASE 7.6 was officially released
on October 21, 2006. Seven major updates have been made available
since then. Next update is scheduled for 04-20-2009.
Having said that, if you wish to compile an R:BASE application,
using the latest versions and updates of R:Compiler 7.6/V-8,
follow the suggested techniques below:
-- Example
01. Create a DAT fie with the following PROPERTY commands.
SET VAR vCompiled TEXT = NULL
GETPROPERTY APPLICATION ISCOMPILED vCompiled
IF vCompiled = 'YES' THEN
-- Display proper message while application is being loaded
PROPERTY LOADWINDOW TITLE 'Loading .. your message here ..'
PROPERTY LOADWINDOW PROGRESS 90
ENDIF
CLEAR VARIABLE vCompiled
-- anything else that you wish to check or connect to database
Use this file with additional code to compile, if necessary.
02. Use the following PROPERTY command as "On Before Start" EEP
for application main menu form.
-- On Before Stat EEP
PROPERTY APPLICATION TITLE 'application title here'
RETURN
-- This title will be displayed in Windows Taskbar
03. Use the following PROPERTY command as "On After Start" EEP
for application main menu form.
-- On After Start EEP
PROPERTY RBASE_FORM DONTSHOWSAVEDIALOG 'TRUE'
PROPERTY RBASE_FORM DONTSHOWDELETEDIALOG 'TRUE'
PROPERTY APPLICATION TASKBARBUTTON 'FALSE'
PROPERTY RBASE_FORM TASKBARBUTTON 'TRUE'
CLEAR VARIABLE vCompiled
SET VAR vCompiled TEXT = NULL
GETPROPERTY APPLICATION ISCOMPILED vCompiled
IF vCompiled = 'YES' THEN
-- Clear application message (step 01)
PROPERTY LOADWINDOW CLOSE 'TRUE'
ENDIF
CLEAR VARIABLE vCompiled
RETURN
04. If implemented and compiled properly, upon execution, using
the Windows Task Manger, you will notice your compiled app
under [Applications].
05. To further understand, take a look at the R:Docs 7.6 (an
R:BASE 7.6 compiled application) to understand the practical
aspects and techniques to compile, distribute and install
R:BASE compiled applications.
Very Best R:egards,
Razzak.
--- RBASE-L
================================================
TO POST A MESSAGE TO ALL MEMBERS:
Send a plain text email to [email protected]
(Don't use any of these words as your Subject:
INTRO, SUBSCRIBE, UNSUBSCRIBE, SEARCH,
REMOVE, SUSPEND, RESUME, DIGEST, RESEND, HELP)
================================================
TO SEE MESSAGE POSTING GUIDELINES:
Send a plain text email to [email protected]
In the message SUBJECT, put just one word: INTRO
================================================
TO UNSUBSCRIBE:
Send a plain text email to [email protected]
In the message SUBJECT, put just one word: UNSUBSCRIBE
================================================
TO SEARCH ARCHIVES:
Send a plain text email to [email protected]
In the message SUBJECT, put just one word: SEARCH-n
(where n is the number of days). In the message body,
place any
text to search for.
================================================