Reply
 
Thread Tools Display Modes
  #1   Report Post  
N. Mulder
 
Posts: n/a
Default Max characters in popup ASK field.

Hello,

I've a question about the popup with comes with the ASK field.
I shall explain what my intension is about my word document.

Whenever a collegae starts the word document (a dot file) a popup will
come with the question to fill in a number to select the right logo
that will comes at the top of the document. That works perfectly. But
the number of choices is increasing and i don't think if this is the
right way to do this.
Because the numbers should be explained they will listed in the
'question' part. But it has a max number of characters, so the number
of choices is limited.

Does somebody has a better sollution for my 'problem'?

Thanks in advance!
  #2   Report Post  
Peter Jamieson
 
Posts: n/a
Default

There are always many different ways to do things in Word, but I think in
this case the choices are really:
a. keep the approach simple using ASK, but perhaps change it so the user
has to make a bit more of an effort
b. implement a VBA userform that replaces the ASK, and which ideally makes
it simpler for the user to select, e.g. by selecting directly from
thumbnails of the images (I have no idea how feasible/easy that is in VBA
and you would probably need to ask in a more programming-oriented newsgroup)
or at least allowing them to preview, or at the very least allowing
selection from a list of file names.

In both cases, if you are able to put all the images in a single folder and
to give each image a descriptive name (and in case (a), this name would
preferably be short and memorable) then you don't need a prompt text that
details every possible choice, but obviously in case (a) your users need to
know the names of the images they use frequently, or to be able to find them
out.

I guess you could also consider some approach based on putting all the
images in AUTOTEXTs, but am not sure that would actually make anything any
easier.

Peter Jamieson
"N. Mulder" wrote in message
om...
Hello,

I've a question about the popup with comes with the ASK field.
I shall explain what my intension is about my word document.

Whenever a collegae starts the word document (a dot file) a popup will
come with the question to fill in a number to select the right logo
that will comes at the top of the document. That works perfectly. But
the number of choices is increasing and i don't think if this is the
right way to do this.
Because the numbers should be explained they will listed in the
'question' part. But it has a max number of characters, so the number
of choices is limited.

Does somebody has a better sollution for my 'problem'?

Thanks in advance!



  #3   Report Post  
N. Mulder
 
Posts: n/a
Default

Peter, thanks for your fast response!
What i didn't mention in my first post is that a make the right logo visible
with a IF statement. The logo will be pasted in the document with
INCLUDEPICTURE.

The problem is that this 'selection of a logo' should be implemented in many
word documents. Maybe a macro is a good alternative then. But won't that slow
down the total process?

The logo's have a clear filename so the user could recognice them by the
name of it. Can't I create a inputscreen which wil appear at the start of the
document where all the filenames of the logo's will appear on that
inputscreen en the user only has to select the appropiate logo? Or is that
too difficult to make since i'm not very familar with macro's.

Thanks in advance for any response.

"Peter Jamieson" wrote:

There are always many different ways to do things in Word, but I think in
this case the choices are really:
a. keep the approach simple using ASK, but perhaps change it so the user
has to make a bit more of an effort
b. implement a VBA userform that replaces the ASK, and which ideally makes
it simpler for the user to select, e.g. by selecting directly from
thumbnails of the images (I have no idea how feasible/easy that is in VBA
and you would probably need to ask in a more programming-oriented newsgroup)
or at least allowing them to preview, or at the very least allowing
selection from a list of file names.

In both cases, if you are able to put all the images in a single folder and
to give each image a descriptive name (and in case (a), this name would
preferably be short and memorable) then you don't need a prompt text that
details every possible choice, but obviously in case (a) your users need to
know the names of the images they use frequently, or to be able to find them
out.

I guess you could also consider some approach based on putting all the
images in AUTOTEXTs, but am not sure that would actually make anything any
easier.

Peter Jamieson
"N. Mulder" wrote in message
om...
Hello,

I've a question about the popup with comes with the ASK field.
I shall explain what my intension is about my word document.

Whenever a collegae starts the word document (a dot file) a popup will
come with the question to fill in a number to select the right logo
that will comes at the top of the document. That works perfectly. But
the number of choices is increasing and i don't think if this is the
right way to do this.
Because the numbers should be explained they will listed in the
'question' part. But it has a max number of characters, so the number
of choices is limited.

Does somebody has a better sollution for my 'problem'?

Thanks in advance!




  #4   Report Post  
Peter Jamieson
 
Posts: n/a
Default

The problem is that this 'selection of a logo' should be implemented in
many
word documents. Maybe a macro is a good alternative then. But won't that
slow
down the total process?


It might slow it down a bit, probably depending on how you actually insert
the logo - I was thinking of something like

{ INCLUDEPICTURE "c:\\icons\\{ DOCVARIABLE iconfilename }" } but you could
insert the picture using VBA code or use other approaches.

But unless it slows down a /lot/ it's probably better to go for a clear,
simple process.

Can't I create a inputscreen which wil appear at the start of the
document where all the filenames of the logo's will appear on that
inputscreen en the user only has to select the appropiate logo? Or is that
too difficult to make since i'm not very familar with macro's.


