Search results

  1. jkfeagle

    Linked Table Problem

    I am trying to link to Access XP tables from an Access 97 database. They were linked before but we have changed the paths and will not update because of 'unrecognized database format.' How do you get around this? They were linked so I know it can be done! :eek:
  2. jkfeagle

    Peculiar date range behavior

    I have a form that is based on a query that requires the user to choose a start date and end date for the data to display. The query looks to the text boxes on the form for the criteria for the date field (between .... and .....). For some reason, when you select the same start and end date, it...
  3. jkfeagle

    Trouble with Calendar Pop Up

    Yes. I even checked the variable value to insure that it was passing the right control name. Any other ideas??
  4. jkfeagle

    Trouble with Calendar Pop Up

    I have created numerous databases using pop up calendars but my current problem has me stumped. It's probably something simple and if so I plead end of week fatigue. I am using Allen Browne's calendar to populate a text box with a date. The calendar appears to work fine but nothing is showing in...
  5. jkfeagle

    Export Specifications

    This may be a real dumb question but is there any way to view/edit an existing export specification for the transfer text macro? I'm reviewing someone else's database and can't figure out how to view it.
  6. jkfeagle

    Linked Table Question

    Thanks Pat. As always, I appreciate your advice. What I'm actually looking to do is find a way that , if both BE and FE are always in the same directory, the links will be maintained, even when moved. Is this possible?
  7. jkfeagle

    Linked Table Question

    Is there a way to define the link in the front end of a database to the tables in the back end where regardless of the directory/drive the database is placed in, the links stay intact? :confused:
  8. jkfeagle

    Odd error when adding buttons

    I have a database with a form using tabbed subforms. Obviously the forms are linked using the LinkChild/LinkMaster etc properties. The problem comes in when I add a button to add a new record or when I try to add a combo box to bring up existing records. Use of either of these results in an...
  9. jkfeagle

    Avoiding Empty Records

    I would really prefer to head this off at the query level because the Account number will show regardless of data assigned to it. What I'm really looking for is maybe a criteria to put in the query where I can link all the month fields and if all are null then the record is ignored.
  10. jkfeagle

    Avoiding Empty Records

    This is likely a no-brainer but for some reason I'm hitting a wall on this one today and don't have a whole bunch of time to figure it out. :confused: I'm running a query that sums a large set of financial data. If all account numbers are listed in the report, the report comes to about 750...
  11. jkfeagle

    Magically Duplicating Database

    I switched it to a FE/BE and it's still doing it. Anybody have any other ideas??
  12. jkfeagle

    Magically Duplicating Database

    No. Compact on close option is not checked.
  13. jkfeagle

    Magically Duplicating Database

    If by chance they were editing the same record would it do this??
  14. jkfeagle

    Magically Duplicating Database

    I created a relatively simple database that allows several managers to enter their budget data for the coming year. The accounts are such that they should never be editing the same record. (An account number belongs to only one department). It is a single, stand alone file and not a split...
  15. jkfeagle

    Missing MSysDb Object

    Ken - It's MSysDb not MySysDb. Do you see that one?
  16. jkfeagle

    Missing MSysDb Object

    Other queries also give me that error. :mad:
  17. jkfeagle

    Missing MSysDb Object

    I have a database that I created some time back and has worked fine for months. This morning when I tried to run one of the queries it said that it could not find the MSysDb object. :eek: If I'm not mistaken, this is one of the hidden system objects, right? What would make this object disappear...
  18. jkfeagle

    Data or no Data Challenge

    I have a form that query's the operator for input values. They then click on a button on the form that runs a series of queries culminating in a make table query that contains the desired data and then displays this data in a continuous form that pops up. There WILL be times when the returned...
  19. jkfeagle

    Caught in a loop

    I found a way around the problem although I still would like to know why this occurs. The solution was to replace the .MoveLast with .MoveNext and then put in the code: If Not rstCBSisters.EOF = True Then rstCBSisters.MoveLast End If I appears that if the pointer is at the...
  20. jkfeagle

    Caught in a loop

    Thanks for your input but I don't think that is the case for two reasons. First, the recordset it is reaching the end of and hanging at is actually considerably larger than the other. Second, the way I have it written (I think) is that it steps one record at a time down the rstCheckInfo...
Back
Top Bottom