Forms in word 2000

INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Thanks. We have received your request and will respond promptly.

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!

  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It’s Free!

*Tek-Tips’s functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Forms in Word 2000 template

Forms in Word 2000 template

(OP)

20 Nov 03 10:58

Is it possible to (simply) create a form in a Word 2000 template?  I have been asked to provide a template containing a form in which the cursor will jump to the next input field following a tab press and in which the form will anticipate the correct format.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Join Tek-Tips® Today!

Join your peers on the Internet’s largest technical computer professional community.
It’s easy to join and it’s free.

Here’s Why Members Love Tek-Tips Forums:

  • Tek-Tips ForumsTalk To Other Members
  • Notification Of Responses To Questions
  • Favorite Forums One Click Access
  • Keyword Search Of All Posts, And More…

Register now while it’s still free!

Already a member? Close this window and log in.

Join Us             Close

Using Forms

Forms
can be defined as a structured arrangement of data fields used to
collect information and store it in an organized way. Many people use
both paper and electronic forms to collect different types of
information. Forms can be used for expense reports, invoices, contact
information, and much more. Word is a useful tool for creating forms
to print or use electronically.

In this section, I step through the creation of an electronic form.
This form is an invoice that lets users fill in labeled fields for
addresses, items, quantities sold, and prices. The form takes the
quantities and prices, calculates line-item totals for the user, and
calculates a final total for the invoice, including tax. The form
also saves the data in the fields to a comma-delimited text file so
that it can be imported into a database later.

Creating a Form

Unless
you are creating a very simple form, it’s a good idea to use a
table to provide structure to the labels
and fields. Figure 15-8 shows the table we will use
to create a basic invoice. This is essentially a four-column table,
but I have merged some cells, used some background shading, and made
some of the cell borders invisible to make the form look nice (see
Chapter 10 for more on creating tables). I’ve
also filled in the title and the column headings.

Using a table to provide structure to a form

Figure 15-8. Using a table to provide structure to a form

My goal is to use this table as …


There are several kinds of ‘forms’ in Microsoft Word. We’ll review each type that does not require VBA coding.

start sidebar

Tip 41: Shading Form Fields

To prepare your Word settings to work best with creating forms, go to Tools Options, View tab and choose Field Shading [Always].

end sidebar

Macro Button Field Forms

When you open Word and hit File New, you can choose one of Word’s built-in templates. The graphic in Figure 18-1 was captured from the Contemporary Fax template.

click to expand
Figure 18-1: Macro Button Fields

There is no real mystery to creating this type of form. If you select the areas in which the fields reside and apply table borders, you see that it’s nothing but a simple table, with macro buttons inserted into certain cells.

There are no restrictions on these forms; they just help the user complete the form with the necessary information. Unlike protected, fill-in forms, these can also be edited and changed by the user in areas other than the form area.

When you view the code behind the form by hitting Alt+F9, it looks rather different:

click to expand
Figure 18-2: Macro Button Fields with Field Codes Revealed

Macro buttons are used here, but not with their original purpose. You can easily copy these fields from existing templates, and paste them into your document. Hit Alt+F9; change the instruction between the brackets and hit Alt+F9 to turn off the code view.

The table with borders applied is depicted in Figure 18-3.

click to expand
Figure 18-3: Fax Template with Borders Applied

start sidebar

Tip 42: Creating Click & Type Fields

Choose Insert Field, choose the category ALL and choose MacroButton from the field name list. If you’re in Word 2002/XP, hit the Field Codes button first. You’ll note that the syntax displayed is shown as:

MACROBUTTON MacroName DisplayText

In the Field Codes box, type in:

MACROBUTTON NoMacro [Click here to type]

‘Click here to type’ is the text you want to have the user see. The brackets are not required, but give a nice look to the clickable area.

When you’re done creating all of the fields you need, you can save it as a template. Choose File-New and doubleclick your template whenever you want to use it.

end sidebar


Adam Mann


  • #1

Hello. I am using form fields (particularly the text form field) to fill in sections of a very large document. Word 2000 will blank text form fields if I unprotect and then choose to protect again. However, I have found that MS addressed this issue in Word 2002 by creating another button aptly named «Reset Form Fields» on the forms toolbar and leaving edited form field text in fields by default.

