Recent content by IanMilly

  1. IanMilly

    Header on text file?

    Hi Wayne, The info required to be used as a header is just a string. I have this info from a text box on a parent form. What is the print statement to make the text a header on the text file? Thanks Ian (When i say header i mean as in header and footer -not just a title )
  2. IanMilly

    Header on text file?

    Hi, I automatically create files via access, then I am sending lots of data to those text file (well an .sql file to be exact) as strings. I have the transfer working great, everything is working fine Print #iFileNumber, sTheDataIAmPassing What I want to have is a header on the page...
  3. IanMilly

    Date from dd/mm/yyyy to dd-mmm-yyy

    all i required at the time was the month, i have used this dd-mmm-yyyy format also elsewhere. thought of that for some other part of my prog after writing the thread - just thought it was obvious
  4. IanMilly

    Date from dd/mm/yyyy to dd-mmm-yyy

    sorry, got it now, I had tried the format function but didn't apply it properly. I missed the " around mmm and so nothing was formatted. for anyone else who does a **** up like this: now sDateInAlphabetical = format (MyDateValue, "mmm") -if the MyDateValue is a value 1-12, the equivalent...
  5. IanMilly

    Date from dd/mm/yyyy to dd-mmm-yyy

    Hi, I have got a date created as a string (date) the output format of my code in VBA is dd/mm/yy ie 01/02/2004 I want to be able to get this into a dd/mmm/yyyy format ie 01-feb-2004 how can i do this? I know i can extract the month using month(date), how can i have this in a...
  6. IanMilly

    Audit Trail in Subform

    thanks, completely missed that, d'oh! Ian
  7. IanMilly

    Subform problem with Mousewheel scroll lock

    sorted it. It wasn't a problem with the code, a combo box error was occuring which made it look like when accessing the subform a problem was appearing. One of those "no, it can't be that" things! Consider thread dead
  8. IanMilly

    embedding a font in access

    hi, it got ur demo version of the font install to work. I copied the tables, module and macro to my db. opening my db with the needed fonts (either installed or deleted), i get the an error when starting the db at the following line of the module (error code is 13) UploadFileToTable...
  9. IanMilly

    Audit Trail in Subform

    I have the Audit trail function working perfectly in the "stand alone" form of the sub form. When the sub form is being used as is intended on a main form(as a subform) the changes are not being recorded. Basically: When i make changes to data with the subform as a stand alone, all changes are...
  10. IanMilly

    "X" button

    that worked a treat :D thanks Mile-O-Phile
  11. IanMilly

    "X" button

    hi, i'm not sure if this thread is dead, i can't get the frmhidden to be hidden at the begining. it is always visible. How is this done? is there a setting i am missing? Thanks ian
  12. IanMilly

    Audit Trail in Subform

    Hi, I am using the Aduit trail code (supplied by GHudson) Original thread I am trying to use this code in a subform aswell, in the main form the changes are logged with no problem. In the subform the changes are not logged. How can i record the changes made in the subform? Any help is...
  13. IanMilly

    Subform problem with Mousewheel scroll lock

    Hi, I have used the following article to create a mouse button scroll lock : http://support.microsoft.com/default.aspx?scid=kb;en-us;278379 I have used the code which does not require an activex dll file (second part of the knowledgebase article). The problem I have is that when i apply the...
  14. IanMilly

    Error 3163 in subform (on combobox)

    I have a combo box on a subform. The combobox gets the values from a lookup table. I have two fields in this table , Description and part number. when i try and use the combox, i can see the values of the table, however afterupdat i get an error message: "The field is too small to accept...
  15. IanMilly

    CurentUser as a default value in a field

    hi wayne, Yes, I set the default value to =CurrentUser() in the table. However when trying to save this, it says that it is an unknown function as the default value. I can set it using Environ("Username") but this is the computer logon and not the Access db logon name. Any ideas? (I am...
Back
Top Bottom