Search results

  1. sfreeman@co.mer

    Scrathing my head

    Not clear on your question. You state: "What I need to do is take the information form (sic) the next line (LineNo = vReporting_ID + 1)..." You will get that info on the next increment of your loop. Are you trying to get the record number on the current increment for the NEXT record? What...
  2. sfreeman@co.mer

    Update OLE Object Path

    An update query will do it. I assume that you are updating all records in a text field [here called "MyLinkedField"], from a folder like c:\MyFolder\MyOLEs\ to Z:\MyNewFolder\ Add a new field to your table [here called tblLink], call it something like "MyNewLinkedField" Create a new...
  3. sfreeman@co.mer

    Appending 100 tables to 1 table w/0 query?

    Maybe... :{B First create a Union query that will join all of the 100 tables under one roof [presuming that you have compatible fields]. Then create the append query to append all of that data into your target table. Hopefully, you can get creative with cut and paste when setting up the large...
  4. sfreeman@co.mer

    Ole table and MDB way too big

    I assume that you already tried a compact and repair.... In my experience it is almost always better NOT to embed the file, but rather link to it. To protect files, I would discuss this with my LAN manager, and see if I could set up an ACL on a protected drive. see link for more info...
  5. sfreeman@co.mer

    count from more than one query

    Did you look at a union query?
  6. sfreeman@co.mer

    Weeknumber in a querry

    Did you look at the DatePart function?
  7. sfreeman@co.mer

    Years & montsh question

    Have you looked at the DateDiff function?
  8. sfreeman@co.mer

    Questions Regarding Switchboard styles

    http://www.peterssoftware.com/abs2.jpg
  9. sfreeman@co.mer

    Set blank field to zero

    Check the Access Help file for Nz function.
  10. sfreeman@co.mer

    Access back end

    If you have any volume of traffic, I would suggest that you not rely on Access. Take a look at SQL Server. Since your boss is a tight-wad, you probably should start with SQL Server Express. It will make him happy since it is free. ;-B
  11. sfreeman@co.mer

    Can't set this relationship

    junction table You need to set this up with a junction table. See Help file in Access.
  12. sfreeman@co.mer

    Remove Duplicate records...

    Use the Access Find Duplicates Query Wizard Should look something like this: SELECT TableThreeID.Test1 , TableThreeID.ID1 FROM TableThreeID WHERE (((TableThreeID.Test1) In (SELECT [Test1] FROM [TableThreeID] As Tmp GROUP BY [Test1] HAVING Count(*)>1 ))) ORDER...
  13. sfreeman@co.mer

    Insert column via SQL, HOW?

    Sorry, don't have time right now to get into this, but here is sample code that will create a table with an auto_increment field, and it should start at 0. CREATE TABLE Friends ([FriendID] COUNTER NOT NULL PRIMARY KEY, [LastName] text, [FirstName] text, [Birthdate] date, [Phone] text, [Notes]...
  14. sfreeman@co.mer

    Conditional Command Button

    You've got the enable/disable code in the wrong place/basically you are asking the command button to disable itself. The above is correctly placed in the OnCurrent Event.
  15. sfreeman@co.mer

    Conditional Command Button

    So what is the problem with your code? :confused:
  16. sfreeman@co.mer

    Displaying many tables one after the other

    Assuming that you only want to see unique values, a union query might work. Something like: Select ID1 from TableOneID union Select ID1 from TableTwoID union Select ID1 from TableThreeID HTH :cool:
  17. sfreeman@co.mer

    Multiple queries exported into csv files.

    Assuming that ALL queries in your db need to be exported, try something like this: Sub QueryDefX() Dim dbs As Database Dim qdfLoop As QueryDef Set dbs = CurrentDb With dbs ' Enumerate QueryDefs collection. For Each qdfLoop In .QueryDefs Debug.Print...
  18. sfreeman@co.mer

    The Openreport action was canceled error

    Glad that it worked out for you :-D
  19. sfreeman@co.mer

    Different User

    The Security Wizard will be the easiest way for you to go. Experiment on a backup copy of your db. See the Help file under 'Security'.
  20. sfreeman@co.mer

    How do I make a condition case insensitive

    The NW Customer Phone List form has a great alpha filtering system that is very efficient. Check it out.
Back
Top Bottom