how can i execute a loop (a series of natural numbers from 1 to 100) in dos shell ?
code:-
[ dim a as integer,dim b as integer
for b=1 to 100 step 1
for a =1 to 100 step 1
print a,b
next a
next b
]
it is executed on a form.
if i want to execute this code in command prompt (DOS shell) (rather than visual basic form) from vb6 how will i achieve that
??