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 SkipVought 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. declspec

    tray icon

    1. Sorry. Can't understand from the code provided why it doesn't work in release. 2. To be able to show the "tray menu" only when the user pressed the right mouse button, you should do it this way: LRESULT CMainFrame::OnTaskbarNotify(WPARAM wParam, LPARAM lParam) { // The code...
  2. declspec

    Write and read in a Textfile

    I'm not sure this is what you want, but anyway: #include <string.h> #include <stdio.h> int main(int argc, char* argv[]) { // this file will be open for appending FILE *f = fopen(&quot;C:\\MyFileName.txt&quot;, &quot;ab&quot;); if (!f) { printf(&quot;Could not open file!\n&quot;)...
  3. declspec

    Tabbed DialogBox *without MFC*?!

    Hello. I was trying to write an application interface program where I need to have a window just like the Windows NT / 2000 task manager has: three tabs; the first two - with list boxes, the last one - a set of graph controls. NOTE: I *do not* need to create a property sheet! I am writing the...

Part and Inventory Search

Back
Top