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 gkittelson 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: *

  • Users: simus
  • Order by date
  1. simus

    DLLs & Dialogs

    If it's the problem i thought, it is quite trichy. Just test that: In the function of your DLL where you want to display the dialog: //Get DLL Handle HMODULE hDLL = GetModuleHandle("MyDLL.dll"); // Get handle of the caller HINSTANCE hEXE = AfxGetResourceHandle(); // Set that...
  2. simus

    CListBox question

    have you try to call list.SetCurSel(-1); just after the item deletion.
  3. simus

    Toolbars and status bars in dialog based apllication

    Yes, and here is how : 1 - create a tool bar in resources 2 - in your dialog header file add : protected: CToolBar cToolBar; 3 - in your dialog source file in the OnInitDialog add : //add the tool bar to the dialog cToolBar.Create(this); cToolBar.LoadToolBar(IDR_TOOLBAR1)...

Part and Inventory Search

Back
Top