Guest User

Untitled

a guest
Jul 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Option Strict Off
  2. Public Class Form1
  3.  
  4.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  5.         'Deklarationen
  6.        Dim text As String = "Rababa"
  7.         Dim zahl As Integer = 5
  8.  
  9.         'Anweisungen
  10.        text = 4
  11.         text = zahl
  12.         zahl = "4"
  13.         zahl = text
  14.  
  15.     End Sub
  16. End Class
Add Comment
Please, Sign In to add comment