Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. الاكواد
  2. ======================================
  3. الخط:
  4. Try
  5. Dim dlg As FontDialog = New FontDialog
  6. dlg.Font =TextBox1.Font
  7. If dlg.ShowDialog = System.Windows.Forms.DialogResult.OK Then
  8. TextBox1.Font = dlg.Font
  9. End If
  10. Catch ex As Exception : End Try
  11. ========================================­­==
  12. اللون :
  13. Try
  14. Dim dlg As ColorDialog = New ColorDialog
  15. dlg.Color =TextBox1.ForeColor
  16. If dlg.ShowDialog = System.Windows.Forms.DialogResult.OK Then
  17. TextBox1.ForeColor = dlg.Color
  18. End If
  19. Catch ex As Exception : End Try
  20. ========================================­­==
  21. نسخ:
  22. TextBox1.Copy()
  23. ========================================­­==
  24. قص:
  25. TextBox1.Cut()
  26. ========================================­­==
  27. لصق:
  28. TextBox1.Paste()
  29. ========================================­­==
  30. الاوان لكتابه:
  31. If TextBox1.ForeColor = Color.Green Then
  32. TextBox1.ForeColor = Color.Red
  33. Else
  34. TextBox1.ForeColor = Color.Green
  35. End If
  36. =====================================
  37. تحديد الكل :
  38. TextBox1.SelectAll()
  39. ====================================
  40. كود الفتاة الناطقه
  41. dim sapt
  42. sapt = createobject("sapi.spvoice")
  43. sapt.speak("krar.king")
  44. ====================================
  45. كود زر about
  46. Dim s As New Form2
  47. s.Show()
  48. ====================================
  49. كود زر المراسله على اي موقع
  50. Process.Start("اكتب الرابط هنا") ' vb.net
  51. ====================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement