Swin Messenger:Hello World How To
From SwinBrain
This is a How To article designed to give step-by-step instructions. Search SwinBrain and the external links if you require more detailed information about this topic.
Hello World
- Create a window application project.
- Add all the references
- Copy the follow code and paste into the constructor of the Form1 class.
- server.Login();
- server.OnLogin += delegate(object sender, EventArgs e)
- {
- server.SentTo("contactID", "Hello World.");
- };
- Build and run the application
Please refer to Swin Messenger How To for more details on how to set up an application.