SKYPE COM - posílač
Přidáno: 13.10.2009
Kategorie: VB.NET - Sítě
Autor: Ondřej Ondryáš
Ukážeme si jednoduchý posílač na skype.
Stáhněte si com rozhraní: https://developer.skype.com/Download?action=AttachFile&do=get&target=Skype4COM-1.0.31.0.zip a přidejte si nový projekt winform. Nareferencujte (či jak :-)) si knihovnu a na form si přidejte:
-- Label 1, text = Zadejte příjemce:
-- TextBox1
-- Label2, text = Zpráva:
-- RichTextBox1
-- Button1, text = Odeslat
Public Class Form1
Dim a As New Skype()
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
MsgBox("Vítejte ve SKYPE posílátku!!!")
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
a.SendMessage(TextBox1.Text, RichTextBox1.Text)
End Sub
End Class