I have to use Word 2000 to complete this document and was wondering if anyone has a workaround for this issue in Word 2000? I have found that I can copy my edited text into the default field for the text form field under the text form field’s properties, but that workaround can be very time consuming for 200 separate text form fields. I want to thank the kind soul(s) out there in advance for any help!

Advertisements

Greg Maxey


  • #2

Adam,

I use the two macros copied below and then replaced the
padlock icon on the forms toolbar with my two of my own
icons. One icon fires the unprotect macro and the other
fires the protect macro.

Sub Unprotect()
On Error GoTo Ignore
MsgBox «The form is not protected.»
ActiveDocument.Unprotect
Ignore: Err.Clear
End Sub

Sub Protect()
On Error GoTo Ignore
MsgBox «The form is now protected.»
ActiveDocument.Protect Type:=wdAllowOnlyFormFields,
NoReset:=True
Ignore: Err.Clear
End Sub

See:
http://www.mvps.org/word/FAQs/MacrosVBA/CreateAMacro.htm
and
http://www.mvps.org/word/FAQs/Customization/AsgnCmdOrMacroT
oToolbar.htm

——Original Message——
Hello. I am using form fields (particularly the text form

field) to fill in sections of a very large document. Word
2000 will blank text form fields if I unprotect and then
choose to protect again. However, I have found that MS
addressed this issue in Word 2002 by creating another
button aptly named «Reset Form Fields» on the forms
toolbar and leaving edited form field text in fields by
default.

I have to use Word 2000 to complete this document and was

wondering if anyone has a workaround for this issue in
Word 2000? I have found that I can copy my edited text
into the default field for the text form field under the
text form field’s properties, but that workaround can be
very time consuming for 200 separate text form fields. I
want to thank the kind soul(s) out there in advance for
any help!

Adam Mann


  • #3

Greg

Thank you for the assistance. I followed your instructions and the helpful links but am getting a compile error for the unprotect subroutine. It reads «Compile Error: Expected named parameter» in the Visual Basic Editor for the line reading

ActiveDocument.Protect Type:=wdAllowOnlyFormFields

I have set up buttons for both macros and the Protect macro works well plus I get the Dialog box confirming that it worked. I would really appreciate your further assistance with the issue or any other recommendations from other users.

Greg Maxey


  • #4

Adam,

Try pulling the next line of code up after the comma. I am at home now
(that macro runs at work), but I think the line of code should be continous
on one line and include the «NoReset:=True» It was probably broken by text
wrapping when I posted.


Greg Maxey
A peer in «peer to peer» support
Rockledge, FL
E-mail for additional help, within reason, if you like. I may not
always solve your problem, but no charge if I do. To e-mail, first edit
out the «w…spam» in the displayed address.

Adam Mann


  • #5

Greg

That worked out great and has provided exactly the function that I needed. Thank you very much and also thanks for introducing me to www.mvps.org. I will be sure to visit frequently in the future.

Advertisements

Greg Maxey


  • #6

Adam,

Glad you are satisfied and an all up round. Thanks for the feedback.


Greg Maxey
A peer in «peer to peer» support
Rockledge, FL
E-mail for additional help, within reason, if you like. I may not
always solve your problem, but no charge if I do. To e-mail, first edit
out the «w…spam» in the displayed address.

Advertisements

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

word 2000 forms

I have seen word forms that have sort of «fill in box». I mean that Word
opens a gray dialog box when documents are opened and user fills the fields
and word puts the data into right columns in the form. What it is called and
how can i craete template that uses this technique?

thanks a lot

Kenny

 
 
 

word 2000 forms

Post
by Ilen » Sat, 04 May 2002 05:34:02

Insert, Field, Mailmerge, and Fillin

http://support.microsoft.com/search/preview.aspx?scid=kb;en-us;Q238278

Quote:> I have seen word forms that have sort of «fill in box». I mean that Word
> opens a gray dialog box when documents are opened and user fills the
fields
> and word puts the data into right columns in the form. What it is called
and
> how can i craete template that uses this technique?

