Recent content by mrojas

  1. M

    Hi All

    You have complicated things more than needed. Change the query and code behind button as shown on revised database. The report's query has as its criteria the form's client ID. The send report command takes the email address from the form.
  2. M

    Form view automatically fill fields

    Can you upload screen shots of what you have so far?
  3. M

    Merging pdf files in Access

    Try this: stAppName1 = "C:\a folder name\pdftk.exe " & combine_files & " cat output C:\folder where merged file will be\merged filename.pdf"
  4. M

    Using If and Case statements

    Your code below the If DCount statement should look something like this: If Msgbox("This reporting month already exists. Do you want to overwrite the data?", vbYesNo) = vbYes Then DoCmd.RunSQL "Delete FROM Months Where Months.Reporting_Month = '" & repmonth & "'" Else followed by the rest...
  5. M

    Can you Link Access 2007 to Outlook 2007

    This might be more than what you can chew at this time, but it's a start. Once you have your input form designed, in your button's click event, whatever you happened to name this button (Ok, Save, Post, etc.) you call this function passing it the parameter you see fit, in this example, you're...
  6. M

    2 Forms

    Could you share with us a copy of "scrubbed" database so we can be of most help?
  7. M

    Save jpg as

    The following pseudo code might do the trick. Place code in a subroutine or function, and call it from the button click event: Dim aFSO As Variant Dim strFileNameAndPath As String Dim strFileNameOnly As String Dim strNewFilePath as String Set aFSO =...
  8. M

    Access 2010 BrowseTo shows only ONE record

    Could you share with us a copy of your database (scrub it if you have sensitive data). This way we can see what you're running into.
  9. M

    How to check if a subform is visable

    Tell us why you are checking if a form is "visible"? And if it is, then what, and it isn't what?
  10. M

    FindAsUType Help

    Pardon my ignorance, but where does one find FindAsUType function?
  11. M

    Pass Data from a Subform to a New Form

    Have you thought about inserting a sub-form in the main's form footer, keeping the footer hidden until such time the maintenance is flagged as incomplete? This way all your information is in one form, no opening or closing forms, except for the main form. What follows are two routines, one to...
  12. M

    Renameing Files

    As for the renaming, why not use the aFSO.CopyFile Source, Destination then use the Kill command to delete the old file?
  13. M

    Same query, different format cause form to behave differently

    Have you tried creating the query in the design mode, and then making this query the form's record source?
  14. M

    unretrieved records from table via query form

    Have you tried to add, for those fields where there's a possible null value, the following: Like "*" & [Forms]![PawnProperty_PawnerQueryForm].[Make] & "*" or ([Make]="" or [Make] Is Null)
  15. M

    Reset comboxbox so that paremeter query can be re-run with a new parameter.

    How about: Me.Combobox2="" This will clear the text area of drop-down
Back
Top Bottom