CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jul 1999
    Posts
    35

    Connect through network by tcpip

    Can i connect to the local network via tcpip instead of using drive mapping.. how can i achive that?


  2. #2
    Guest

    Re: Connect through network by tcpip

    I want a simple TCP-IP Code in VC/VC++
    One for Client
    and One for Server.



  3. #3
    Join Date
    Jan 2000
    Location
    Olen, Belgium
    Posts
    2,477

    Re: Connect through network by tcpip

    Wrong forum here, try the visual C forum

    Tom Cannaerts
    [email protected]

    The best way to escape a problem, is to solve it.
    Tom Cannaerts
    email: [email protected]
    www.tom.be (dutch site)

  4. #4
    Join Date
    May 1999
    Posts
    3,332

    Re: Connect through network by tcpip

    Not exactly sure what you mean.
    You can access a network file via TCP/IP address:
    Open "\\130.30....\yoursharename\test.htm" For Input As #1
    Dim strZeile As String
    Line Input #1, strZeile
    Close #1




Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured