Recent content by jim11

  1. J

    Date Criteria

    thanks guys, that sorted it :)
  2. J

    Date Criteria

    Ive got a table called tblHistory. It contains a field called MOTDate (this field is in date/time data type format set on long date. Im trying to make a query that will display any table entry that has an MOTDate within the next 30 days. I think i need to put something into the Criteria for the...
  3. J

    Subform Query Parameter Value box

    thanks m8, sorted it :)
  4. J

    Subform Query Parameter Value box

    Hi all, Ive got a query that deletes a table entry in tblMachineParts. On the form frmDetailsChangeParts i have a subform called fsubDetailsChangeParts which contains a listbox called List6 which contains the contents of tblMachineParts. This is my query SQL Syntax: DELETE * FROM...
  5. J

    Query Help

    ne 1 help?
  6. J

    Query Help

    yeh, ive created relationships using ClientMachineID, trust me m8, this is needed lol. Its a junction table as well. Right i did what you said, and yeh it worked. However i also forgot to mension i have a 4th table called tblMake in which the machine Make is stored in. tblMake table's structure...
  7. J

    Query Help

    Is it possible to set up a query that can lookup fields from one table to another table? For example, i have 3 tables: tblClientMachine: ClientMachineID (PK) ClientID MachineID tblClient ClientID (PK) Surname Forename etc tblMachine MachineID (PK) Make Model etc I have a combo box which...
  8. J

    Textbox displays

    Thanks for help ppl, got it workin :) Jim
  9. J

    Textbox displays

    Hi all, Im trying to get a textbox to be blanked out. In otherwords it displays the value i want, but it is like embedded into the form if you know what i mean. And the user is unable to click into it, but it does display a value. Ive seen this done before, i just dont know how its done. Ive...
  10. J

    Concatenating 2 table fields to form another

    thanks m8, i think your right, doing it this way can end up in duplicated entrys if im not careful. Ill try and sort it out. Thanks alot for the help. Jim
  11. J

    Concatenating 2 table fields to form another

    Its ok, ive figured it out myself. INSERT INTO tblClientCar ( ClientCarID, ClientID, CarID ) SELECT [ClientID] & "" & [CarID] AS Expr1, tblClientCar.ClientID, tblClientCar.CarID FROM tblClientMachine; Thanks any way m8 Jim
  12. J

    Concatenating 2 table fields to form another

    Yeh a composite key would work, but i really need to do it this way because ive been told to. I know there would be confusion etc etc, but is it actually possible to do it my way and concatinate clientID and carID to form the ClientCarID. All im asking is howto do it? Do i use a query? If so...
  13. J

    Concatenating 2 table fields to form another

    I know that. But im trying something here and need to know howto do it. U see ClientCarID is the primary key for tblClientCar. And i want to do it this way. Instead of the ClientCarID field been autonumber i want to make it concatinated between ClientID and CarID. It might not be the best way to...
  14. J

    Concatenating 2 table fields to form another

    Hi all, Ive got a table called tblClientCar, this is its structure: ClientCarID ClientID CarID I want to use an append query to concatenate ClientID and CarID together and putting the concatenated value into ClientCarID. How would i do this? Ive tried using a form a two combos so when i...
  15. J

    Cascading Combos using different tables

    Pat can you post the 2nd combos query SQL syntax?
Back
Top Bottom