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 stream2000

  1. stream2000

    DEBUG mode working, RELEASE mode not working

    Thanks for the tip but the variable was already initialized CString m_sTime=_T(""); Can you tell me what else can be wrong except this? And by the way where does this _T("") initialization come from, is this better?
  2. stream2000

    DEBUG mode working, RELEASE mode not working

    I have a problem with this part of my program. In debug mode it's working but in release mode The CString value(m_sTime) is going nutts. I'm very confused. What I'm trying to do is some kind of a time bomb.I have the time set in seconds(member variable long m_iTime). The timer sends a message...
  3. stream2000

    Open the program only once

    Hi there, I am curently working on a project an i've encountered some problems. I don't know how to make the program open only once. I've tried to put a flag in the registry - 0 when the program isn't running - 1 when the program is running But There is a...
  4. stream2000

    Insert CheckBoxes into CListBox

    Hi there, You can try using the CCheckListBox class instead.
  5. stream2000

    Problems with the CFileDialog Class

    I've created a file dialog with multipleselect. If I'm trying to increase m_ofn.nMaxFile more than 264 it just destroys the window. The code : _________________________________ CFileDialog m_ldFile(TRUE); m_ldFile.m_ofn.nMaxFile = 264; ________________________________ I have no idea what to do
  6. stream2000

    project working in DEBUG mode but in RELEASE i get an error

    I'm currently working on a project and i have some problems. I made my own file type (a simple text file) and the problem appears when I'm trying to load a file. In DEBUG mode it works smoothly but in RELEASE mode I get an error. This is the sequence ...

Part and Inventory Search

Back
Top