Skip to content

Instantly share code, notes, and snippets.

@canokay
Created November 11, 2018 21:25
Show Gist options
  • Save canokay/0e3e7914f46c608cbe0a87118603cd09 to your computer and use it in GitHub Desktop.
Save canokay/0e3e7914f46c608cbe0a87118603cd09 to your computer and use it in GitHub Desktop.
Visual Basic Structure Example
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim a As String
a = TextBox1.Text
MsgBox(a)
End Sub
End Class
Public Structure musteri
Public Adi As String
Public Soyadi As String
Public Tel1 As Integer
Public Tel2 As Integer
Public Fax As Integer
Public Adres As String
'Global Sabitler
End Structure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment