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 Mike Lewis 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. Aunthas

    A problem when using a worker thread within the user interface thread

    I wrote the client-server program that user can send the task to operate at the server and user can stop the task in the server if it takes a long time. So I do the task in worker thread. The problem occur when the socket in the user interface thread receives the stop signal, at that time the...
  2. Aunthas

    Variable cannot be added when I specify the min value and max value

    I added the edit control to my dialog then I right-clicked and chose "Add variable...", the "Add Member Variable Wizard" appeared. In "Add Member Variable Wizard", I chose the category to "Value" and chose the type to "float". I named the...
  3. Aunthas

    How can I pass socket into thread?

    Help me plz!!!!! I passed the socket to my thread but it can't receive any message!!!!!!!!!!! Did I do something wrong? I have a main class CServerDlg which accepts the socket connection in this method. void CServerDlg::ProcessPendingAccept() { CClientConnSocket* socClientConn = new...
  4. Aunthas

    How can I convert CString and int to CObject?

    How can I convert CString and int to CObject? Thank you very much.
  5. Aunthas

    How can I popup the new ie window using C#?

    Is there any method to popup the new ie window using C# web application?
  6. Aunthas

    How can I release CStringArray?

    I've declared CStringArray m_saRule. When I want to release it, I use the following code. int nNumRule = m_saRule.GetSize(); for(int pos=0; pos<nNumRule; pos++) delete m_saRule[pos]; m_saRule.RemoveAll(); But it has an error in runtime. What's wrong? How can I release it? Thank you very much.
  7. Aunthas

    Create dialog which its parent is desktop

    Help me!!!! How can I create the dialog which its parent is desktop?

Part and Inventory Search

Back
Top