السلام عليكم
هذا الموضوع استكمال لدورة الاكواد الشاملة


'61-رسم ايكون على الفورم

كود PHP:
Public Class Form1

    
Private Sub Button1_Click(ByVal sender As System.ObjectByVal e As System.EventArgsHandles Button1.Click

        Dim G 
As Graphics Me.CreateGraphics
        G
.DrawIcon(Me.Icon12599)

    
End Sub

End 
Class

'61-رسم ايكون على الفورم 

'62- رسم نصوص على الفورم

كود PHP:
Public Class Form1

    
Private Sub Form1_Paint(ByVal sender As ObjectByVal e As System.Windows.Forms.PaintEventArgsHandles Me.Paint

        Dim myBrush 
As New SolidBrush(Color.SeaGreen)
        
Dim f As Font = New Font(Font.Bold20)
        
Me.CreateGraphics.DrawString _
        
("لا إله إلا الله"fmyBrush8999)

    
End Sub
End 
Class

'62- رسم نصوص على الفورم