Page 1 of 1

mask dialog not displayed [solved]

Posted: Thu Apr 07, 2011 12:41 pm
by Salvo1087
Hi at all.
In the project with clipper 5.2 + FHW 1.98 , the dialogs mask are correctly diplayed :

http://img834.imageshack.us/i/errmaschera1.png/

after compiling with Harbour and FHW i have this situation :

http://img715.imageshack.us/i/errmaschera32bit.png/

the code of dialogs is this :

Code: Select all | Expand


    if !lPreventivo
            REDEFINE FOLDER oFld ID 110 OF oDlg;
                PROMPT "&Testa", "&Corpo";
                DIALOGS "EDIT_ORD1", "EDIT_PREV2" COLOR "B/W"
        else
            REDEFINE FOLDER oFld ID 110 OF oDlg;
                PROMPT "&Testa", "&Corpo", "&Accettazione";                            
                DIALOGS "EDIT_PREV1", "EDIT_PREV2", "EDIT_PREV3" COLOR "B/W"              
        endif
 


may the error is caused by the resources file of dialogs?thanks all

Re: mask dialog not displayed

Posted: Thu Apr 07, 2011 9:10 pm
by Enrico Maria Giordano
Did you change the type of folder control to "SysTabControl32"?

EMG

Re: mask dialog not displayed

Posted: Mon Apr 11, 2011 4:14 pm
by Salvo1087
Thanks Enrico,i have change control to "SysTabControl32" and it's all ok.Problem solved !