hoor1992

cn nimbuzz

Feb 12th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 2.27 KB | None | 0 0
  1. 2-TEXTBOX
  2. 1-BUUOTN
  3. 1-label
  4. واداةasixmpp.dll
  5. ندخل علي قائمة الاكواد بواسطة المواس نضغط مرتين علي الفروم
  6. راح نضع في جنرال الاكواد التاليه
  7. Imports agsXMPP
  8. Imports System.IO
  9. Imports agsXMPP.Xml.Dom
  10. Imports agsXMPP.protocol.client
  11. Imports System.Text
  12. Imports VB = Microsoft.VisualBasic
  13. Imports Microsoft.Win32
  14.  
  15. ونضع الاكواد التاليه تحت Public Class Form1
  16.  
  17. Dim nimbuzz As New agsXMPP.XmppClientConnection
  18. Dim gt, j As String, server1 As String = "nimbuzz.com", host1 As String = "o.nimbuzz.com"
  19. Dim target As String
  20. نضع الاكواد التاليه في زر تسجيل الدخول كما موضح بالصوره
  21. Private Sub Button1_Click(ByVal sender As System.Object, ByVale As System.EventArgs) Handles Button1.Click
  22. 'هنا كود الاتصال
  23. If Button1.Enabled = True Then
  24. With nimbuzz
  25. .Server = server1
  26. .ConnectServer = host1
  27. 'هنا هنحدد التسكت الي هتكتب فيه اسم النك وتكست الباسورد
  28. .Open(TextBox1.Text, TextBox2.Text, "Nimbuzz_MIDP5246")
  29. AddHandler nimbuzz.OnLogin, AddressOf loged1
  30. AddHandler nimbuzz.OnAuthError, AddressOf wrong1
  31. End With
  32. Button1.Text = " ... انتظر جاري الاتصال"
  33. End If
  34. End Sub
  35.  
  36. نضع الاكواد التاليه خلف اكواد الزر بالترتيب كما نشاهد في الصوره
  37. Private Sub loged1(ByVal sender As Object)
  38. If MyBase.InvokeRequired = True Then
  39. MyBase.BeginInvoke(New agsXMPP.ObjectHandler(AddressOf loged1), New Object() {sender})
  40. Else
  41. 'هنا ف حالة نجح في التسجيل راح نكتب اوامر مثلا اانا راح اعطي امر يخبرني ان الحساب اون لاين
  42. Label4.Text = "نجح في تسجيل الدخول"
  43. End If
  44. End Sub
  45. Private Sub wrong1(ByVal sender As Object, ByVal e As agsXMPP.Xml.Dom.Element)
  46. If MyBase.InvokeRequired = True Then
  47. MyBase.BeginInvoke(New agsXMPP.XmppElementHandler(AddressOf wrong1), New Object() {sender, e})
  48. Else
  49. 'وهنا فشل في تسجيل الددخول ارح اعطي امر مسج بوكس يخبرني بان الايميل مش شغال
  50. MsgBox("خطاء في اسم المستخدم او كلمة المرور رجاء التاكد من البيانات")
  51. End If
  52. End Sub
Add Comment
Please, Sign In to add comment