treasurer
11-30-2010, 06:27 AM
Basically I've just started to learn VB a few days ago on my own. I've been doing some exercises and I can't seem to get this one right. I basically have to make 3 textboxes. (Pretty new to whole programming, I just need some pointers to move on.)
1st textbox is for the user to insert a 6 digit number and the second textbox is to take the first number but slowly add it there 1 by 1 (e.g you have 123456 then on second textbox you would have 000000 but then it would tick slowly and reach to 000006 and would stop till you have all the same numbers as on the first textbox. Also, while second textbox is ticking it would affect the 3rd textbox by taking the value for example 000001 (from second textbox) and change it to binary system, which goes to 3rd textbox (also 3rd textbox should always have 20 digits shown).
Visual aid:
1st textbox: 123456
2nd textbox: 000001 (ticking till it reaches to 123456)
3rd textbox: 00000000000000000001 (changes at the same time as 2nd textbox changes)
Any good tips how to make it work?
1st textbox is for the user to insert a 6 digit number and the second textbox is to take the first number but slowly add it there 1 by 1 (e.g you have 123456 then on second textbox you would have 000000 but then it would tick slowly and reach to 000006 and would stop till you have all the same numbers as on the first textbox. Also, while second textbox is ticking it would affect the 3rd textbox by taking the value for example 000001 (from second textbox) and change it to binary system, which goes to 3rd textbox (also 3rd textbox should always have 20 digits shown).
Visual aid:
1st textbox: 123456
2nd textbox: 000001 (ticking till it reaches to 123456)
3rd textbox: 00000000000000000001 (changes at the same time as 2nd textbox changes)
Any good tips how to make it work?