Forms :: Combo Box And Listing All Information

Oct 7, 2013

Our software was purchased with a volume license, so I want to make a combo box with all of our volume license purchases and when the person selects the volume license number all of the PCs that have software purchased with that volume license are displayed.Below is my code

Private Sub cboVolumeLicensing_AfterUpdate()
'Moves to Volume Licensing field and
'finds records where "Volume Licensing" matches whatever is selected in the combo box
DoCmd.ShowAllRecords
Me!cboVolumeLicensing.SetFocus
DoCmd.FindRecord Me!cboVolumeLicensing
'Set value of combo box equal to an empty string
End Sub

The Query is Volume License Query and it is composed of Main Table and Volume Licensing Table connected by serial number on the main table and volume license on the volume licensing table..The combo box is volumeLicensing .And the form I am trying to do this in is called Volume License Form

View Replies


ADVERTISEMENT

Combo Box With Listing Record In List Box

Sep 19, 2006

Hi all,

Please refer to the pic 'figure1' to review my question. Thanks.

I need to use a combo box to select the employee name and show the following Ref No. by using the list box. is it possible to do that? If can make it, how bout i need to delete the selected record, any idea for that? Thank you.

View 2 Replies View Related

Forms :: Using Combo Box To Fetch Information On A Form

Aug 13, 2013

I have a form that is used for data entry; from there I want to create a new form where I can select a field from a combo box which would generate the amount associated.

Example on the first form it has a Carpenter that has a calculated output of $1000, on the second form I would want to click on the combo box and pick carpenter and I would like the calculated field to be shown next to it.

I tried making an if statement on an unbound box but I found it difficult

