Search results

  1. Cliff67

    Solved can't figure where I'm going wrong

    :D yes true
  2. Cliff67

    Solved can't figure where I'm going wrong

    DBguy I agree, it feels like I'm giving up on doing it correctly but it does work just to show the Technical Support Requests and the issue of RMAs
  3. Cliff67

    Solved can't figure where I'm going wrong

    Hi all Just a quick update. no matter what I do I get error 13 type mismatch so I've done a monstrous hack (tm) and I know you will all be appalled at me for this but... I've opened the full table without any WHERE clause then I'm looping through the table setting a variable as DatePart("yyyy"...
  4. Cliff67

    Need help to figure out where event came from

    Oh Bugger didn't see the date thing
  5. Cliff67

    Solved can't figure where I'm going wrong

    Hi Gasman The DateOpened Field has short dates in them going back to 2014, so I want to pull out using VBA then I can populate the form as shown attached with just a green backcolour to indicate that the tech support call has been received
  6. Cliff67

    Need help to figure out where event came from

    Hi Mech55 this code is auto generated when you build a switchboard with the switchboard manager. It tells the switchboard what button has been clicked on, it aligns with the switchboard items table, again auto generated based on the choices you made when setting up the switchboard via the...
  7. Cliff67

    Solved can't figure where I'm going wrong

    DBguy just tried the copy and paste but it has to be altered so much I can't get it working in the VBA screen. I have to reference the forms!frm_CalenderYear!CmbYear but that worked ok but I cant get it working. maybe I will ref the form value
  8. Cliff67

    Solved can't figure where I'm going wrong

    DateOpened is a date field in a table which stardard dates like 25/11/2018 and CmbYear is a combo box on a form with the current year as the default. I want to use this code to select all the table entries for the year that they were opened via the Combo box year. I am using it to populate a form
  9. Cliff67

    Solved can't figure where I'm going wrong

    Hi Guys I'm trying to set a recordset as below Set rs = db.OpenRecordset("SELECT * FROM Tbl_Tickets " & _ "WHERE ((tbl_tickets.[DateOpened]) LIKE '*" & CmbYear & ")", dbOpenDynaset) But I keep getting a run time error of 3075 which means I've got the syntax wrong but can't see...
  10. Cliff67

    Calendar View Form

    MajP that is amazing. Would I be able to use this with a little modification for my DB?
  11. Cliff67

    Calendar View Form

    Hi Minty I calculate I would need 444 text boxes, I don't plan on populating them this the monthly one but just indicate with the box background being green
  12. Cliff67

    Calendar View Form

    Hi everyone, My main database for work has a calendar view form I developed years ago which populates text boxes on a form based on the underlying table for technical queries. The form has 42 text boxes which are enabled depending on the start day/end day of the month - see my attached shot to...
  13. Cliff67

    Report Aspect ratio

    Hello everyone Don't you just love it when someone finds something new to do with a standard report you make? Anyway my boss now wants a previously print or preview report to be displayed on a screen in the Engineering office. Not a problem I think, just export to PDF, which works a treat...
  14. Cliff67

    Easy Thing just stumping me

    Thanks guys Got it working then had to deal with no records so added a little bit to check for 0 records and it all works well. I basically wanted to display the last date in a series, this was just the first contact but the others were reply, interaction and Closed so all good
  15. Cliff67

    Easy Thing just stumping me

    Thanks Minty
  16. Cliff67

    Easy Thing just stumping me

    Hi Everyone I've got a module that populates several date boxes on a form based on the history table. Not difficult I hear you say...However I just can't see what I'm doing wrong I keep getting an error saying Too Few parameters Here the code I'm using to find the dates Set rs =...
  17. Cliff67

    Linking tables

    Hi TheDBGuy Ok thanks I've give that a try and keep you posted. many thanks Cliff
  18. Cliff67

    Linking tables

    Hi Cronk That has not been included. I call the procedure from a splash form that comes up and connects the BE to the FE.
  19. Cliff67

    Linking tables

    StrTable value is Tbl_Version what I'm trying to do is check if the Linked table exists i.e. has the back end moved then depending on the result re-link it of just go on and do what it needs to do. At the point of failure the BE has been moved so I'm testing the link procedure many thanks Cliff
  20. Cliff67

    Linking tables

    Sorry the line that starts VarRet =CurrentDb
Back
Top Bottom