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 bkrike 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: nimaata
  • Content: Threads
  • Order by date
  1. nimaata

    Checkbox font bolded when using Create()?

    hey i created a checkbox using CButton::Create() problem is that the checkbox's font size is big! how do i change this b/c i noticed if i created it through the toolbox instead of through manually (Create()), the font size would be small nice thanks!
  2. nimaata

    FileSystemWatcher header?

    what header is required for FilSystemWatcher? i tired looking it up, and i got system.io, but im not sure if this is right and i wouldnt know how to include the header in my file... FileSystemWatcher wrl = new FileSystemWatcher();
  3. nimaata

    Supress F1 help launching

    im trying to supress the launching of help files when F1 is pressed, but i havent succedded, this is what i have so far, any ideas? BOOL CrenamefileDlg::PreTranslateMessage(MSG* pMsg) { if((pMsg->message == WM_KEYDOWN) && (pMsg->wParam == VK_F1)) { NULL; } ... }
  4. nimaata

    how to use HWND?

    im trying to use a function called XMessageBox(HWND hwnd,...) and the first thing it ask for is the window, but i dont know how to set the window value could anyone help me out? how do i give hwnd its value?
  5. nimaata

    possible to obtain AM or PM from GetLocalTime()?

    is it possible to tell whether its AM or PM with GetLocalTime()? i cant find figure out how to tell if its AM or PM, all i can get is the time and date thanks!
  6. nimaata

    can i branch (tree) CCheckListBox?

    ive succesfully created a CCheckListBox, but im wondering i can take CCheckListBox furthur and have it branched (tree) so i can have more check options under the frist check box selection thanks!
  7. nimaata

    question about plugins (.dll)

    i want to make a program ive made have the ability to accept plugins (.dll) files, yet im not sure how to start this any ideas as to how i can begin? im having trouble finding intro for beginners when dealing with plugins (.dll)\ thanks!
  8. nimaata

    fscanf()

    is there a way to read a file backwards with fscanf? instead of starting from the beginning (rewind(*ptr)) and going to EOF, is there a way to start at the EOF, and go to the beginning?
  9. nimaata

    how to catch when a program is about to crash

    is there anyway to send a message to the user right before a program is about to crash and close?
  10. nimaata

    what is an Assertion Error?

    i have a program that gives no Assertion Error when compiled and executed as a release, but when i do the same steps in Debug mode (not Relase) and the program opens, i get a "Debug Assertion Failed!", what exactly is an Assertion Error? i dont know if this is important, but when i click on...
  11. nimaata

    Context Menu during OnContextMenu()

    ok i have a OnContextMenu(), works great when i want to display the context menu if the user right clicks anywhere on the interface, but it only works when the context menu is visible right below the title bar also but i dont want that, i just want the context menu visible when a person clicks...
  12. nimaata

    Can my VC++ MFC program be decompiled?

    is it possible for someone to decompile my VC++ MFC program? i rather people not decompile it and read all the algorithims and codings, but im worried b/c someone already told me they did...i dunno if they are lieing or telling the truth

Part and Inventory Search

Back
Top