PDA

Click to See Complete Forum and Search --> : IRC Question in VB


Juro128
Nov 9th, 2000, 10:56 PM
Can someone show me an example of how I can use a command or say something in mIRC with a VB program. Assume the user clicks a button and wants the text in the text box to be said.

Dim
Nov 12th, 2000, 07:16 PM
give this a try:

Private Sub Command1_Click()
Text1.LinkTopic = "mIRC|COMMAND"
Text1.LinkMode = vbLinkNone
Text1.LinkItem = Text1.Text
Text1.LinkMode = vbLinkManual
Text1.LinkPoke
Text1.Text = ""
End Sub


Gl,
D!m