Need help with my word doc

  • Thread starter Ana ana via OfficeKB.com
  • Start date
A

Ana ana via OfficeKB.com

Hi,
I need help in my word doc :-( every time I add VB button to generate date
and time or just use clear button to clear some fields it will work for the
1st time but when I save the doc and exit and come back again all of my
buttons will NOT work? Any Idea on how I can keep it working?

Thx,
Ana
 
C

Charles Kenyon

Consider using fields in templates for your dates. If you need to use
macros, put them in the template (rather than normal.dot) and assign custom
toolbar custom buttons to the macros rather than ActiveX controls.
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 
A

Ana ana via OfficeKB.com

Thank you Charles. I didn't use macro what i did is adding this code for
the buttons:
=========================================
Private Sub CommandButton1_Click()
Label1.Caption = Format(Now, "General Date")
End Sub

Private Sub CommandButton11_Click()

End Sub

Private Sub CommandButton2_Click()
Label1.Caption = " "

End Sub



Private Sub Label1_Click()

End Sub
=============================================

All works but after I close the doc and reopen it the code didn't work :-(

Thx for your help
 
C

Charles Kenyon

These are (nonfunctional) macros. Code = macro. Your document will trigger
macro alerts or security.
Consider whether fields will meet your needs rather than command buttons.
See http://addbalance.com/word/datefields1.htm for information on the
different kinds of datefields and how to format them.

See http://addbalance.com/word/datefields2.htm for information on the
different kinds of ways to make a date calculation work. It includes links
to pages with fields and an explanation of different macros that can be used
instead of fields.
--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 
A

Ana ana via OfficeKB.com

Thank you Charles, I am not that good with macro :-(... Do you know why VB
commands wont works after saving MS Word? Any fix or setting for me to do!
Thanks again for your help. :)

Ana
 
C

Charles Kenyon

Ana,

You are in over both of our heads. Again, look into using fields if you
don't understand vba. See http://addbalance.com/word/datefields2.htm for
information on the different kinds of ways to make a date calculation work.
It includes links to pages with fields and an explanation of different
macros that can be used instead of fields.

Your code may be being stored somewhere else and not saved when you save
your document.

--
Charles Kenyon

Word New User FAQ & Web Directory: http://addbalance.com/word

Intermediate User's Guide to Microsoft Word (supplemented version of
Microsoft's Legal Users' Guide) http://addbalance.com/usersguide

See also the MVP FAQ: http://www.mvps.org/word which is awesome!
--------- --------- --------- --------- --------- ---------
This message is posted to a newsgroup. Please post replies
and questions to the newsgroup so that others can learn
from my ignorance and your wisdom.
 

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