Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.tables
dgliver dgliver is offline
external usenet poster
 
Posts: 3
Default How can I create an expandable table in a protected form?

I want to create a protected form for users to fill out, and I need the users
to be able to add/delete rows to a table without unprotecting the form. Can
anyone tell me how to do this?
  #2   Report Post  
Posted to microsoft.public.word.tables
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default How can I create an expandable table in a protected form?

The easiest solution is to place the table in an unprotected section of the
form; then users can add rows as they would in an unprotected table. Note,
however, that they will also be able to edit the table, which may not be
what you want.

--
Stefan Blom
Microsoft Word MVP



"dgliver" wrote in message
...
I want to create a protected form for users to fill out, and I need the
users
to be able to add/delete rows to a table without unprotecting the form.
Can
anyone tell me how to do this?



  #3   Report Post  
Posted to microsoft.public.word.tables
dgliver dgliver is offline
external usenet poster
 
Posts: 3
Default How can I create an expandable table in a protected form?

Stefan,

Thank you for your reply. I did think of that, but unfortunately I do need
the table to be protected also. My feeling is the functionality I want is
only possible by writing a macro, and I don't know VB. Any other ideas would
be welcome!

Greg


"Stefan Blom" wrote:

The easiest solution is to place the table in an unprotected section of the
form; then users can add rows as they would in an unprotected table. Note,
however, that they will also be able to edit the table, which may not be
what you want.

--
Stefan Blom
Microsoft Word MVP



"dgliver" wrote in message
...
I want to create a protected form for users to fill out, and I need the
users
to be able to add/delete rows to a table without unprotecting the form.
Can
anyone tell me how to do this?




  #4   Report Post  
Posted to microsoft.public.word.tables
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default How can I create an expandable table in a protected form?

I suspect that you are right: a macro is needed. I believe a common
workaround is to have a macro unprotect the form, make the desired changes,
and then reprotect it, but you should ask in a programming newsgroup such as
microsoft.public.word.vba.general for more knowledgeable assistance.

--
Stefan Blom
Microsoft Word MVP



"dgliver" wrote in message
...
Stefan,

Thank you for your reply. I did think of that, but unfortunately I do
need
the table to be protected also. My feeling is the functionality I want is
only possible by writing a macro, and I don't know VB. Any other ideas
would
be welcome!

Greg


"Stefan Blom" wrote:

The easiest solution is to place the table in an unprotected section of
the
form; then users can add rows as they would in an unprotected table.
Note,
however, that they will also be able to edit the table, which may not be
what you want.

--
Stefan Blom
Microsoft Word MVP



"dgliver" wrote in message
...
I want to create a protected form for users to fill out, and I need the
users
to be able to add/delete rows to a table without unprotecting the form.
Can
anyone tell me how to do this?






  #5   Report Post  
Posted to microsoft.public.word.tables
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default How can I create an expandable table in a protected form?

There's an example at http://www.gmayor.com/word_vba_examples.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Stefan Blom wrote:
I suspect that you are right: a macro is needed. I believe a common
workaround is to have a macro unprotect the form, make the desired
changes, and then reprotect it, but you should ask in a programming
newsgroup such as microsoft.public.word.vba.general for more
knowledgeable assistance.

"dgliver" wrote in message
...
Stefan,

Thank you for your reply. I did think of that, but unfortunately I
do need
the table to be protected also. My feeling is the functionality I
want is only possible by writing a macro, and I don't know VB. Any
other ideas would
be welcome!

Greg


"Stefan Blom" wrote:

The easiest solution is to place the table in an unprotected
section of the
form; then users can add rows as they would in an unprotected table.
Note,
however, that they will also be able to edit the table, which may
not be what you want.

--
Stefan Blom
Microsoft Word MVP



"dgliver" wrote in message
...
I want to create a protected form for users to fill out, and I
need the users
to be able to add/delete rows to a table without unprotecting the
form. Can
anyone tell me how to do this?





  #6   Report Post  
Posted to microsoft.public.word.tables
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default How can I create an expandable table in a protected form?

That is good news. :-)

--
Stefan Blom
Microsoft Word MVP



"Graham Mayor" wrote in message
...
There's an example at http://www.gmayor.com/word_vba_examples.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Stefan Blom wrote:
I suspect that you are right: a macro is needed. I believe a common
workaround is to have a macro unprotect the form, make the desired
changes, and then reprotect it, but you should ask in a programming
newsgroup such as microsoft.public.word.vba.general for more
knowledgeable assistance.

"dgliver" wrote in message
...
Stefan,

Thank you for your reply. I did think of that, but unfortunately I
do need
the table to be protected also. My feeling is the functionality I
want is only possible by writing a macro, and I don't know VB. Any
other ideas would
be welcome!

Greg


"Stefan Blom" wrote:

The easiest solution is to place the table in an unprotected
section of the
form; then users can add rows as they would in an unprotected table.
Note,
however, that they will also be able to edit the table, which may
not be what you want.

--
Stefan Blom
Microsoft Word MVP



"dgliver" wrote in message
...
I want to create a protected form for users to fill out, and I
need the users
to be able to add/delete rows to a table without unprotecting the
form. Can
anyone tell me how to do this?






  #7   Report Post  
Posted to microsoft.public.word.tables
dgliver dgliver is offline
external usenet poster
 
Posts: 3
Default How can I create an expandable table in a protected form?

Thanks Graham!

"Graham Mayor" wrote:

There's an example at http://www.gmayor.com/word_vba_examples.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



Stefan Blom wrote:
I suspect that you are right: a macro is needed. I believe a common
workaround is to have a macro unprotect the form, make the desired
changes, and then reprotect it, but you should ask in a programming
newsgroup such as microsoft.public.word.vba.general for more
knowledgeable assistance.

"dgliver" wrote in message
...
Stefan,

Thank you for your reply. I did think of that, but unfortunately I
do need
the table to be protected also. My feeling is the functionality I
want is only possible by writing a macro, and I don't know VB. Any
other ideas would
be welcome!

Greg


"Stefan Blom" wrote:

The easiest solution is to place the table in an unprotected
section of the
form; then users can add rows as they would in an unprotected table.
Note,
however, that they will also be able to edit the table, which may
not be what you want.

--
Stefan Blom
Microsoft Word MVP



"dgliver" wrote in message
...
I want to create a protected form for users to fill out, and I
need the users
to be able to add/delete rows to a table without unprotecting the
form. Can
anyone tell me how to do this?




Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How to create expandable tree (Jtree) in Word? MarK Microsoft Word Help 2 July 21st 23 04:42 PM
auto expandable form Lumpy Microsoft Word Help 1 February 3rd 08 07:04 AM
expandable tables in a locked form KG-C Tables 1 October 25th 07 04:26 AM
How do i create a expandable menu? Jason S Microsoft Word Help 2 March 4th 07 10:01 PM
Create a form that is protected but can be filled in and saved. cab Microsoft Word Help 1 January 24th 07 01:04 AM


All times are GMT +1. The time now is 12:11 AM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"