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. BlackSmith

    Communication ports...

    How can I get my system's COM ports programmatically? (i.e. to which port my Modem attached...)
  2. BlackSmith

    Please Help: Backgroundcolor / Windowsize

    "(1)How can I fix the backgroundcolor of a dialogbox": inherite from CDialog and Override CYourDlg::OnPaint() and draw it yourself. "(2)What must I do, that my dialogbox starts maximized?": BOOL CMyApp::InitInstance() { //..... //..... CYourDlg dlg; m_pMainWnd...
  3. BlackSmith

    Problem with main's arguments

    if (argv[1] == 'c') //doesn't work cause' argv[1] is char*, use: if( !strcmp(argv[1],"c") ) m = atoi(argv[2]); //This works if you send to cmdLine "myProg.exe c 201".

Part and Inventory Search

Back
Top