Search results

  1. SpentGeezer

    Getting 2950 when running Macro

    This may....or may not help..? :(
  2. SpentGeezer

    Having access open a unique word document.

    To open a blank word doc use this (minus the greetings and salutations part of course).: Dim oApp As Object Dim strFileName As String Dim strFilePath As String Dim objDOC As Object Dim objCurs As Object 'create the blank doc --> also shows how you can add some text there. Set oApp =...
  3. SpentGeezer

    Save Report

    The object doesn't support .filter. You have used msoFileDialogSaveAs which doesn't allow the filter. If you were selecting a file with msoFileDialogFilePicker THEN you can use .filter.
  4. SpentGeezer

    Save Report

    What is the error message?
  5. SpentGeezer

    Save Report

    I don't have Access 07 yet, but I would imagine that you use the file dialog to assign a string of the requested filepath to a string variable (e.g. strPath). Then use this code: DoCmd.OutputTo acOutputReport, "MyReprot", acFormatPDF, strPath, True
  6. SpentGeezer

    Closing an MS Excel file

    Do you have admin rights on the Server where the file resides?
  7. SpentGeezer

    mde Printing a report in colour or black and white.

    Well said DCrake
  8. SpentGeezer

    Closing an MS Excel file

    DJKarl is right. What is your pos?
  9. SpentGeezer

    Need a macro

    Use this demo to get some ideas:
  10. SpentGeezer

    How to save (print) a report to pdf file by using code

    Dont do this Optional OutputPDFname As String = "c:\Reports\Daily.pdf", _ this information is sent when you call the function. Check out this demo fresh from the Spent Geezers Association. Dll files must be stored at same location as the mdb for the print to work. Thanks Lebans.
  11. SpentGeezer

    Sup

    sup dawg!!!!!
  12. SpentGeezer

    Hi Guys, Is there anybody out there who can help me to design an exciting new database with...

    Hi Guys, Is there anybody out there who can help me to design an exciting new database with fantastic commercial potential. This is a genuine opportunity for somebody with time on their hands. Philip I have time on my hands
  13. SpentGeezer

    Open an Excel file if Criteria Met - Access 2007

    Yo in the textbox or control's "After Update" event add this code: if [yourtextboxName].value > [your value here] then Set objExcel = CreateObject("Excel.Application") Set objWorkbook = objExcel.Workbooks.Open("C:\location\yourSPREDDY.xls") end if
  14. SpentGeezer

    mde Printing a report in colour or black and white.

    I believe the only way is by changing their default printer settings.
  15. SpentGeezer

    [Access 2003] Commandline options

    Can you post the code for the function please?
  16. SpentGeezer

    Code to update table value based on another value

    The table needs to be in a form as a subform. Create a form. Use the Subform / Subreport tool to add a subform. Use the wizard to set it up for you. In design mode view the properties of the sizable textbox on the new subform. Create an event for the "After Update" event that does this...
  17. SpentGeezer

    9 Tips For Easy Weight Loss

    Quit your desk job and get a job involving physical work. Then you are exercising all day (and most likely getting paid far less so it is harder to indulge ones self).
  18. SpentGeezer

    Access Report To Excell

    Re: Report as a Excel File Greetings, This will get you started... Dim strFilePath as string strFilePath replace(NOW," ","") strFilePath replace(strFilePath,":","") strFilePath replace(strFilePath,"/","") strfilepath = "c:\Bank\" & strfilepath & "_Cheque_Issued_But_Not_Reconciled.xls...
  19. SpentGeezer

    Unexpected behavior of WScript.Shell SpecialFolders function

    On XP that returns "C:\Documents and Settings\<username>\Desktop"
  20. SpentGeezer

    Null values getting picked up in Query

    It is a text field, not Boolean (Yes/No).
Back
Top Bottom