when working with FiveWin i got some Newbie Problem :
how can i disable that fwcmd.chm (Command Guide) stay ON TOP
how can i get rid of DOS BOX when start my GUI App ( Appsys )
---
Question :
DEFINE WINDOW vs. DEFINE DIALOG not sure about difference
Coordinate like this with "." and decimal
- Code: Select all Expand view
- @12.5, 1.0 BUTTON "open" ;
Object as Parameter vs. PUBLIC
this crash
- Code: Select all Expand view
- LOCAL oForm
...
MENU BuildMenu(oForm)
...
static function BuildMenu(oForm)
ACTION oForm:End() // -> crash
and this work
- Code: Select all Expand view
- PUBLIC oForm // work
...
MENU BuildMenu()
...
static function BuildMenu()
ACTION oForm:End()
XP Manifest
in my CLICK2.RC i hace
- Code: Select all Expand view
- 1 24 "WindowsXP.Manifest"
but Button still display in Old Style so no Manifest is "active"
please help me with those Question, Thx