are the right thing for you!
π Hey!
I am Robert Skibbe,
software developer
and lecturer.
"it works"...
Here are some typical mistakes.
Declaration of "Things"
Deklarations do not follow the usual conventions, are type-unsafe and use the wrong keyword ... and much more.
Public Class Form1
' please absolutely not
β Dim Address
' bad
β Dim Age As Integer
' not so good either
β Dim name As String
End Class
Forms are placed badly
Are often simply put into the "root" like everything else.' β please not there
Public Class Form1
' more code...
End Class
Forms
Are almost always poorly displayed by beginnersPublic Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' this is not the way to display a Form
β Form2.Show()
End Sub
End Class
Comments
Are rarely well / purposefully chosenPublic Sub LoadData()
Dim connection = New Connection()
' pointless comment
' β opens the connection
connection.Open()
End Sub
Modules
Are almost always used incorrectly and badly.Public Module Module1
' horrible
β Public API_URL = "https://robbelroot.de/api"
' please don't
Public Sub DoSomething()
End Sub
End Module
Let's have a chat without obligation:
send mail | |
open chat | |
Form | visit form |