I am trying to convert a big aplication from fwh8.10 (XHB comercial) to FWH1201 (BCC) and am not able to run the aplication (see subject).
The error occurs in a dialog with multiple Folders.
Isolating the problem , i made a aplication wich only calls the dialog with a minimum of code (also in the rc-file) , it works
- Code: Select all Expand view
DEFINE DIALOG oDlg RESOURCE "InvKlantLev"
REDEFINE FOLDER oFld ID 110 OF oDlg ;
PROMPT "Klant" , "Leverancier" ;
DIALOGS "KlntFld" , "LevFld"
REDEFINE FOLDER oFldK ID 110 OF oFld:aDialogs[1] ;
PROMPT "Facturatie Adres" , "Extra gegevens klant" , "Postadres" ;
DIALOGS "KlntAdres" , "KlntLevKlnt" , "KlntPostAdres"
REDEFINE FOLDER oFldL ID 110 OF oFld:aDialogs[2] ;
PROMPT "Adres Leverancier" , "Extra gegevens leverancier" ;
DIALOGS "LefAdres" , "KlntLevLev"
ACTIVATE DIALOG oDlg
Linking in this code in the main aplication (with the same rc-data) , gives a error on the dialog KlntPostAdres (as it did in the original full main program). Without this dialog
DIALOGS "KlntAdres" , "KlntLevKlnt" // , "KlntPostAdres"
the aplication works
I have no idea what else i can try. Why works this code in a litle program , not in the main aplication ?
If i can not solve this , conversion to fwh1201 is not possible !!!!!!!
Frank Demont