Hallo,
ich habe versucht, folgenden Code zu vereinfachen:
with Hauptmaske.Listbox1
.BoundColumn=5
.ColumnCount=5
end with
with Hauptmaske
.Textbox1.Text=„Hallo“
.Button9.Visible=false
end with
jetzt mein Versuch der Vereinfachung:
Dim lb1 as Listbox
Set lb1=Listbox1
with Hauptmaske
.lb1.BoundColumn=5
.lb1.ColumnCount=5
.Textbox1.Text=„Hallo“
.Button9.Visible=false
end with
Leider meldet der Compiler bei der Verwendung von .lb1 einen Fehler. Was mache ich hier falsch?
Gruß
Pauli