Recent content by gomikem

  1. G

    Upsize = good on server, but client won't load tables

    I ran the upsizing wizard from the server and everything turned out well using the FE and BE on the server. I tried to pull the FE(.mdb) off of the server and use it from a client machine and when I open any table, I get the error attached to this post. I have created and tested an ODBC...
  2. G

    Easy report question... I think

    It's only 6.5" and the data on the new pages is the version of the report before I updated. It's really wierd. Could two reports be linked together somehow?
  3. G

    Easy report question... I think

    I'm new to access and I'm learning as I go. I've got all the difficult stuff figured out pretty much, but the easy stuff is killing me.... I have a report that I just edited and for some reason, there is an extra page on the report that doesn't show up in design view. Is there a way to...
  4. G

    Custom Sort?

    Wayne, Can I post attachments to PMs?
  5. G

    Custom Sort?

    I tried the following: It gives this error: Then the debug takes me to this line of code: Anyone know what I'm doing wrong?
  6. G

    Custom Sort?

    I've added the order field to ShirtAvailability and added "Order" to the SQL Statement, but the size drop down is still out of order. Am I missing something?
  7. G

    Custom Sort?

    OK Thanks for helping!! I'm having a bit more trouble though. I have cascading Combo Boxes. The Shirt Size table is "ShirtSize" and the fields are "Size" and "Order" The following is the code I have. I don't see where I would add the order field. (Sorry if I look like an idiot. This...
  8. G

    Clear/ Reset form button?

    I will check that out. Thanks!
  9. G

    Custom Sort?

    I have a drop down list in one of my forms that lists shirt sizes. In the shirt size table, they are in the correct order, but on the form, it lists them in alpha. order.... 2XL 3XL Large Medium Small XL It's pretty frustrating to fill out the form because of this. Any way to sort them...
  10. G

    Clear/ Reset form button?

    I have an order form with a sub-form for each item in the order. Because this form writes to a few different tables, a lot of the fields are primary keys of a table. Due to these circumstances, if the user tries to click off of the sub-form, it won't let them go anywhere without filling out...
  11. G

    Adding a second auto number field to current table

    Is this possible, and how can I do it? Adding a second auto number field to current table and auto numbering current entries? I need to combine some records from the same order number that currently have detailed names. I'm trying to simplify them, but I can't because it creates duplicate...
  12. G

    Combining Records

    I'm pretty new, but what do you mean by normalized?
  13. G

    Combining Records

    I'm modifying a database for someone in our marketing department. The DB tracks shirts that are given to employees. The area I'm having a problem with has to do with the shirt style. The current categories offer: Long Sleeve (White) Long Sleeve (Black) etc.. I want to combine those two so...
  14. G

    Edit Combo Box Event Code?

    After making the changes- When I open the form, it gives me an error: Compile Error: Invalid Outside Procedure And it highlights the bolded section in the following: strShirtType = DLookup("[Active]", "ShirtType", "[Type] =" & Me.cboType) Active is a Field in the ShirtType table and it's a...
  15. G

    Edit Combo Box Event Code?

    where do I put: strShirtType = DLookup("[Type]", "ShirtType", "[Active] = Yes") ? The code has the following at the top: Option Compare Database Option Explicit Dim strShirtType As String Dim strShirtStyle As String Dim strShirtSize As String Then I've got this- Private Sub...
Back
Top Bottom