That would probably be the simplest approach - I think it would be fairly
easily done, but I don't do much macro stuff using Userforms either.

Peter Jamieson

"N. Mulder" N. wrote in message
...
Peter, thanks for your fast response!
What i didn't mention in my first post is that a make the right logo
visible
with a IF statement. The logo will be pasted in the document with
INCLUDEPICTURE.

The problem is that this 'selection of a logo' should be implemented in
many
word documents. Maybe a macro is a good alternative then. But won't that
slow
down the total process?

The logo's have a clear filename so the user could recognice them by the
name of it. Can't I create a inputscreen which wil appear at the start of
the
document where all the filenames of the logo's will appear on that
inputscreen en the user only has to select the appropiate logo? Or is that
too difficult to make since i'm not very familar with macro's.

Thanks in advance for any response.

"Peter Jamieson" wrote:

There are always many different ways to do things in Word, but I think in
this case the choices are really:
a. keep the approach simple using ASK, but perhaps change it so the user
has to make a bit more of an effort
b. implement a VBA userform that replaces the ASK, and which ideally
makes
it simpler for the user to select, e.g. by selecting directly from
thumbnails of the images (I have no idea how feasible/easy that is in VBA
and you would probably need to ask in a more programming-oriented
newsgroup)
or at least allowing them to preview, or at the very least allowing
selection from a list of file names.

In both cases, if you are able to put all the images in a single folder
and
to give each image a descriptive name (and in case (a), this name would
preferably be short and memorable) then you don't need a prompt text that
details every possible choice, but obviously in case (a) your users need
to
know the names of the images they use frequently, or to be able to find
them
out.

I guess you could also consider some approach based on putting all the
images in AUTOTEXTs, but am not sure that would actually make anything
any
easier.

Peter Jamieson
"N. Mulder" wrote in message
om...
Hello,

I've a question about the popup with comes with the ASK field.
I shall explain what my intension is about my word document.

Whenever a collegae starts the word document (a dot file) a popup will
come with the question to fill in a number to select the right logo
that will comes at the top of the document. That works perfectly. But
the number of choices is increasing and i don't think if this is the
right way to do this.
Because the numbers should be explained they will listed in the
'question' part. But it has a max number of characters, so the number
of choices is limited.

Does somebody has a better sollution for my 'problem'?

Thanks in advance!






  #5   Report Post  
N. Mulder
 
Posts: n/a
Default

I think the { INCLUDEPICTURE "c:\\icons\\{ DOCVARIABLE iconfilename }" }
approach should be the easiest one.

Can u give me a reference or the right newsgroup where i can discuss about
my 'problem', because we both don't do much macro.

Thank you for your time and effort.


"Peter Jamieson" wrote:

The problem is that this 'selection of a logo' should be implemented in
many
word documents. Maybe a macro is a good alternative then. But won't that
slow
down the total process?


It might slow it down a bit, probably depending on how you actually insert
the logo - I was thinking of something like

{ INCLUDEPICTURE "c:\\icons\\{ DOCVARIABLE iconfilename }" } but you could
insert the picture using VBA code or use other approaches.

But unless it slows down a /lot/ it's probably better to go for a clear,
simple process.

Can't I create a inputscreen which wil appear at the start of the
document where all the filenames of the logo's will appear on that
inputscreen en the user only has to select the appropiate logo? Or is that
too difficult to make since i'm not very familar with macro's.


That would probably be the simplest approach - I think it would be fairly
easily done, but I don't do much macro stuff using Userforms either.

Peter Jamieson

"N. Mulder" N. wrote in message
...
Peter, thanks for your fast response!
What i didn't mention in my first post is that a make the right logo
visible
with a IF statement. The logo will be pasted in the document with
INCLUDEPICTURE.

The problem is that this 'selection of a logo' should be implemented in
many
word documents. Maybe a macro is a good alternative then. But won't that
slow
down the total process?

The logo's have a clear filename so the user could recognice them by the
name of it. Can't I create a inputscreen which wil appear at the start of
the
document where all the filenames of the logo's will appear on that
inputscreen en the user only has to select the appropiate logo? Or is that
too difficult to make since i'm not very familar with macro's.

Thanks in advance for any response.

"Peter Jamieson" wrote:

There are always many different ways to do things in Word, but I think in
this case the choices are really:
a. keep the approach simple using ASK, but perhaps change it so the user
has to make a bit more of an effort
b. implement a VBA userform that replaces the ASK, and which ideally
makes
it simpler for the user to select, e.g. by selecting directly from
thumbnails of the images (I have no idea how feasible/easy that is in VBA
and you would probably need to ask in a more programming-oriented
newsgroup)
or at least allowing them to preview, or at the very least allowing
selection from a list of file names.

In both cases, if you are able to put all the images in a single folder
and
to give each image a descriptive name (and in case (a), this name would
preferably be short and memorable) then you don't need a prompt text that
details every possible choice, but obviously in case (a) your users need
to
know the names of the images they use frequently, or to be able to find
them
out.

