Recent content by gwunta1907

  1. G

    Question what is the latest version of access runtime 23007

    The initial release of Access 2010 runtime was in October of 2010 (as per the link in the post above) however a service pack (Access 2010 Runtime SP1) was released in June 2011 that included updates up to and including April 2011. You can get the service pack at...
  2. G

    Help! Access 2010 runtime cannot toggle offline/online mode mode

    I have programmed an Access application to manipulate and consolidate SharePoint linked tables with local backend Access based tables. I wrote VBA to toggle the application between online and offline mode and it works as expected in the full version of both Access 2007 and 2010. However some...
  3. G

    Deteremine latest date, with NULL's being the latest

    Hi all, Im not sure if this is possible. Any gurus out there might be able to answer this one. I have a table with, amongst other information, delivery dates for consignments. Each consignment consists of one or more containers. Where there are multiple containers. As each container arrives...
  4. G

    Test for absence of date

    OK, figured it out. Correct syntax is ' Is Null ' Moderators, feel free to remove this thread
  5. G

    Test for absence of date

    Trying to put a query together where the criteria is for books that have not been returned. The returnDate field in that the criteria relates to has no default value set for it, so I thought in the criteria I could just put ' = null ' but that doesn't seem to be producing any result. There are...
  6. G

    Export reoprt to Excel

    Thanks for getting back to me Beetle. Yes, the query uses criteria supplied by a control on a form. The form is open with the control containing the data for the query's criteria but still the error message persists
  7. G

    Export reoprt to Excel

    Hi guys, I have a report I would like to export to excel - well I want to actually be able to export the data that is in the report. After some searching on the forums I found what I thought was the solution but it throwing an error. The code is listed below Dim objXL As Object Dim...
  8. G

    Dlookup with Date/Time datatype

    Success!! Thankyou grzzlo, I must having been writing my previous post while you were posting. Thankyou again for your help, the learning curve is steep at the moment for me haha
  9. G

    Dlookup with Date/Time datatype

    Yeah I had a look at that before I posted pbaldy, but still having problems. I tried this: Me.exin = DLookup("USD_Equivalent", "tbl_rated", "Currency Like """ & Me.Currency_Name & """" AND "Dated = # Me.SailingDate #") But still get a type mismatch error
  10. G

    Dlookup with Date/Time datatype

    hi guys, I'm trying to do a DLookup specifying two criteria. The first criterion is a text field an the second is a Date field. Im sure I have the syntax wrong as the error Im getting is a Type mismatch error. Ive checked both tables where I am comparing data and they are both set to...
  11. G

    Allow Edit but not To Insert Record

    You can do it all from the form using VBA aiikahn. The code that I gave you works from within the form code.
  12. G

    Autofill field based on other field

    Thankyou very much kind sir!! Kiwiman, your solution worked perfect. I was putting the DLookup on the Lostfocus event of the control I wanted to be as the target of the lookup. Thankyou again :)
  13. G

    Autofill field based on other field

    John, could you offer any help on this?
  14. G

    Allow Edit but not To Insert Record

    I have used a table called 'RunOnce' that stores the date that a macro, query or some instruction has run. You create an insert query into the table, specifying the field, entering the date like this: CurrentDb.Execute "INSERT INTO tbl_RunOnce ( DateRun ) Select #" & Date & "#" Just...
  15. G

    Autofill field based on other field

    Update: Tried the DLookup function with the following syntax in one of the fields: DLookup("PFO","tbl_Shipping_Charges","Item_ID = " & Me!ItemNum) However still no luck....
Back
Top Bottom