we have two picture boxes by names of "pic1" and "pic2"
we want to maintain parameters "isize" and "jsize" with parameter "picnum".
the code dosent work whats the problem?
we want to maintain parameters "isize" and "jsize" with parameter "picnum".
the code dosent work whats the problem?
Code:
dim picnum as string if a=1 then picnum=pic1 else picnum=pic2 end if With picnum isize = .Height jsize = .Width end with
Comment