![Sad :-(](./images/smilies/icon_sad.gif)
EMG
Enrico Maria Giordano wrote:Antonio,
Yes, I'm using BCC690 but how the C compiler could make any difference? I don't understand...
EMG
nageswaragunupudi wrote:Off-topic.
I am using bcc582.
Are there any advantages in using bcc690 and where can I get it from?
Code: Select all | Expand
#include "FiveWin.ch"
function Main()
local oDlg, lValue := .T.
DEFINE DIALOG oDlg RESOURCE "test"
REDEFINE CHECKBOX lValue ID 100 OF oDlg
ACTIVATE DIALOG oDlg CENTERED
return nil
Code: Select all | Expand
#include <windows.h>
LANGUAGE 0, SUBLANG_NEUTRAL
test DIALOG 0, 0, 255, 138
STYLE DS_3DLOOK | DS_CENTER | DS_MODALFRAME | DS_SHELLFONT | WS_CAPTION | WS_VISIBLE | WS_POPUP | WS_SYSMENU
CAPTION "Dialog"
FONT 8, "Ms Shell Dlg"
{
AUTOCHECKBOX "Checkbox", 100, 94, 50, 48, 8, 0, WS_EX_LEFT
DEFPUSHBUTTON "OK", 1, 67, 112, 50, 14, 0, WS_EX_LEFT
PUSHBUTTON "Cancel", 2, 128, 112, 50, 14, 0, WS_EX_LEFT
}