i programmed private sub btnDatenAnzeigen_Click
and it became too long because when i compiled it the compiler said "Sub or Function too long"
so i created another sub, but how can i initialize it in the other sub??
please help me
thx, alex
Printable View
i programmed private sub btnDatenAnzeigen_Click
and it became too long because when i compiled it the compiler said "Sub or Function too long"
so i created another sub, but how can i initialize it in the other sub??
please help me
thx, alex
Or recode your code to make it smaller (loops etc)Quote:
Originally posted by alexschiefert
VB Code:
private sub btnDatenAnzeigen_Click other_half end sub private sub other_half() '---- other half end sub
Vince