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!

Recent content by nimaata

  1. nimaata

    Checkbox font bolded when using Create()?

    nvm i found it its called SetFont()
  2. 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!
  3. nimaata

    FileSystemWatcher header?

    oh nvm figured it out
  4. nimaata

    FileSystemWatcher header?

    ok i figured out the header but now i get a new error msg renamefile Command line error D2016 : '/GL' and '/clr' command-line options are incompatible how can i turn off Gl? im guessing its optimization, or has something to do with optimization... any ideas? thanks!
  5. 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();
  6. 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; } ... }
  7. nimaata

    how to use HWND?

    sweet thanks!
  8. 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?
  9. nimaata

    possible to obtain AM or PM from GetLocalTime()?

    ayah! yall are right! thanks!
  10. 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!
  11. 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!
  12. nimaata

    question about plugins (.dll)

    sweet,thanks!
  13. 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!
  14. 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?

Part and Inventory Search

Back
Top