=IIf([Combo2]=Building Service Engineer, =[Forms]![Estimate]![Text787],IIf([Combo2]=Carpenter,
=[Forms]![Estimate]![Text788],IIf([Combo2]=Custodian,
=[Forms]![Estimate]![Text789],IIf([Combo2]=Custodian - Shift Pay (5am - 6am) ,
=[Forms]![Estimate]![Text790],IIf([Combo2]=Drafting Technician,

[Code] ......

[Text787]-[Text805] are fields from the first form, these are calculated fields that multiplies wages quantity etc.

Also [Combo2] wont let me pick any data that I typed in.

View 3 Replies View Related

Forms :: Using Combo Information To Look Up Price Via Date?

Dec 27, 2013

I have a database I'm creating for DVD/blu-ray sales. I currently have a order system in place in a subform, which uses a combo box to find the customer and fills in all the information in the rest of the subform. One piece of information is the date of sale.

I need to be able to have the ability to change the price of the DVDs and have a history of sales with the right price. The easiest way to do this seemed to be by Date of sale. So the price is linked to the date of sale, when the price changes, all orders before that change use the old price, after use the current price.

I was wondering if there is anyway to have a second subform on the same page and us the date of sale from subform1 and have it display the price in the second subform?

View 7 Replies View Related

Forms :: Combo Box Lookup - Edit Customer Information

Apr 24, 2013

I have a sales form that contains a combo box lookup to tblCUSTOMERS. It allows me to select a previous customer if that person is already entered into the system. If the person is NOT in the system, a form pops up to add the customer into the table.

What I need to know is, if the person IS already in the table BUT their address etc. has changed, what is the best way to get to that record to edit it? I'm THINKING a button with a command to go to that customer's profile.

What is the code to open a form to the customer selected in the drop down.

the customer name field is CUSTID

View 6 Replies View Related

Forms :: Sequential Numbering Based On Information In Combo Field

Sep 4, 2014

Creating a form against a table with the following fields

EC
Project
Originator
Title
Full description
Effectivity
Etc....

Easy enough to create the Project combo box, problem comes with trying to systematically assign the next EC number.

When I select a Project from a combo box I want an EC assigned with format ECXXXX-### where XXXX is the project number from the combo box and ### is a sequential number. ECs should start at -001 for all projects.

Do I need to add an EC suffix field to hold just the ###? Then what?

View 6 Replies View Related

Forms :: Listing DB Tables In A List Box

Sep 17, 2014

I am after creating a list box that will display some of the tables within my database - there are between 10 and 15 tables and the names all follow the same pattern (They all start "tblD10").

View 1 Replies View Related

Forms :: Sorting Numerically - Incorrect Listing

May 16, 2013

I have a form that lists evidence items 1, 2, 3, ect....

The form is listing them 1, 10, 11, 12, 13, 2, 3, 4, 5...

I have tried right clicking the evidence item # field and doing a sort a to z, and it is still listing them the wrong way.

View 10 Replies View Related

General :: Collecting 2 Types Of Information From Combo Box

Mar 6, 2014

I have 2 tables

1. stocklist
2 product details

I created a form called " product details "

Using a combo box in the form "product details" I select a "part number " of which the part number and the associated description of the part comes into a fields called "part number " and "part description "

The part number selected then goes into a table called product details

Is it possible that when I select the part number , both the part number and the part description go into the table called product details.

View 1 Replies View Related

Text Boxes Showing Information From A Row In A Form Corresponding From A Combo Box

Jan 4, 2007

Hi,

I have a form that has several text boxes that correspond to a cell in a row. One of the columns contains just numbers 1-300. Now what I need is a combo box that contains the numbers 1-300 and when one of those numbers is selected I need it to import all the information from the same row into the correct text boxes.

For example when the number 3 is selected it will take the row with the number 3 in it, take all of the cells and import them into the right text box.

Thanks a bunch!

View 5 Replies View Related

Access 2007 / Combo Box To Update Tabbed Information On A Form?

Aug 29, 2012

I'm working with Access 2007 and am trying to make a form with multiple tabs that will update when a certain business name is selected in the combo box at the top of the form. I have tried looking up different codes to make the combo box update correctly but can't find anything. Right now I have this code in my After Update:

Private Sub cboBusinessName_AfterUpdate()
On Error GoTo myError
Dim rst As Object
Set rst = Me.RecordsetClone
rst.FindFirst "[GrowerID] = " & Me.cboBusinessName
Me.Bookmark = rst.Bookmark

leave:

If Not rst Is Nothing Then Set rst = Nothing
Exit Sub
myError:
MsgBox "Record Not Found"
Resume leave
End Sub

Here is a picture of the tabs and combo box.

View 3 Replies View Related

Forms :: Relating Information Between Main Form And Navigation Forms

Apr 11, 2013

New to the navigation form: I need several forms in the navigation form to all relate to the same client ID field. I have this information on the main form but the form with in the navigation form will not pick it up.

I have tried =[Forms]![Frm Client Information Navigation Panel]![ClientID] But just cant get it to pick up that information...

I would like to have something like the master link fields and, child link fields but when I add a form to the navigation form this option in not available.

View 1 Replies View Related

Query Listing

Jan 11, 2006

Hello All,

I am have some difficulies in the following query:

The result i need is Summary5 ResultG/001, G/0015 (Room) and soo on

Field Names Are:
Room & Summary5

I realy am not sure as how to do this, if it help the reason why i need to do this is for a report that will show "Asbestos Found In Rooms ...."(Summary5:Asbestos Found In Rooms" "&[Room]) is what i tried but this does not show it right, any ideas.

Alastair


**************************** Resolved With Thanks to raskew (Bob) & Matt Greatorex*****************

View 11 Replies View Related

Listing By Date

Dec 19, 2005

Hello

I have a table with a list of lectures and the dates and times they are running. I then have a related table which lists the feedback marks and comments for each lecture. I want to enter them via a form and have set up a form with the the lectures and then a subform for entering the feedback. This all works fine. However I would like to be able to have the lectures listed by date order and wondered what the best way is to make this work so that the user can simply scroll through each lecture on the form and it automatically goes through the list by date.

I hope this is clear and thanks for any help.

Kay

View 1 Replies View Related

Importing Directory Listing

Mar 13, 2007

Hi,

Having recently correlated the impossible pile of photos that I have on CD, including a lot of re-naming etc... I have now managed to get them down onto DVD.

I there an easy way to import a directory listing into an access database other than inputing the lot by hand? I don't wan't to add thumbnails just the file name and the directory it's in. I can embelish other details later via ASP, just need the bulk of the work done easily.

I have some experience of database design but not huge amounts of programming, other than the ASP side of things so if anyone has a complex answer please go gently with me!!!

Al

View 4 Replies View Related

IIF In Query Q - Listing All Entries

Jun 20, 2006

Hello,

I currently have a DB that has a field in a table that records which shift (A, B, or C) that some data was collected on. I am trying to write a Query in order to filter the results so that either the data from shifts A,B, or C show up, or if "All Shifts" is selected, then all the data shows up. I have another table set up that records the shift selection from a form. I was trying to use an Iif statement but it does not seem to be working for the "All Shifts" option. Selecting "Shift A" or "Shift B" etc. works fine.

IIf([ShiftSelect]="All Shifts","Shift [ABC]",[ShiftSelect])

**[ShiftSelect] containts the users selection for which shift they want to view.

I have also tried this with a wildcard statement (Like "*") instead of "Shift [ABC]", to see if I could get any data to show but I still get nothing when "All Shifts" is selected!

Let me know if you can see the problem, or know another way to go about this query!

View 2 Replies View Related

Listing Reports In A Listbox

Mar 15, 2006

I have a Form named frmClearances that lists the name, age, Club Clearing From, Club Clearing To and the Date of Clearance... this is used for my local sporting Club.

I have created reports that separate names into "Clubs Clearing From" so that each Club is aware of who has gone. The Reports are named...
clrSportingClubName

I have searched this Forum and all over as well, including Tutorials and I cannot understand how I can make a list box that contains the names of the reports so that they can be selected individually when required for each Club.

I copied the SQL for each query and placed it in the RecordSource of each Club Report so that I did not have numerous queries.

I have even copied code from other list boxes to then changed a couple of things but that has been to no avail.

Could somebody please explain to me how I do this? Thank-you very much in advance for any assistance.

View 2 Replies View Related

Report-Listing Names

Jun 22, 2005

I have a report that i am trying to list in the header section, a listing of all the names for a particular field, if it is in my report. I will use these names to send the report to.

View 1 Replies View Related

Listing Words In Report

Feb 23, 2006

So I am using 2003. On the report I have created I have this one entry that exists for all my records, it is a Name, and at the bottom of the report I am trying to create a summary that will list each of those names. I already have a count going, so I thought maybe I could tap that, but not every record has a name listed. I am farely inept at coding.

What I want is this:
(Institution 1) Accrediting Institution: ACICS
(Institution 2) Accrediting Institution: ACCST
(The part above is Done, what I need in Below)

(SUMMARY) Accrediting Institutions: ACICS, ACCST

Thanks

View 4 Replies View Related

ComboBox Not Listing Values

Sep 23, 2011

So I have a textbox on a form that contain values. I want to convert it to a ComboBox. Since a lot of these values are the same in a lot of records (for example, "Inventor"), I want the entered values to appear in the ComboBox dropdown so they can just be selected instead of typed in. I converted the textbox to a Combobox by right-clicking on the textbox => Change To => ComboBox. It changed successfully, but I want it to list the values in the dropdown, but it doesn't.

View 1 Replies View Related

Listing Controls On Open Form

Apr 15, 2006

Dear Friends

How do I list al the controls on an open form including mutiple subforms

Please advice

View 6 Replies View Related

Listing Data Rows As Coulmns

Jun 27, 2005

Hello all,

I have a crazy question. Is there a way to write a query that would display data rows with common ID's as if they were columns in a query? It's for visually representing row data as if they were one record in a list. Basically, I would like to take the following data...

fldID fldDetail fldValue
1 Shape Round
1 Color Blue
2 Shape Square
2 Color Red

And display it in a recordsource like each is one record:
ID Shape Color
1 Round Blue
2 Square Red

Is there a way to do this? HTMS.

View 2 Replies View Related

Listing All Records Not Linked To Another Table

Apr 22, 2006

Hi,

Relevant to this query are two tables, tblNames and tblLinks.

I've been trying, with a very limited understanding, to generate a list of every tblName.Name where tblName.NameID IS NOT in tblLinks.NameID.

Is this something I can do in the query design view or do I need to work with raw SQL?

Any tips appreciated:)

View 2 Replies View Related

Queries :: Listing All Data From Table One And Two

Dec 16, 2013

My aim is to chart the career history of many people in my DB and my intention is to achieve this with two "Main" tables with many smaller tables linked to it.

Table 1 will contain the generic data about the individual, employee number, name, DOB, etc etc (there are many more fields) and Table 2 would hold their career history. Where they have worked, when, etc.

When viewing Table 1, I see all data, including a sub table showing career history, which is great. What I would like to do however, is have a query that will return all data from table 1 and Table 2 that refer to the employee number.

Attempts that I have made thus far, mean I have to enter the employee number twice (I would prefer to enter this only once) and then it gives me many pages (in report view) each page has all data from table 1, and one entry from table 2.

I would like to see all data from table 1 and then all data from table two, listed.

View 4 Replies View Related

Forms :: Getting Information To Show Up In Box

Jun 20, 2013

I am creating a new form and right now I only have 3 controls: Employee name, Employee ID, and Hire date.

How can I type in an Employee's Name and when I hit enter I get the info in the other boxes to show up?So what I am wanting is to be able to type in a name and hit enter and have all the other boxes populate in the form?

View 1 Replies View Related

Forms :: Getting Information On A Form?

Sep 25, 2013

I have 2 tables

Main table called Site Details

and another table called expense codes

On the form I want to use a combo to look at the expense Number 52, 53, 54 ect

the in the next field to show the description of the code it relates to

How do I do this?

View 1 Replies View Related







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