Search results

  1. B

    Creating a query to write a value

    I have a form (frmTraveler) in which a user is given a selection of levels for a type of trip from a drop down box (TripLevel). Basically, if a user picks level A, then I would like a value to be written to the corresponding record in another table (tblHotel). The PK is an autonumber...
  2. B

    Hiding fields

    On a form, what is the best way to hide a label or text box? I'm guessing that I can do a checkbox which would work for me and just write a macro to hide on a false value?
  3. B

    Better way to create tables?

    Ok that makes sense...this TravelerID value, that could be the autonumber since the company is not assigning any numbers of it's own?
  4. B

    Better way to create tables?

    I am developing a database which will track some of my companies clients bonus trips. Basically everyone is going to the same place but folks are of different levels. Level A is a 14 day trip with X number of activities, Level B is a 10 day trip with Y number of activities and so on. The...
  5. B

    Changing form background

    Perfect, got it thanks!
  6. B

    Changing form background

    If a form is created in design view without one of the pre-built designs. Is there a way to change that background to one of the basic ones included in Access when using the wizard?
  7. B

    Changing table linked to a report

    I have a report with several subreports that I would like to have the exact same layout for 5 other reports. Only difference would be the main table that the report is linked to (which I did using a wizard) and the header. Is there a way for me to take my original report...copy it, and link...
  8. B

    Sorting an Access Runtime form

    Found the code...pretty basic. Me.OrderBy = "[Name]" Me.OrderByOn = True
  9. B

    Sorting an Access Runtime form

    Know any good links off the top of your head for vba code that'll do it? No doubt it's already been written for a function like this.
  10. B

    Sorting an Access Runtime form

    In Access it's very easy to sort a Tabular form by a column. However I don't believe that there's a sort button in Runtime. The MDB (soon to be MDE) is pretty basic. One table, and one form linking to that table...pretty basic. Any suggestions on sorting columns in the runtime version? My...
  11. B

    Loading form fields from table

    No, not a stupid question at all. Maybe the answer is though :) Well, I know pretty much nothing about Access or VB. Everything I know is picked up on my own, so I teach myself as I go. I couldn't even tell ya what a bound form is without looking it up.
  12. B

    Loading form fields from table

    I have a single record table/multi field table which I'm trying to load into text boxes for the user to edit. Any way to get this code to work? I know that it works the other way around, but wasn't sure how to load fields into a form. Private Sub Form_Load() Dim MyDB As DAO.Database Dim...
  13. B

    Showing table fields in a report

    Ok, this would be new to me...how would I use the dlookup? Let's say I'm starting off with a blank report...
  14. B

    Showing table fields in a report

    I just tried simply using the toolbox to create a 'text box', should that work? From there I simply select the control source table and field that I need such as... =tbl1!Field1 However when I try to view the report it only shows #NAME?
  15. B

    Showing table fields in a report

    Pretty basic here I hope. 4 different tables, each has just one record with several different fields. In 4 different places on the report I want to display most of the fields from most of the tables in a specific format, such as FIELD1 and FIELD2 from tbl1 being right next to each other...
  16. B

    Creating formal letter

    I know mail merge is one option, but to help further "idiot" proof the program...was looking to keep everything all in one. I've done it with mail merge in the past and was requested to keep it all in Access this time which shouldn't be all that difficult is my guess. But I'll look into doing...
  17. B

    Filling a table using combo box

    I have one table (tblComplete) with a listing of 30-50 company names and associated information... "tblComplete" has fields: AutoNumber, Company, Address, City, State, Zip, Phone On a form I created a combo box linked to AutoNumber and Company to drop down the list. Once the 'company' is...
  18. B

    Creating formal letter

    I need to create a basic program that puts selected items into a letter. This letter would contain a scanned image for a header, then selected company names as the body, and finally a concluding line which is already entered into a table. If I want to do this without using Word mail merge, can...
  19. B

    Combining data on a single table

    Ok, for some reason the output is not correct. Attached is a zip with part of the table and the query I'm running on that table. Any ideas as to why it's not outputting correctly?
  20. B

    Combining data on a single table

    No. All of our CPU's are IBM, but even there I was looking for specific models. So I did the same thing for the CPU's.
Back
Top Bottom