Jan, I meant the full version of V-8. ( 8.0.17.) I tried recompiling the exe and running that and the new exe runs smoother and does the color change correctly. However, now I seem to be getting an error when the application is allowed to timeout with the menu form and the other form opened.
The DLLs seem to be the correct ones based on date\time stamp. ________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Jan Johansen Posted At: Thursday, February 28, 2008 9:40 AM Posted To: RB7-L Conversation: [RBASE-L] - Re: Changing Scrolling Region Color Subject: [RBASE-L] - Re: Changing Scrolling Region Color 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<mailto:[EMAIL PROTECTED]> To: RBASE-L Mailing List<mailto:[email protected]> 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