> thanks a lot

 
 
 

word 2000 forms

Post
by Beth Melto » Mon, 06 May 2002 00:14:48

Hi Kenny,

You are seeing Word Form Fields. Word refers to this as an Online Form if you
are looking in Help.

For more on creating form there are some tutorials, «Please Fill Out This Form»
by Dian Chapman, Word MVP.

Here is where you can obtain links to her articles:
http://mvps.org/word/Tutorials/index.html

You’ll also find additional articles on Word forms on the same site. Just use
the «Search» command or click the «FAQ» command and select the «Tables, Fields,
Forms» tab.
~~~~~~~~~~~~~~~
Beth Melton
Microsoft Office MVP

Please post replies/further questions to the newsgroup so that all may benefit.

Quote:> I have seen word forms that have sort of «fill in box». I mean that Word
> opens a gray dialog box when documents are opened and user fills the fields
> and word puts the data into right columns in the form. What it is called and
> how can i craete template that uses this technique?

> thanks a lot

 
 
 

  • Файлы

  • Академическая и специальная литература

  • Начертательная геометрия и инженерная графика

  • Техническое черчение

  • Правила оформления графической и текстовой документации

  • Рамки, шаблоны

  • Файл формата
    rar
  • размером 534,79 КБ
  • содержит документ формата
    exe
  • Добавлен пользователем Евгений, дата добавления неизвестна
  • Описание отредактировано 28.11.2010 13:35

Разработчик: Козловский Андрей Владимирович
Язык интерфейса: Русский (шаблоны: русский, украинский)
Системные требования:
MS Office 97/xp/2000/2003
http://www.andrew.vinnitsa.com/images/scrshort.jpg
Описание:
Данная разработка, далее шаблон, является дополнением к MS Word 97/2000 офисного пакета Microsoft Office 97/2000. Шаблон может быть интересен инженерам, студентам, дизайнерам и всем тем, кто занимается подготовкой технической конструкторской документации в сфере радиоэлектроники, автоматики, программного обеспечения и т. д. В шаблоне содержатся штампы (рамки) для листов формата А4 выполненные на двух языках (русский и украинский), а именно: простая рамка (0 мм); 15 миллиметровый штамп; 40 миллиметровый штамп (для текстовых документов); 55 миллиметровый штамп (для графических материалов); 15 миллиметровый штамп спецификации; 40 миллиметровый штамп спецификации; боковой штамп; верхний правый штамп. Штампы формата А4, стили заголовков и формул (4 уровня заголовков, формула, основной текст), автоматическое содержание, отступы и т. д. полностью соответствуют ГОСТ 2.105-95 «Общие требования к текстовым документам». Данный ГОСТ действует на всей территории СНГ.

  • Чтобы скачать этот файл зарегистрируйтесь и/или войдите на сайт используя форму сверху.
  • Регистрация
  • Узнайте сколько стоит уникальная работа конкретно по Вашей теме:
  • Сколько стоит заказать работу?

Скачать

Дополнение к MS Office 97/2000 — шаблон, который может быть интересен инженерам, студентам, дизайнерам и всем тем, кто занимается подготовкой технической конструкторской документации в сфере радиоэлектроники, автоматики, программного обеспечения и т.

Поделиться

Класснуть

Твитнуть

Поделиться


Лицензия: Free
ОС: Windows Vista / 7 / 8 /10
Размер: 0K
Разработчик:
Цена: $0
Обновлено: 13 Jun 2002

Дополнение к MS Office 97/2000 — шаблон, который может быть интересен инженерам, студентам, дизайнерам и всем тем, кто занимается подготовкой технической конструкторской документации в сфере радиоэлектроники, автоматики, программного обеспечения и т.д. Включает в себя штампы (рамки) для листов формата А4, выполненные на двух языках — русском и украинском.

Configuring a Word Merge in SmartSimple is a three-step process:

  1. Create the MS Word document that will be used as the template. This page describes the process to add form fields to your Word document.
  2. Upload the Word document to a SmartFolder. (See Uploading Word Merge Document to a SmartFolder for instructions.)
  3. Create the Special — MS Word Merge custom field that maps the SmartSimple fields you wish to merge to the Word template.

