|
-
Jul 31st, 2000, 01:56 PM
#1
Thread Starter
New Member
how can i use winsocuk to send a command to a ip.
-
Jul 31st, 2000, 02:16 PM
#2
Fanatic Member
Depends what kind of command...and if you are planing on using winsock then the pc that you are trying to communicate with will have to be running some kind of server.
Gl,
D!m
-
Jul 31st, 2000, 02:57 PM
#3
Thread Starter
New Member
blah
it will be a a irc. server and the comand will be mirc commands. i just want to make it send a cmmand to the server telling it to do blah blah with out conecting just send the command.
-
Jul 31st, 2000, 03:02 PM
#4
Fanatic Member
I used this to send commands to mIRC. Maybe it will help you in some way.
Code:
Private Sub Command1_Click()
Text1.LinkTopic = "mIRC|COMMAND"
Text1.LinkMode = vbLinkNone
Text1.LinkItem = Text1.Text
Text1.LinkMode = vbLinkManual
Text1.LinkPoke
Text1.Text = ""
End Sub
If that doesn't do anything for you then i would suggest sending keys to the server.
Gl,
D!m
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|