Recent content by Xenix

  1. Xenix

    Colour Change on wrong data

    Thank you Rich, that works fine. Strange thing is first time it did not do anything but now it works after checking as you said. Thank you Mike A2k
  2. Xenix

    Colour Change on wrong data

    Hello, I would like to change the colour of the back ground of the cell (field name) when data is wrong on a report. I have the following code which worked before on a form but seems to be a problem in a report: If Me.SCHED_DATE <> Me.Committed Then Me.SCHED_DATE.BackColor = 255...
  3. Xenix

    Save record after updating

    Thank you very much my friend. I just did not see what you meant by empty module. but now I understand. Best regards Mike
  4. Xenix

    Save record after updating

    :confused: hmm I have done this just left the form open and run the query but it still gives the same error message :( I have attached it so you can see. Kind regards Mike
  5. Xenix

    Save record after updating

    Now message: Undefined function 'RemoveSpacesAndDashes' in expression. So how do I make it use this function which is in a form? Thank you Mike
  6. Xenix

    Save record after updating

    ok that would be great but I have never done an update query before? it is easy to do? And how do I store my function in a query? Thank you Mike
  7. Xenix

    Save record after updating

    I have written this function to remove all "-" or spaces in a string and it seems to work fine. But as I go record by record and remove them it don't seem to store them in the table :( here is my code: Private Sub Remove_hyphens_Click() On Error GoTo Err_Remove_hyphens_Click Set db =...
  8. Xenix

    Foreign characters

    Thank you Rich, works perfect, thanks for your help stuck it on a button :) Regards Mike
  9. Xenix

    Foreign characters

    Doe's anybody know of a way to add to the top bar special characters e.g. Ű ő æ å ø I have a lot of addresses to enter that are from Germany Norway etc so I need to be able to enter these extra letters in there address line. Thank you in advance Mike
  10. Xenix

    Date problem

    I have the formula: Format(DateAdd('m',-6,Now()),"mm/yy") in my query but I want it to show six months back to now but it only shows the month from current -6 months :( how can I get it to show the other five months in between? Kind regards Mike
  11. Xenix

    prompt for Attachments

    Thank you Fofa but how do I create a :dialog type form to ask for the file with a browse option. Kind regards Mike P.S. my current code is: DoCmd.OpenReport "QuotationEmailCables", acNormal, "", "
  12. Xenix

    prompt for Attachments

    I am trying to prompt for where the file is I want to attach. Thank you for you help
  13. Xenix

    prompt for Attachments

    Hello, I want Access to prompt for Attachments when I send an email. I currently use the line: myemail.Attachments.Add "c:\progra~1\adobe\acroba~1.0\PDFOut~1\Custom~1.pdf", , , "Custom~1.pdf" But now we are going to place customer quotes in folders and I want to be prompted to save this to...
  14. Xenix

    Duplicate items removal

    Thank you again :) as I was looking how to do what you said I found under properties there was a section saying "unique records" and it was set to no. So as you can guess after changing it seems to work fine :))))) Thank you for your right directions :))
  15. Xenix

    Duplicate items removal

    I have a problem, I have a quotations database I have two tables one for customer details with the quote number and one to hold all the part numbers for that quote. Now I what to generate a query that will show all the quotes for that area e.g. UK. Problem is it show all the quotes but with...
Back
Top Bottom