Your Word document will contain Form Fields which are linked to «Bookmarks.» The SmartSimple Word Merge field will be configured to match the bookmarks up with SmartSimple variables in the third step.

In this step, you will add the Form Fields and assign Bookmarks to each field in your Word document that is to be merged. The steps vary slightly in different versions of Word.

Note that SmartSimple's Word Merge feature works with all versions of MS Word. As opposed to using the user's version of Word to create the merged document, the merge is performed by SmartSimple's Word Merge engine using an programmatic object compatible with MS Word (all versions). Once the merge is launched, SmartSimple streams the resultant document back to the client’s browser where the extension of the streamed document (*.doc, *.docx, etc.) will trigger the launching of MS Word. If the user does not have MS Word on a Windows machine, the process will simply open whatever program is associated with the document's extension.

Take note of all the Bookmarks that you add to the Form Fields below. They will be used in step 3: creating an MS Word Merge custom field.


Contents

  • 1 MS Word 2000-2003
  • 2 MS Word 2007
  • 3 MS Word 2010/2013
    • 3.1 Word 2010
    • 3.2 Word 2013
    • 3.3 Preparing Template for List View Export
  • 4 See Also

MS Word 2000-2003

  • From the View Menu select Toolbars and enable the Forms Toolbar
  • Click in your Word document wherever you wish to insert a Form Field.
  • On the Forms Toolbar click on the first button to insert a Form Field into your document: FormsToolbar.gif
  • Right-click on the Form Field and select Properties. Then provide a name for the field in the Bookmark section.

MS Word 2007

  • Click on the Menu button and select Word Options
  • In the Popular section, select Show Developer Tab in the Ribbon
  • Click in your Word document wherever you wish to insert a Form Field.
  • On the Developer Menu select the Legacy Tools icon which is in the Controls section: 2007Forms.gif
  • On the Legacy Forms menu click the first icon to insert a Form Field.
  • Right-click on the Form Field and select Properties. Then provide a name for the field in the Bookmark section.

MS Word 2010/2013

  • Click in your Word document wherever you wish to insert a Form Field.
  • Click on the Developer tab.
  • If the «Developer» tab is not visible, click on File > Options > Customize Ribbon, and check off the «Developer» tab in the right hand frame.
Word2010DeveloperTab.png
  • On the Developer tab, click on the Legacy Tools button: LegacyToolsButton.png.
  • Click on the Text Form Field button

Word 2010

WordTextFormField.png

Word 2013

Word2013TextField.png
  • A Text Form Field will be inserted at the cursor location.
  • Right-click on the Form Field and select Properties. Then provide a name for the field in the Bookmark section.

In Word 2013, the document must be saved as a «Word 97-2003 Document»:

SaveAsWord972003.png

Preparing Template for List View Export

List View Export to a Word Merge field required the fields used be Word Merge instead of the old bookmarks which is described above. This method will also work for Word Merge fields used outside of the list view.

To ensure the list view export functions, fields must be created using the following:

  • In Word 2007 and higher, select Mailings from the ribbon menu.
  • If you haven’t already, click on Select Receipients then Use Existing List.
When the Select Data Source dialog box appears, select a blank Excel document (or any existing Excel document you have accessible). This will enable the required buttons.

Note: If you do not rename the field, then the data merged within will be the same for all like-named fields.

See Also

To set up a Word merge:

  • Step 1 — Create the MS Word document that will be used as the template.
  • Step 2 — Upload the Word document to a SmartFolder.
  • Step 3 — Create a Special — MS Word Merge custom field.

Advanced Word Merge Features Include:

  • Exporting List View Results to Microsoft Word
  • Uploading a MS Word Merge Document to a Custom Field
  • Including Tables in a Word Merge Document
  • Using ReportProperty with a Word Merge Document
  • Including Check Boxes on an MS Word Merge Document
  • Including XML on an MS Word Merge Document
  • Using Conditional Logic on a MS Word Merge Document

Понравилась статья? Поделить с друзьями:
  • Formula excel different from
  • Forms for word рамки
  • Formula excel blank value
  • Forms and microsoft word
  • Formula errors in excel