Inet control

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Steen Gellett

    Inet control

    Hallo.....I have programmed with winsock for a while, but now I have set my
    eyes on Inet, but I'm totally blank........a few questions ??

    Inet1.Protocol = icFTP.......... ............I can see what this is
    Inet1.RemotePor t = Text4.Text..... .... Whats the use ??
    Inet1.URL = Text1.Text..... ............... Can this be an IP adresse
    Inet1.UserName = Text2.Text..... ...... I guess thats to connect to FTP
    Inet1.Password = Text3.Text..... ....... I guess thats to connect to FTP

    1. whats puzzles me is : what is in the recieving end of this code...is it
    another INET control or what ??

    2. Can 2 instances of INET talk together like winsock can ??

    3. If yes.......how do you connect the 2 INET controls

    Thx in advance




  • Gemini

    #2
    Re: Inet control

    Steen Gellett wrote:
    [color=blue]
    > Hallo.....I have programmed with winsock for a while, but now I have set my
    > eyes on Inet, but I'm totally blank........a few questions ??
    >
    > Inet1.Protocol = icFTP.......... ............I can see what this is
    > Inet1.RemotePor t = Text4.Text..... .... Whats the use ??
    > Inet1.URL = Text1.Text..... ............... Can this be an IP adresse
    > Inet1.UserName = Text2.Text..... ...... I guess thats to connect to FTP
    > Inet1.Password = Text3.Text..... ....... I guess thats to connect to FTP
    >
    > 1. whats puzzles me is : what is in the recieving end of this code...is it
    > another INET control or what ??
    >
    > 2. Can 2 instances of INET talk together like winsock can ??
    >
    > 3. If yes.......how do you connect the 2 INET controls
    >
    > Thx in advance[/color]

    Try searching for inet in the help file

    g
    z

    Comment

    • Steen Gellett

      #3
      Re: Inet control


      "Gemini" <spam@nospam.or g> skrev i en meddelelse
      news:7bb44$4056 0c12$d89e2d68$1 5366@dcanet.all thenewsgroups.c om...[color=blue]
      > Steen Gellett wrote:
      >[color=green]
      > > Hallo.....I have programmed with winsock for a while, but now I have set[/color][/color]
      my[color=blue][color=green]
      > > eyes on Inet, but I'm totally blank........a few questions ??
      > >
      > > Inet1.Protocol = icFTP.......... ............I can see what this is
      > > Inet1.RemotePor t = Text4.Text..... .... Whats the use ??
      > > Inet1.URL = Text1.Text..... ............... Can this be an IP adresse
      > > Inet1.UserName = Text2.Text..... ...... I guess thats to connect to FTP
      > > Inet1.Password = Text3.Text..... ....... I guess thats to connect to FTP
      > >
      > > 1. whats puzzles me is : what is in the recieving end of this code...is[/color][/color]
      it[color=blue][color=green]
      > > another INET control or what ??
      > >
      > > 2. Can 2 instances of INET talk together like winsock can ??
      > >
      > > 3. If yes.......how do you connect the 2 INET controls
      > >
      > > Thx in advance[/color]
      >
      > Try searching for inet in the help file[/color]

      What help file is that........... ..???
      [color=blue]
      >
      > g
      > z[/color]


      Comment

      • Gemini

        #4
        Re: Inet control

        >>Try searching for inet in the help file[color=blue]
        >
        >
        > What help file is that........... ..???
        >
        >[color=green]
        >>g
        >>z[/color]
        >[/color]

        The one on the menu bar in your IDE. Click HELP then SEARCH

        Comment

        • mayayana

          #5
          Re: Inet control

          I haven't used the Inet control but your questions
          seem to be about ftp.
          [color=blue]
          > Inet1.RemotePor t = Text4.Text..... .... Whats the use ??[/color]

          The remote port, like port 80 for HTML and port 21 (usually)
          for FTP.
          [color=blue]
          > Inet1.URL = Text1.Text..... ............... Can this be an IP adresse[/color]

          Yes. Don't you want to connect to a specific FTP site?
          [color=blue]
          >
          > 1. whats puzzles me is : what is in the recieving end of this code...is it
          > another INET control or what ??[/color]

          The server that you're trying to connect with.



          Comment

          Working...