visual basic text form field properties

C

Chuck

Word 2000: What code can I use to access the "properties"
in a text form field? Field1 is named TelsetCount and
Field2 is named VMailCount.

I can never have more voice-mailboxes than telephones, so
when I exit Field1-TelsetCount I want to make
VMailCount.Default = TelsetCount.Value.

Obviously, my syntax is incorrect. Any suggestions??????
 
B

Billy

If you're trying to set one Field's value to another,
I think you just want to set Field2.Value = Field1.Value
on Exit... not the default.
 
C

Chuck

Many thanks!
-----Original Message-----
If you're trying to set one Field's value to another,
I think you just want to set Field2.Value = Field1.Value
on Exit... not the default.

.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top