Newbie Question - File Extension For The Form?

Dec 11, 2006

Hello. I have a mdb access file. When I open it, I can see lots of tables. How on earth do I open a form? Do I need another file, if so, what extension should I look for on my computer?? I really dont want to create a new form, since a person who did it has told me that its all have been already done. I just need to open the form and enter the data in. Thanks for any help!!!:)

View Replies


ADVERTISEMENT

General :: Follow Hyperlink To A File Without Using File Extension?

Sep 6, 2012

Is it possible to follow a hyperlink to a file without using a file extension?

I have links being created based on the name of a file, but because I haven't used a file extension it crashes.

I know I can give the user a choice of what the file extension is and add it to the hyperlink, but it's an extra step, and another place for someone to make a mistake.

I'm potentially using 3 different file types, Word, Excel and PDF's.

The hyperlink works if I just reference a drive/folder, or if I add the file extension.

View 3 Replies View Related

File Extension And Hyperlinks

Mar 11, 2007

Hi Everyone

I have just solved one problem concerning creating hyperlinks based on values in other fields: See Previous Thread (http://www.access-programmers.co.uk/forums/showthread.php?t=124590)

but now I have another, the hyperlink I have created links to a document, while for the majority of time it is a word document it is not always, occasionally .xls or .pdf

So I need a way of building into the hyperlink code the file extension, my thoughts are it would involve check boxes and if statements (one check box for each) but I am unsure of how to do this, can anyone help?


My code is currently:

Private Sub H_Enter()
Form!H = "hyperlink#C:Documents and Settingscew1My DocumentsWORKSpecs" & Form!S & Form!PC & ".doc#"
End Sub

View 2 Replies View Related

General :: Ade File Extension

Oct 13, 2013

I have an old program with ade file extension and I would like to add some filters in one of the forms but I don't have design view or layout view option.

View 5 Replies View Related

General :: Access Production File Extension?

Jun 10, 2013

I want to release an Access program to the production environment for users. I remember there being a file extention that can be used so the users cannot access the DB or Code.

View 2 Replies View Related

Modules & VBA :: Popup Message Box Asking For Password / When Changing File Extension?

Jan 5, 2014

Is there and possiblity to have a pop up message box asking for password when changing file extension from accdr to accdb ?

View 6 Replies View Related

Newbie Date As Part Of File Name

Mar 22, 2008

Everything works great but I want to save the backup file with a unique name, like EX: myfile INTx.xls where intx = the date "Now", maybe, am I looking at this wrong.
Thanks Bob

View 12 Replies View Related

Developer Extension Add-in

Jan 31, 2008

Hello,

I accidentally removed my developer extension add-in from the access 2007 add-ins.

How can I get it back?
I dont know where the dll or exe resides.

View 8 Replies View Related

Field Extension

Jun 5, 2007

Is there anyway to extend a field set as text to more than 255 characters?

Thanks in advance

View 2 Replies View Related

Text Extension

Aug 14, 2006

Hi,

I have a text box and sometime the word in that text box is too long. So, is it possible to make the whole word appeared when the mouse is on the text box? I don't want to extented my text box.

Thanks,

Le

View 7 Replies View Related

Add New Extension In The Records Of A Colum

Feb 12, 2008

I am new here and dont know much about access but I have to do some things.

I have a table filled in access. This table (dlb_tbl) contains serveral colums. One colum named "type". The records of this colum has to be changed like this:

one record: 0RD00S101
this has to be changed into: EDH01-RD00S101

So there has to come a new extension EDH01- and the 0 has to be deleted. This has to be done to the whole colum. How can I make a query to do this?:o

View 4 Replies View Related

MS Developer Extension And Runtime

Jan 10, 2008

Several post in the recent past asked the question of how to package the db for distribution and how to run the Access db in computer not installed with Access. Before Access 2007, you must purchase another program for about one thousand dollar to do this. Microsoft now offer these two programs "Developer Extensions" and "Runtime" for free. The Developer Extension is a program that will package your db into an installation disk. You can package the Runtime program in the install disk for users that use computers without Access 2007. Here are the links to the MS website for the download.

http://www.microsoft.com/downloads/...&displaylang=en

http://www.microsoft.com/downloads/...&displaylang=en

View 2 Replies View Related

Adding Extension To Tables

Dec 1, 2013

I have around a hundred tables all with exactly the same format and headings that i would like to combine into one long table, but the copy-paste append data to table function doesn't do what i had hoped. How can I join my tables together? And is there an easy way to do all 100 at once?

View 3 Replies View Related

Extension For Access 2007 Database.

Aug 21, 2006

Greeting All,
I am trying the beta version of Access 2007 and realize that when converting Access 97 to Access 2007, the new db in Access 2007 has an extension of .accdb. I rename the db file name to xxxxx.mdb and the VB app fails to recognize it.

Is there any way to convert the xxxx.accdb (Access 2007 beta) to xxxx.mdb so that I can try my app against the Access 2007 db?????

Thank you for your time,

ConKi

View 1 Replies View Related

Importing Filenames Based Upon Extension

Apr 10, 2008

How would one go about scanning a hard drive for all mp3 files (i.e. *.mp3) and importing all of the titles into a database? I'm sure the dir function comes into play, but it seems to only handle "current" directory and not sub directories.

I was just curious is all..... haven't really dabbled that much in the file/directory functions.

View 5 Replies View Related

Modules & VBA :: Zip Code Not Importing With Extension

Jun 27, 2014

I have a pretty basic TransferSpreadsheet module that works well except that if the Zip code has the four digit extension, it's not importing.

Option Compare Database

Dim myCheck
Function MeridianLinkFileImport()
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "tbl_MeridianLinkFileImport", "R:DEPT-BRCONSUMER LENDINGMarketing Campaigns2014 Auto Loan PrescreenReport from LoansPQ.xls", True, "Sheet1!A3:AO50000"
End Function

If there is no extention, it is importing fine... 85086 works fine but 85018-4710 doesn't import.

The field is a Short Text data type.

View 3 Replies View Related

Queries :: Expression To Remove TIF Extension

Mar 14, 2013

How to create an expression that removes the ".tif" extension of a file path.The data looks like this in it raw form:

J:201303080056273_ELECTRICALRETAILER_00100562 73_ELECTRICALRETAILER_001_3.tif

In my query grid in the filed row I have the following:

ImageRef: Mid([strImagePath],111,38)

which produces the following:

00056273_ELECTRICALRETAILER_001_3.tif
00056273_ELECTRICALRETAILER_001_31.tif

and so on...

What I need to do is remove the ".tif" part of the data. because of the way the path is output with regards to the tif image number, I'm having difficulty in targeting only that data that comes before the ".tif" extension.Is there a method I can use that will remove the right 4 characters and in conjunction with my expression above produce the following:

00056273_ELECTRICALRETAILER_001_3
00056273_ELECTRICALRETAILER_001_31

I've managed to work out how to get the data without the file extension ".tif" with the following expression:

ImageRef1: Left([strImagePath],Len([strImagePath])-4)

which gives me the following:

domgennt.dggroup.comglobalResourceApplication sUNIeFlowIMAGES201303080056273_ELECTRICALRET AILER_0010056273_ELECTRICALRETAILER_001_3

and

domgennt.dggroup.comglobalResourceApplication sUNIeFlowIMAGES201303080056273_ELECTRICALRET AILER_0010056273_ELECTRICALRETAILER_001_31

How can I combine the following expression with the above expression to get what I need:

Combine - Mid([strImagePath],111,38) with Left([strImagePath],Len([strImagePath])-4)

to get this result:

00056273_ELECTRICALRETAILER_001_3
00056273_ELECTRICALRETAILER_001_31

View 8 Replies View Related

Newbie Needs Some Form Help.......

May 9, 2006

Here it is...

I need to make my form prompt me for an account number and have the fields in the form populate with any data that the tables contain for that account number.

If there is no account number in the table like that, I need it to make a new record.

Any ideas?

Trey:D

View 1 Replies View Related

Newbie Needs Form Help

Sep 3, 2004

So I read through about 50 posts trying to find one that resembled mine, but unfortunately I couldn't.

What I am trying to accomplish is this:

I would like to set up a database for reservations of meeting rooms at my place of employment.
My experience with Access is very limited, and I find myself getting stuck. What is making things difficult
for me is the fact that I would like to set up the interface so that people with absolutely no Access
background could still use it. This means I am using the calendar tool for people to input the date
of their reservation and giving them a command button to submit. That part works just fine, however,
I am having difficulty in making a query that works through a form so that people can use the same
calendar set up to inquire what reservations have already been made. I also am having a hard time with
figuring out how to limit people from double booking rooms (i.e. i don't know how to limit just the time,
and not the date or room). I would appreciate any advice on how to get this project started, so that
I can move further along and be back on here to ask more questions when I get stuck again. Thanks
in advance for your help.

View 1 Replies View Related

Reports :: Masking For Phone Number Plus Extension In Expression?

Jan 12, 2014

I have the following expression as part of the recordsource for a report:

Is it possible to put a mask on the output of [phone1]? Ideally something like: (716) 555-5555 x1234

Code : phone1: [ContactNo1] & " " & [ContactNo1_ext]

View 10 Replies View Related

Newbie Here...Form Question

Dec 14, 2005

Hi!
I just found this forum and is exactly what i was looking for!:D

Anyway, i am a new access developer and i am currently starting to get around.
I have a question. I been working on this database for a few weeks and when i created any subforms, fields or buttons some sort of wizard would pop-up and and walk me through setting all the properties and so on. For some reason thats not happening any longer. It just creates the field or button and thats it. So i have to right click, properties and so on but the wizard thing(or whatever is called) was easier. The harder stuff that i dont know how to do was easy. Does anyone know what i am talking about?

thanks a lot!
Durien

View 3 Replies View Related

Help With Form Linking For Newbie

Nov 8, 2004

New to Access programing and need help please. I have a main form that requires the input of a building #, this takes the primary key spot for all records. On the main form is a monitors field which calls up a form titled Resource Monitors and allows me to input primary and mutiple alternates information. My questions is, how do I get the Resource Monitors form to automatically look at what record (building) is currently open in the main form and automatically adjust the Resource Monitors (building) field to match. I have created a 1-to-1 releationship between the building field in both forms, and created a subdatasheet in Resource Monitors that correlates the entries from both forms. What is my next logical step to make this work?

View 4 Replies View Related

Form Mapping Newbie

Jul 23, 2005

I have designed the database i wanted but now i want to link the fields from a access form to a pre designed template i designed in both microsoft word and pdf. When a user types the information in and clicks preview the information typed in access field will match the field in the template any ideas or software programs that do this.

View 2 Replies View Related

Newbie - Form Question

May 22, 2007

Hi

I'd like to display several rows of data (records) on
a Form. Each row has 4 fields. One of the fields (field name is Description) could contain up to 150 characters. So I would like to be able to display the first 40 characters of that field
and have a "scroll bar" for that field so the user can
scroll thru the remaining Description for that row (record) .

Can that be done in ACCESS?

Thanks!!

View 2 Replies View Related

From Form To Query - Access Newbie

Aug 24, 2005

Hi all. I am fairly new to access and am trying to do something that shouldn't be that hard. I have a simple form with one text box and a command button on it. I have the command button set to run an update query.

My problem is that when I enter data and press the button, I don't know how to get the entered data into the query?

I know this is simple to do, but since I am new to access, I can't figure it out. Does anyone have a simple example or step by step details that they can share with me?

Thanks

Chris

View 2 Replies View Related

Newbie: Changing The Value Of A Field On Form

Dec 11, 2005

Hello...

I am a newbie to Access or any database for that matter. So please be gentle.
I'm in the process of writing an automotive invoicing database and have gotten stuck early in the game.
On my form I have Qty1 - Mat1 - and Amt1 fields placed from my database.
In Amt1 I would like to typein an amount and have it multiplied by 15% (.015).
I fiddled with the "On Enter" in the Amt1 property box but got nowhere.
Can someone help???

Thanks for your time
d9085@hotmail.com

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved