Charles,
Are you saying that the form only works in the form designer?
Does it work by calling it from a full version of 7.6?
If it does work in the full version of 7.6 what version?
Are you using the latest version of the compiler?
Have you included the following files in your directory where your EXE lives?
RB76IO.DLL
RBENGINE76.DLL
RBThemes.DLL
I think that is where I would look.
Jan
----- Original Message -----
From: Charles Parks
To: RBASE-L Mailing List
Sent: Thursday, February 28, 2008 7:05 AM
Subject: [RBASE-L] - Changing Scrolling Region Color
The following changes the color of a scrolling region within the designer
version of R:base but with the compiled version it doesn't seem to respond.
Are there different rules between the R:Compiler and R:Base? What should I be
looking for?
--TableLeave
PROPERTY DBN% VISIBLE 'False'
SET VAR fDBNTable = ('DBN' + .RBTI_FORM_TBLNAME)
SET VAR fProp = ('Property' & .fDBNTable & 'VISIBLE' +
& (CHAR(39)) + 'True' + (CHAR(39)))
&fProp
PROPERTY SCR% COLOR 'DARK GRAY'
SET VAR fScrTable = ('Scr' + .RBTI_FORM_TBLNAME)
SET VAR fProp = ('PROPERTY' & .fScrTable & 'COLOR' +
& (CHAR(39)) + 'Teal' + (CHAR(39)))
&fProp
PROPERTY dbe% parentCOLOR 'True'
PROPERTY dbe% FONT_COLOR 'White'
PROPERTY dbe% framesides ''
PROPERTY dbe% FRAMEVISIBLE 'True'
property dbe% ScrollBars 'ssNone'
SET VAR fdbetable = ('dbe' + .RBTI_FORM_TBLNAME)
SET VAR fProp = ('PROPERTY' & .fdbetable & 'parentCOLOR' +
& (CHAR(39)) + 'False' + (CHAR(39)))
&fProp
SET VAR fProp = ('PROPERTY' & .fdbetable & 'COLOR' +
& (CHAR(39)) + 'White' + (CHAR(39)))
&fProp
SET VAR fProp = ('PROPERTY' & .fdbetable & 'font_COLOR' +
& (CHAR(39)) + 'Black' + (CHAR(39)))
&fProp
SET VAR fProp = ('PROPERTY' & .fdbetable & 'FrameVisible' +
& (CHAR(39)) + 'False' + (CHAR(39)))
&fProp
SET VAR fProp = ('PROPERTY' & .fdbetable & 'ScrollBars' +
& (CHAR(39)) + 'ssVertical' + (CHAR(39)))
&fProp
RETURN