how to format fields so not to type in same repetitious data?

  • Thread starter Thread starter W E B G U R L
  • Start date Start date
W

W E B G U R L

I have a column where I add reference to images in a folder (for the web)

I want to format the data type so that ../images/ automatically appears in the column and
then I just add the file name after this so I am not having to type this all the time

Thanks in advance

repetitious
 
Just save the name of the image in the table then and in the query append
the full path to it.
 
found it!

input mask!


I have a column where I add reference to images in a folder (for the web)

I want to format the data type so that ../images/ automatically appears in the column and
then I just add the file name after this so I am not having to type this all the time

Thanks in advance

repetitious
 
Looks like I was wrong.

I typed in the input mask:

.../images thinking that would do it but I am missing something or not the right section



found it!

input mask!


I have a column where I add reference to images in a folder (for the web)

I want to format the data type so that ../images/ automatically appears in the column and
then I just add the file name after this so I am not having to type this all the time

Thanks in advance

repetitious
 
I have a column where I add reference to images in a folder (for the web)

I want to format the data type so that ../images/ automatically appears in the column and
then I just add the file name after this so I am not having to type this all the time

Neither a Format - which will control how the data is *displayed*
without changing what's stored - nor a Mask - which only constrains
what you can and cannot type - will work in this case.

One way is to set the Default property of the textbox to

"../images/"

and set its SelStart property to 11.

John W. Vinson[MVP]
 
W E B G U R L said:
I have a column where I add reference to images in a folder (for the web)

I want to format the data type so that ../images/ automatically appears in the column and
then I just add the file name after this so I am not having to type this all the time

Not quite exactly what you want but try hitting ctrl+' in the field.
This will repeat the last entry done. You will get the file name
though too.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
 

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

Back
Top