I need these classes transparent
DSAY
SAYREF
SSAY
where I can found these class with modifies ( tranparent say on dialog resources)
Best Regards, Saludos
Falconi Silvio
Falconi Silvio
I need these classes transparent
DSAY
SAYREF
SSAY
where I can found these class with modifies ( tranparent say on dialog resources)
If by SSAY you are referring to the Sensitive Say control by Ramón Avendaño, then you just need to add the TRANSPARENT clause in the REDEFINE.
James
REDEFINE SENSITIVE SAY oSay PROMPT cMail ;
COLOR CLR_HBLUE COLOROVER CLR_RED ;
ON MOUSEOVER SndPlaySound("Select.Wav") ID 212 OF oDlg ;
ACTION ShellExecute(oWnd:hWnd,"Open","MailTo:"+cMail,Nil,Nil,1);
TRANSPARENT FONT oFntSilvio,
Perhaps there is a bug when using all the clauses you are using. Try this:
REDEFINE SENSITIVE SAY ID 212 of oDlg transparent
And see if that works. If so, then start adding the rest of your clauses one at a time until if fails. That will at least give you a starting point to debug the problem.
James