I found answers for my previous questions in the help-files from VISUAL FIVEWIN.
>Jkide32.exe is still built with the modified xHarbour 0.99.70 CVS (29/12/06) and FWH 2.4.
Does someone know if VisualFiveWin from Patrick is compatible with FWH 7.12?
Could someone who uses the IDE report about the experiences.
Regards,
Otto
Traditional FiveWin
a. No IDE (Integrated Design Environment) is available.
b. Not a RAD tool (Rapid Application Development).
c. Windows, MDI Windows, Modal and Non-Modal Dialogs are used.
d. Dialogs may be stored in DLLs/EXEs using Redefine ... ID...
e. Resource Folders have to be stored with one resource per dialog page.
f. Resource Editor such as Workshop has to be used for creating/editing resource dialogs.
g. Events are implemented by Code Blocks ::bLClicked, ::bLDblClicked etc.
h. Control Objects are stored in Prg using Variables .
i. Batch File and Link/Response Script or Make Files have to be prepared for building FW Programs.
Visual FiveWin
a. IDE (Integrated Design Environment) is available.
b. RAD tool (Rapid Application Development).
c. Forms are used.
d. Dialogs are stored in Form Files (.ffm). Redefine ... is not necessary .
e. Folders are stored in the same Form File as its parent Dialog.
f. IDE enables you to create/edit Forms and Codes together .
g. Events are implemented by Class METHODS OnClick, OnDblClick etc.
h. Control Objects are stored in Form-Prg using Class DATA Variables .
i. Files required to build applications are produced by IDE and
can be modified before the building process.
j. Traditional FW Programs can also be built.
Forms are Windows/Mdi Windows/Dialogs with Visual and non-Visual components,
stored as a binary Fivewin ForM file (.ffm) together with
an associated program file with the same name but different extension (.prg).
Forms are stored as resource data of type FORMS in the EXE,
just like Bitmaps are stored as resource data of type BITMAP in the EXE.
Forms are used to replace
the storing of coding in a prg and layout in resources in DLL/EXE.
uilding Traditional FW Programs using Visual FiveWin.
Create a New Project of type FiveWin exe without Forms... .
Add your Main Prg to the Project using option "Add Program to Project..." under menuitem "Projects".
Similarly, add the other Prgs to the Project.
Save your resource DLL as RC to a RC file.
Add that RC file to the project using tab "Resource" in the Project Manager.
Build your EXE.
That's all.