https://github.com/ozzies-code/variabletest
Variable Test Application: Shows the content of a variable
https://github.com/ozzies-code/variabletest
Last synced: 3 months ago
JSON representation
Variable Test Application: Shows the content of a variable
- Host: GitHub
- URL: https://github.com/ozzies-code/variabletest
- Owner: ozzies-code
- Created: 2023-07-01T20:09:58.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-07-01T20:14:09.000Z (almost 3 years ago)
- Last Synced: 2025-12-31T07:02:12.167Z (6 months ago)
- Size: 57.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VariableTest
Variable Test Application: Shows the content of a variable
Visual Basic 2005.NET:
Public Class VariableTest
Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
End Sub
Private Sub BtnVariableTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnVariableTest.Click
Dim LastName As String
LastName = "Luther"
Label1.Text = LastName
LastName = "Bodenstein von Karlstadt"
Label2.Text = LastName
End Sub
Private Sub BtnVariableTest2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnVariableTest2.Click
End
End Sub
End Class