I guess you could also consider some approach based on putting all the
images in AUTOTEXTs, but am not sure that would actually make anything
any
easier.

Peter Jamieson
"N. Mulder" wrote in message
om...
Hello,

I've a question about the popup with comes with the ASK field.
I shall explain what my intension is about my word document.

Whenever a collegae starts the word document (a dot file) a popup will
come with the question to fill in a number to select the right logo
that will comes at the top of the document. That works perfectly. But
the number of choices is increasing and i don't think if this is the
right way to do this.
Because the numbers should be explained they will listed in the
'question' part. But it has a max number of characters, so the number
of choices is limited.

Does somebody has a better sollution for my 'problem'?

Thanks in advance!








  #6   Report Post  
Peter Jamieson
 
Posts: n/a
Default

I would try

microsoft.public.word.vba.beginners
and
microsoft.public.word.vba.userforms

Peter Jamieson

"N. Mulder" N. wrote in message
...
I think the { INCLUDEPICTURE "c:\\icons\\{ DOCVARIABLE iconfilename }" }
approach should be the easiest one.

Can u give me a reference or the right newsgroup where i can discuss about
my 'problem', because we both don't do much macro.

Thank you for your time and effort.


"Peter Jamieson" wrote:

The problem is that this 'selection of a logo' should be implemented in
many
word documents. Maybe a macro is a good alternative then. But won't
that
slow
down the total process?


It might slow it down a bit, probably depending on how you actually
insert
the logo - I was thinking of something like

{ INCLUDEPICTURE "c:\\icons\\{ DOCVARIABLE iconfilename }" } but you
could
insert the picture using VBA code or use other approaches.

But unless it slows down a /lot/ it's probably better to go for a clear,
simple process.

Can't I create a inputscreen which wil appear at the start of the
document where all the filenames of the logo's will appear on that
inputscreen en the user only has to select the appropiate logo? Or is
that
too difficult to make since i'm not very familar with macro's.


That would probably be the simplest approach - I think it would be fairly
easily done, but I don't do much macro stuff using Userforms either.

Peter Jamieson

"N. Mulder" N.
wrote in message
...
Peter, thanks for your fast response!
What i didn't mention in my first post is that a make the right logo
visible
with a IF statement. The logo will be pasted in the document with
INCLUDEPICTURE.

The problem is that this 'selection of a logo' should be implemented in
many
word documents. Maybe a macro is a good alternative then. But won't
that
slow
down the total process?

The logo's have a clear filename so the user could recognice them by
the
name of it. Can't I create a inputscreen which wil appear at the start
of
the
document where all the filenames of the logo's will appear on that
inputscreen en the user only has to select the appropiate logo? Or is
that
too difficult to make since i'm not very familar with macro's.

Thanks in advance for any response.

"Peter Jamieson" wrote:

There are always many different ways to do things in Word, but I think
in
this case the choices are really:
a. keep the approach simple using ASK, but perhaps change it so the
user
has to make a bit more of an effort
b. implement a VBA userform that replaces the ASK, and which ideally
makes
it simpler for the user to select, e.g. by selecting directly from
thumbnails of the images (I have no idea how feasible/easy that is in
VBA
and you would probably need to ask in a more programming-oriented
newsgroup)
or at least allowing them to preview, or at the very least allowing
selection from a list of file names.

In both cases, if you are able to put all the images in a single
folder
and
to give each image a descriptive name (and in case (a), this name
would
preferably be short and memorable) then you don't need a prompt text
that
details every possible choice, but obviously in case (a) your users
need
to
know the names of the images they use frequently, or to be able to
find
them
out.

I guess you could also consider some approach based on putting all the
images in AUTOTEXTs, but am not sure that would actually make anything
any
easier.

Peter Jamieson
"N. Mulder" wrote in message
om...
Hello,

I've a question about the popup with comes with the ASK field.
I shall explain what my intension is about my word document.

Whenever a collegae starts the word document (a dot file) a popup
will
come with the question to fill in a number to select the right logo
that will comes at the top of the document. That works perfectly.
But
the number of choices is increasing and i don't think if this is the
right way to do this.
Because the numbers should be explained they will listed in the
'question' part. But it has a max number of characters, so the
number
of choices is limited.

Does somebody has a better sollution for my 'problem'?

Thanks in advance!








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
Enter data in 1 text form field & have multiple locations fill Lee Microsoft Word Help 1 March 16th 05 10:56 PM
Text cut off in merged document when very long field data charlene leblanc Mailmerge 0 January 17th 05 06:03 PM
International characters in mail merge sandra Mailmerge 1 December 23rd 04 05:42 AM
Text Form Field Ref in Footer Won't Update on Screen StarWine Microsoft Word Help 3 December 6th 04 06:17 PM
Field code # characters (no spaces) FOR SPECIFIC DOC SECTION Christian Microsoft Word Help 1 November 28th 04 06:14 PM


All times are GMT +1. The time now is 02:00 AM.

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

About Us

"It's about Microsoft Word"