mit
[ code=vb ] ... [ /code ]
oder nur
[ code ] ... [ /code ]
wird der VB-Code folgendermaßen dargestellt:
- Code: Alles auswählen
' Test:
dim xyz as string
xyz = "abcdefg"
if len(xyz) > 0 OR xyz like "abc*" OR left(xyz, 2) = "ab" then
msgbox "welche ein Zufall"
debug.print "...", xyz
end if
mit [ code=vbnet ] ... [ /code ] würde der Code so aussehen:
- Code: Alles auswählen
'Test:
dim xyz as string
xyz = "abcdefg"
if len(xyz) > 0 OR xyz like "abc*" OR left(xyz, 2) = "ab" then
msgbox "welche ein Zufall"
debug.print "...", xyz
end if