CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: tawright915

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    1,178

    Re: How to setup Socket Events

    Thanks I'll take a look at your FTP server.

    I'm not realy concerned about receiving an event when data is received, as much as when the socket gets disconnected.

    I'm still stuck in the MFC...
  2. Replies
    2
    Views
    1,178

    How to setup Socket Events

    Can someone point me in the direction as to setting up socket events in c-sharp?

    Thanks
    Tom
  3. Replies
    10
    Views
    1,252

    Re: Storing a HANDLE in a CListCtrl

    Three columns....right? I have three different headers. One that says IP address, one that says Port and a third that says ID.

    Columns go up and down and rows go horizontal. .....Right? I alwys...
  4. Replies
    10
    Views
    1,252

    Re: Storing a HANDLE in a CListCtrl

    Sorry for the confusion. I have a list control with three rows. One row is the IP address. The other is the port and the third will be an ID. So with the ID I can add the handle to the LPARAM...
  5. Replies
    10
    Views
    1,252

    Re: Storing a HANDLE in a CListCtrl

    instead of creating a class, could I just not store the HANDLE in the LPARAM value for each item in my list?
  6. Replies
    10
    Views
    1,252

    Re: Storing a HANDLE in a CListCtrl

    with each item.

    in my list I (so far) have three IP addresses that I'm connecting too via a thread for each one. I want to store the HANDLE for each thread in another sub-item on my list...
  7. Replies
    10
    Views
    1,252

    Storing a HANDLE in a CListCtrl

    Can this be done and if so how? Trying to store the handle for each of my threads in a list control that also holds each threads corrisponding connecting ipaddress and port. (they are connecting to...
  8. I know this is late, but try this class:...

    I know this is late, but try this class: http://www.naughter.com/smtp.html

    Not only is it well written but very solid.

    Tom
  9. Replies
    0
    Views
    632

    SQL and MFC in .NET

    I want to learn to access a SQL database using MFC in the .NET studio. Can anyone suggest a tutorial, book or a class that I can look up in the MSDN library?

    Thanks
    Tom
  10. Re: The goal...

    If this is what you are trying to do. Then why don't you create a seperate thread that monitors the state of your window and if the user maximizes it then you prompt them with your messagebox and...
  11. Glad is worked for ya. Let me know if you need...

    Glad is worked for ya. Let me know if you need help with anything else :)
  12. RussG1 Try this sample out. Works fine on my...

    RussG1
    Try this sample out. Works fine on my end. Let me know if you still have problems. It's written using MFC.

    Hope this helps
  13. take a look in the msdn. The api you want is...

    take a look in the msdn. The api you want is GetOpenFileName


    Hope this helps
  14. Replies
    4
    Views
    634

    one other thing. Step through your code and see...

    one other thing. Step through your code and see where it hangs on then let us know. It is difficult to tell with out much info.
  15. Replies
    4
    Views
    634

    you could also create seperate threads for the...

    you could also create seperate threads for the send and recv part of your code.
  16. Sorry MAV I miss read your question. How to stop...

    Sorry MAV I miss read your question. How to stop this from happening I'm not to sure unless you get the handle of the window and watch every message that comes in and intercept the one that tells...
  17. Got it. I never used that feature so I wasn't...

    Got it. I never used that feature so I wasn't sure what you meant until I looked at it.

    Basically it's grabbing the title of window and using the findwindow api. Now it has the handle, then it...
  18. Replies
    18
    Views
    1,855

    Figured it out. I had to change the message I...

    Figured it out. I had to change the message I want to send to unicode also. The SDK never said to do that so I left it like it was in ansi. I finally got a brain fart and tried it out.......hot...
  19. Replies
    18
    Views
    1,855

    Yeah I looked at that also. Thanks for the help....

    Yeah I looked at that also. Thanks for the help. I'll keep pluggin away at it.
  20. Just curious how is task manager minimizing or...

    Just curious how is task manager minimizing or maximizing your window?
  21. Replies
    18
    Views
    1,855

    When the message box comes up is full of ?'s...

    When the message box comes up is full of ?'s where my message should be.
  22. Replies
    18
    Views
    1,855

    Mick_2002 Are you fimiliar with the...

    Mick_2002
    Are you fimiliar with the NetMessageBufferSend API?

    I have a dialog based app with 2 edit fields on it. And a control variables called:
    m_cCompName.
    m_cSendText.

    LPWSTR...
  23. Replies
    3
    Views
    774

    Thanks for the help but c_str is not a member of...

    Thanks for the help but c_str is not a member of the CString class.
  24. Replies
    3
    Views
    774

    NetMessageBufferSend

    I'm having trouble with the LPBYTE param of this API.
    I want to move text from my dialog based application to this api to send.

    CString buffer;
    m_cSendText.GetWindowText(buffer);

    nasStatus =...
  25. Replies
    6
    Views
    801

    You could also try ShellExecute using the mailto:...

    You could also try ShellExecute using the mailto: which open a email box. Yuo will still need to setup all the SMTP and POP info through the main email application.
Results 1 to 25 of 27
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured