Created
November 11, 2018 21:25
-
-
Save canokay/0e3e7914f46c608cbe0a87118603cd09 to your computer and use it in GitHub Desktop.
Visual Basic Structure Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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