Generic problems

All announcements, questions and issues related to the Resource Builder
Post Reply
miguelmarchuet
Posts: 4
Joined: Wed Oct 05, 2005 8:22 am

Generic problems

Post by miguelmarchuet »

I'm evaluating Resource Builder to buy.

But how can I stablish TABSTOPS.

How I can test dialogs (don't go now on customer controls)

I can't add customer controls on demo version.

Sorry for my bad english.

Miguel Angel Marchuet
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

- To manage Tabstops use WindowStyle property of control. WS_TABSTOP flag manages this.
- To test dialog: right-click on dialog to call popup-menu and select Test dialog.
- To add a custom control to your dialog click on Custom Control icon in Dialog Editor toolbar and then click on dialog to place it. The ControlClassName property let you to specify the custom control class name.
Best regards,
Igor Siticov.
miguelmarchuet
Posts: 4
Joined: Wed Oct 05, 2005 8:22 am

Post by miguelmarchuet »

I supose I explain bad:

-i don't refer to WS_TABSTOP, i refer to order of TABSTOP, for order easily. How can I do. At the moment only programing in text format. Is not a good solution.

- Test dont go, when there are custom controls in (W2000). and anothers only present a blank dialog. I can send to you an rc if you want. It was make with borland resource workshop.

- I Push this button, but is imposible to place in the dialog.

(I use a demo version, to evaluating before buy your software)
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

-i don't refer to WS_TABSTOP, i refer to order of TABSTOP, for order easily. How can I do. At the moment only programing in text format. Is not a good solution.
Thank you for details. I see now and indeed, this is useful feature. Unfortunately, version 2.4 is already finalized for shipping and won't include this functionality but we will add this in next updates.
- Test dont go, when there are custom controls in (W2000). and anothers only present a blank dialog. I can send to you an rc if you want. It was make with borland resource workshop.
I suppose you've used some custom controls from BWCC32.DLL. Version 2.4 will include support for controls from BWCC32.DLL as well as installing of custom controls libraries, the same as it is done in Resource Workshop. So please wait few days for release of version 2.4.
- I Push this button, but is imposible to place in the dialog.
This is strange and may be this is a bug. So please wait for version 2.4 and it definitely has this working.

Thank you again.
Best regards,
Igor Siticov.
miguelmarchuet
Posts: 4
Joined: Wed Oct 05, 2005 8:22 am

More things

Post by miguelmarchuet »

Thankyou for quick ansvers. I wait to version 2.4 and retest all.

for the question of TABSTOP order is a very important question we need
in RC editor.

Code: Select all

I refer a custom controls as:
#include "version.ch"
#include "preview.rc"

#define ES_CENTER               1

#ifdef __FLAT__
1 24 "WindowsXP.manifest"
#define FOLDER "SysTabControl32"
#define TCS_FLATBUTTONS         0x0008
#else
#define FOLDER "TFolder"
#define TCS_FLATBUTTONS         0
#endif
#define TCS_FIXEDWIDTH          0x0400
#define TCS_BUTTONS             0x0100
#define BS_FLAT                 0x00008000L

MMANT DIALOG 4, 33, 470, 272
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION
CAPTION "Mantenimiento"
FONT 8, "Tahoma"
{
 CONTROL "TFolder", 101, FOLDER, 1280 | TCS_FLATBUTTONS | WS_CHILD | WS_VISIBLE, 0, 14, 470, 241
 CONTROL "TBtnBmp", 200, "TBtnBmp", WS_CHILD | WS_VISIBLE, 0, 0, 14, 14
 CONTROL "TBtnBmp", 201, "TBtnBmp", WS_CHILD | WS_VISIBLE, 15, 0, 14, 14
 CONTROL "TBtnBmp", 202, "TBtnBmp", WS_CHILD | WS_VISIBLE, 30, 0, 14, 14
 CONTROL "TBtnBmp", 203, "TBtnBmp", WS_CHILD | WS_VISIBLE, 45, 0, 14, 14
 CONTROL "TBtnBmp", 204, "TBtnBmp", WS_CHILD | WS_VISIBLE, 60, 0, 14, 14
 CONTROL "TBtnBmp", 205, "TBtnBmp", WS_CHILD | WS_VISIBLE, 75, 0, 14, 14
 CONTROL "TBtnBmp", 206, "TBtnBmp", WS_CHILD | WS_VISIBLE, 90, 0, 14, 14
 CONTROL "TBtnBmp", 207, "TBtnBmp", WS_CHILD | WS_VISIBLE, 105, 0, 14, 14
 CONTROL "TBtnBmp", 208, "TBtnBmp", WS_CHILD | WS_VISIBLE, 120, 0, 14, 14
 CONTROL "TBtnBmp", 209, "TBtnBmp", WS_CHILD | WS_VISIBLE, 135, 0, 14, 14
 CONTROL "TBtnBmp", 210, "TBtnBmp", WS_CHILD | WS_VISIBLE, 150, 0, 14, 14
 CONTROL "TBtnBmp", 211, "TBtnBmp", WS_CHILD | WS_VISIBLE, 165, 0, 14, 14
 CONTROL "TBtnBmp", 1, "TBtnBmp", WS_CHILD | WS_VISIBLE, 180, 0, 14, 14
 CONTROL "TBtnBmp", 2, "TBtnBmp", WS_CHILD | WS_VISIBLE, 195, 0, 14, 14
}
too can be important to include user controls in bar, for not write every time the same custom controls.

Thank's alltoguether for all

Best regards

Miguel Angel Marchuet
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

We've found a way to implement re-ordering feature in version 2.4 too. So hope it will be useful for you. :)
Best regards,
Igor Siticov.
miguelmarchuet
Posts: 4
Joined: Wed Oct 05, 2005 8:22 am

Post by miguelmarchuet »

When can be able to download test of verion 2.4 ?

Best regards

Miguel Angel Marchuet
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

in few days, hopefully beginning of the next week.
Best regards,
Igor Siticov.
Post Reply