Recent content by winshent

  1. W

    ADO Error Saving Memo Field

    I finally managed to get some time on this (I'm moving across to a Cognos TM1 developer role) and get this working using ADO parameters... Took some inspiration from the following thread.. http://www.access-programmers.co.uk/forums/showthread.php?t=219149 Seems to work quite well.. although...
  2. W

    .BOF/ .EOF Giving false results with WHERE statement

    Will give that a try but thought JET uses '*', Whereas SQL Server uses '%' ??
  3. W

    .BOF/ .EOF Giving false results with WHERE statement

    I'm quite confused by this.. I am testing if a sql recordset contains records.. normal stuff.. The WHERE statement is based on input parameters and will insert either 'LIKE' or 'NOT LIKE' condition on the 'Role' field... When copying the built SQL into a query and running, both return a...
  4. W

    3 seperate folders to send PDF files

    Use an array... dim varFolder(2) as string varFolder(0) = "C:\Users\User\Documents\ invoice" varFolder(1) = "C:\Users\User\Documents\cofc" varFolder(2) = "C:\Users\User\Documents\despatch
  5. W

    ADO Error Saving Memo Field

    So i could never get this working without closing the bound form frmProfiles first.. Cheers VBAInet for your help.. I can't upload a copy here as it will be flagged as a security breach.
  6. W

    Error 424 when opening .xlsx from Access 2010

    Filepath length over 250 characters ?
  7. W

    Error 424 when opening .xlsx from Access 2010

    Security related issue ? Is it a trusted document/ location ?
  8. W

    Error 424 when opening .xlsx from Access 2010

    Try .Parent.WindowState = xlMaximized
  9. W

    Error 424 when opening .xlsx from Access 2010

    I tested the code with Office 2003 (don't have 2010 here)... As long as Excel Object Library is added to the list of references, code works fine here. Suggest maybe an install problem.. try another machine..
  10. W

    Error 424 when opening .xlsx from Access 2010

    If you comment out.... .WindowState = xlMaximized
  11. W

    Error 424 when opening .xlsx from Access 2010

    So if you comment that line out the code runs fine ?
  12. W

    Error 424 when opening .xlsx from Access 2010

    That line is not part of the code posted by vbaInet
  13. W

    Postcode Validation

    Why not download the postcode data and then validate against real data..
  14. W

    Error 424 when opening .xlsx from Access 2010

    Have you tested with a blank workbook instead of WorksPrice.xlsx?
Top Bottom