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 strongm 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. manish

    MFC: Run dialog minimized

    A Window can be opened minimized by modifying window style by or-ing it with WS_MINIMIZE. This should be done in the override of CWnd::OnCreate.
  2. manish

    Creating an Array of Strings?

    use 2-D char array: char my_string_item[1000][1048]; a string can be referred as my_string_item[0]
  3. manish

    How to prevent an application from loading more than once?

    Another way is to create a named mutex object in InitInstance() and return if creation fails. This will ensure that the application will be instantiated only once.
  4. manish

    CString to BSTR

    Use CString::AllocSysString() Look in MSDN for details

Part and Inventory Search

Back
Top