Results 1 to 4 of 4

Thread: IP commands

  1. #1

    Thread Starter
    INXSIVE Bruce Fox's Avatar
    Join Date
    Sep 2001
    Location
    Melbourne, Australia
    Posts
    7,429

    IP commands

    I've just connected to my puter (127.0.0.1) using a small
    windsock app (not sure what I'm going to do with it yet).

    All I need now are some 'commands' that I can use.

    Does anyone have a reference to a command listing, URL etc.


    Cheers,
    ________
    How to roll a joint
    Last edited by Bruce Fox; Aug 14th, 2011 at 04:28 AM.

  2. #2
    Stuck in the 80s The Hobo's Avatar
    Join Date
    Jul 2001
    Location
    Michigan
    Posts
    7,256
    What exactly do you mean by "commands?"

    With winsock, you define your own commands. Like, on the server you do "Winsock.SendData("msg:dude!")"

    On your cleint you can:

    VB Code:
    1. Private Sub Winsock_DataArrival(Something)
    2. Dim strData as String, strParts() as Strings
    3.  
    4.   Winsock.GetData strData
    5.   strParts() = Split(strData, ":")
    6.  
    7.   If strParts(0) = "msg" Then
    8.     MsgBox strParts(1)
    9.   End If
    10. End Sub

    Something like that.
    My evil laugh has a squeak in it.

    kristopherwilson.com

  3. #3

    Thread Starter
    INXSIVE Bruce Fox's Avatar
    Join Date
    Sep 2001
    Location
    Melbourne, Australia
    Posts
    7,429
    I guess I'm just trying to learn and experiment.
    I have connected to myself, and I'm not to sure what to do
    next.

    I have a textbox that will issue (send) instructions, and its the
    instructions I'm after now.

    ie MSG, USER??
    ________
    Iolite vaporizer review
    Last edited by Bruce Fox; Aug 14th, 2011 at 04:29 AM.

  4. #4
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344
    I am in the process of making a messenger that uses commands instead of command button and things like that.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

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