Search results

  1. doss

    button

    Thanks Pat. I'll have to keep that in mind so I don't cause more work for myself......
  2. doss

    button

    No problem. Hopefully that works out for you. Much better than doing the "button" thing.
  3. doss

    button

    Me.NameUnbound1 = Forms!FormName!ComboBoxHeading.column(2) Me.NameUnbound2= Forms!FormName!ComboBoxHeading.column(3) Me.NameUnbound3 = Forms!FormName!ComboBoxHeading.column(4) This is what is going in the AfterUpdate of the combo box field.
  4. doss

    button

    Yes, with me.txtname being the name of the unbound textboxes and the column corresponding the the position of the field in the combo box query grid. I start with column 2 because in my example, the autoID is column(0), and the Product Number or whatever is column(1). So you would end up with...
  5. doss

    button

    I'm assuming that you just want the infomation from the combo box viewed on the form and that you aren't needing to save it to any table.... I am going to post a db, I hope you can open it up. Basically, you have the combo box with all the fields you want to view, you have the column count...
  6. doss

    button

    What exactly is the button supposed to do?
  7. doss

    Bounded Textbox

    Okay, I've attached a database. I tried it both with the field as a text field and also as a date/time field and it didn't seem to make any difference. That bit of code should work for you..... Compare with your database and see what's different. Make sure the name of the field you are...
  8. doss

    Bounded Textbox

    Oooops. Sorry Chris. Guess I should have double checked that before posting. I'll try to look at that here in a little bit.... If anyone else has any ideas in the meantime.....
  9. doss

    Bounded Textbox

    On the OnClick event of the button you could have something like Me.txtdate = Date() I think that should do it....
  10. doss

    Creating Invoice ???

    Pat, Thanks for your response. I think he's got it under control now.......
  11. doss

    Creating Invoice ???

    Pat, It's actually a little more complicated than that I think. He sent me the database yesterday right before I had to leave work, so I haven't really had any time to look at it. I took a brief peek this morning and there is a problem with structure/relationships. He's got primary keys set...
  12. doss

    unsplit database

    Hello. You can make a copy of your backend, and put it on your desktop and name it so that you know it's the testing copy. Then open up the copy of the front end where it shows the database window. Go to tools and select Linked Table Manager. Check the box for prompt for new location and check...
  13. doss

    Creating Invoice ???

    Yes, you can email it to me.....but I warn you, no garuntees that I can fix your problem..... :) That's why I was hoping you would be able to post it so that everyone would have a chance to look at it. Better chance of you getting your problem solved... You might make a copy and then delete...
  14. doss

    Creating Invoice ???

    Can you zip your database and post it here?
  15. doss

    List

    Create a query with your fields from you table. Under the field for the checkbox where is says "Criteria" type True to show items checked or False to show items not checked. Use this query as the source for your report. There is alot of information on setting criteria for queries in the MS Help...
  16. doss

    Missing Records

    Hello. Do you have any criteria in your query? It sounds like the records you entered in may be missing something which is why they aren't showing up. Can you post a db with the table and query so we can see exactly what's going on?
  17. doss

    FieldName Headers

    Hello. Do you just have Access tables created? You will probably want to create some forms for data entry and you can definately change colors, fonts, etc. on the form.
  18. doss

    Overflow

    I don't know the answer, but I did a search on this forum for overflow and came up with a lot of threads. You will probably be able to find some help that way.....
  19. doss

    Report Template/Master Question

    Hello. I'm not sure that I completely understand what you mean by "Building a Lookup Table for the title of the Report...." Here is what we do when we need another report: If we have one that is already similar, we simply copy and paste the report, rename it, and then change the record...
  20. doss

    Adding new fields to a pre-created form

    Hello. Go to your form in design view and look at the Data tab on the Properties window. Look at your record source and add that field to the query you have running your form.....
Back
Top Bottom