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

Search:

Type: Posts; User: shericn

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    4,582

    Re: open file in windows mobile

    Hi,

    I don't think I'm making myself very clear here. I don't want to open the file to read texts from it. For example, if I open a html file using CreateFile with the OPEN_EXISTING option, then I...
  2. Replies
    3
    Views
    4,582

    open file in windows mobile

    Hi,

    I'm programming in Windows Mobile environment. I read in the documentation that there are ReadFile, DeleteFile... functions in Windows Mobile, but there isn't an OpenFile function. Is there a...
  3. Replies
    2
    Views
    6,162

    Re: send text file using InternetWriteFile

    Hi

    Sorry about not using code blocks. I have pasted the code below.

    I cannot use the things shown in the link, http://www.codeproject.com/KB/cpp/WSFileTransfer.aspx, because I'm programming for...
  4. Replies
    2
    Views
    6,162

    send text file using InternetWriteFile

    Hi codeguru people,

    I would like to send a text file from my local directory to the server. How could I do that?

    This is what I have now, and it is not working:

    INTERNET_BUFFERS BufferIn...
  5. Re: How to send packet to myself when I'm disconnected

    Thanks.
    -Sheri
  6. Re: How to send packet to myself when I'm disconnected

    Yes, I do want to send a packet to the same socket that as connected previously to another socket. So what you are saying is, this is not possible?

    In that case, I would just try to do something...
  7. Re: How to send packet to myself when I'm disconnected

    Actually, what I want to do is to send a packet with localhost IP address for already opened TCP connection. I don't want to use the connect() function because I don't want to open another TCP...
  8. Re: How to send packet to myself when I'm disconnected

    Hi,

    Actually, what I need to do is to send the packet with localhost address for already opened TCP connection. If anybody could help me with that, that would be great!

    Thanks.
    Sheri
  9. How to send packet to myself when I'm disconnected

    Hi

    I'm programming in win32 for a Windows Mobile application. So this is the trouble I'm having. In my program, I would like to send a packet to my own phone without connecting to the internet.
    ...
  10. How to send packet to myself when I'm disconnected

    Hi

    I'm programming in win32 for a Windows Mobile application. So this is the trouble I'm having. In my program, I would like to send a packet to my own phone without connecting to the internet.
    ...
  11. Replies
    4
    Views
    1,137

    Re: Is there a way to stop the connect function?

    I simply got it working by calling closesocket, but I think this is only because I called it from a separate thread. After calling closesocket(), the connect() function exits. So anyway, it is...
  12. Replies
    4
    Views
    1,137

    Is there a way to stop the connect function?

    Hi:

    I'm programming in C/C++ for Windows Mobile. The trouble I have with is the connect function;

    int connect(SOCKET s, const struct sockaddr FAR* name, int namelen );

    Sometimes this...
  13. Replies
    7
    Views
    14,663

    Re: How to make messagebox with automatic timer?

    Hi andrey_zh and Arjay:
    Both of your methods are similar, just create a timer, and destroy the window by first using FindWindow(), and if the window exists, then destroy it, right? I tried doing...
  14. Replies
    7
    Views
    14,663

    Re: How to make messagebox with automatic timer?

    I'm programming in C/C++, using Windows Mobile development environment.

    Thanks for helping.

    -Sheri
  15. Replies
    7
    Views
    14,663

    Re: How to make messagebox with automatic timer?

    Thank you.

    I made a modeless dialog box, and this works. But I'm still wondering, there's no way to just create a messagebox that will destroy itself after certain amount of time? I'm not doing...
  16. Replies
    7
    Views
    14,663

    How to make messagebox with automatic timer?

    Hi:

    So I am programming in win32. I want to make a message box that would destroy itself after a certain amount of time, even if the user does not click on it. How would I do that?

    When I...
Results 1 to 16 of 16





Click Here to Expand Forum to Full Width

Featured