mask dialog not displayed [solved]

Post Reply
Salvo1087
Posts: 34
Joined: Fri Jan 07, 2011 5:39 pm

mask dialog not displayed [solved]

Post 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

    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
Last edited by Salvo1087 on Mon Apr 11, 2011 4:14 pm, edited 1 time in total.
Salvo1087
Posts: 34
Joined: Fri Jan 07, 2011 5:39 pm

Re: mask dialog not displayed

Post by Salvo1087 »

Thanks Enrico,i have change control to "SysTabControl32" and it's all ok.Problem solved !
Post Reply