View previous topic :: View next topic |
Author |
Message |
Semmel
Joined: 03 Apr 2006 Posts: 2
|
Posted: Tue Apr 04, 2006 10:38 am Post subject: Custom Control_IDs? |
|
|
Hi there,
I was wondering whether I could assign Control_ID constants to the controls I dropped on a dialog.
E.g. I like to define a constant for a button IDC_BUTTON_OK.
In my code I Just include a definition header file which contains
#define IDC_BUTTON_OK 101
to use it in function calls as following:
GetDlgItem(hWndParent, IDC_BUTTON_OK)
or
switch (msg)
{
case WM_COMMAND:
if (id == IDC_BUTTON_OK)
// button clicked
}
However with resource builder I just managed to created .rc files with numbers as IDs. Maybe I am missing a point, but to scatter numbers through my code is a nightmare. This way Resource builder is no help to me. Otherwise I like the editor.
Semmel |
|
Back to top |
|
 |
isiticov Site Admin
Joined: 21 Nov 2002 Posts: 2112
|
Posted: Tue Apr 04, 2006 1:04 pm Post subject: |
|
|
Hi,
This feature is not implemented yet, but we're working under it and hope it will be available in new version. |
|
Back to top |
|
 |
Semmel
Joined: 03 Apr 2006 Posts: 2
|
Posted: Tue Apr 04, 2006 4:53 pm Post subject: |
|
|
Hi Isiticov,
thanks for the quick reply!
Just to explain my situation: My Visual Studio 2005 Beta2 runs out on May 1st, so I am forced to make a choice between using the free Visual C++ Express together with Resource Builder or go spend approx $ 300 more and buy Visual Studio 2005 Standard. With the 50% discount on Resource Builder there is certainly an alternative since the extra things of Studio Standard, except the Resource designer, like ATL, C#, Basic, MFC.. are not particulary of interest to me.
Concluding, do you have any vague idea when this version you write of will approximately be released ?
Best regards
Semmel |
|
Back to top |
|
 |
isiticov Site Admin
Joined: 21 Nov 2002 Posts: 2112
|
Posted: Wed Apr 05, 2006 3:15 am Post subject: |
|
|
Hi Semmel,
Unfortunately, I can't tell you any ETA now. So I would say: "when it will be ready" (C) Dont_Remember_Who. |
|
Back to top |
|
 |
|