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

    Check if a CString is a double

    why not use a sscanf ? this always returns 0 if it cannot convert the given value to what you told. for example: CString MyString = "1.0"; double dummy; if (sscanf(MyString.GetBuffer(1), "%d", &dummy) == 0) { return -1; } else { return 0; } or use sscanf directly
  2. starki

    document properties

    Hi all I hope it's not to easy, but I like to get the document properties (author, title and so on) for a file anywhere in the windows filesystem. Naturally I know the exact path, but I just don't find a function to retrieve those attributes with pure VC++ (no COM please). Any help is greatly...
  3. starki

    Where are my keystrokes ?

    Hello all ! I have a problem with the keyboard-messages in a modeless dialog. Unfortunately this dialog is in dll. I've tried to intercept the PreTranslateMessage through my whole hierarchie but I get nothing, no message is send at all to any of my dialogs. I could strike nearly any key but...

Part and Inventory Search

Back
Top