Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. martijnF

    How to enable/disable a groupbox

    Yep, that's him!
  2. martijnF

    How to enable/disable a groupbox

    I guess you want to know whether I call the code before or after the CDialog::OnInitDialog()... Here's my OnInitDialog: BOOL CDataConversionDlg::OnInitDialog() { CDialog::OnInitDialog(); //... SetControlStates(); // <= this function calls the code return TRUE; } void...
  3. martijnF

    How to enable/disable a groupbox

    The place I call the code above is in a dialog function that is invoked by OnInitDialog... It must be something else, maybe some weird VC++ setting? B-( By the way: I don't have the IDC_GROUPBOX mapped to a value or control (in DoDataExchange).
  4. martijnF

    How to enable/disable a groupbox

    Hi there! I want to enable/disable a group box. Since a groupbox is in fact a CButton I thought that it would be easy using code like: GetDlgItem(IDC_GROUPBOX)->EnableWindow(true); or CButton* grb = (CButton*) GetDlgItem(IDC_GROUPBOX); grb->EnableWindow(true); I even tried a CWnd*...
  5. martijnF

    SetSQLQuery doesn't work in CR4.6 (from VC++)

    Hi, HELP!!!!!! I'm using CR4.6 that shipped with Visual Studio 6 (C++). I'm encoutering huge performance problems with CR, because the base query used in the report (like in the Show SQL window in CRW) retrieves a lot of records (10K+). Printing one report takes about 6 minutes. The report is...

Part and Inventory Search

Back
Top