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.
Printable View
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.
give this a try:
Gl,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
D!m