Recent content by jocph

  1. J

    Progress Bar

    Just what I am looking for! Thank you!
  2. J

    Solved Maximize form after printing report

    That did it! Thanks @arnelgp
  3. J

    Solved Maximize form after printing report

    I have a form that is maximized. I have a button in the form that would open a report in preview. The report opens as maximized but when I close that, the form that called it is now in floating/windowed mode. Putting Docmd.Maximize in current event does not maximize the form. Even the gotfocus...
  4. J

    Equivalent of LCase and UCase in queries

    Confirmed working.
  5. J

    Code Help.....

    If CNo is number data type, no quotes needed and if Criteria is an entry box in the form, try this: " SELECT COUNT(*) as TotRec FROM T_IssuedWarnings " & _ " WHERE CNo = " & CboSearchWarn.Column(1) & " AND Criteria = '" & Criteria & "'"
  6. J

    Solved Export a Query, Format and save as CSV

    Another approach would be to do the data preparation in Access then write to a text file with csv extension using VBA.
  7. J

    My query keeps asking the user to fill in the parameter

    With the form EmailTableMaintFrm open, open the delete query in Design View, change it to Select Query then open in datasheet view. See if you get the record for the email add in EmailToDeleteFld.
  8. J

    Not Looping as I expected...

    Glad it works. Goodluck!
  9. J

    Not Looping as I expected...

    Hi. Your .Textbody was always overwritten by data from the last record, in the code. Try this: With mail .To = " blah " .From = " blah " .Subject = "Availability Status" .TextBody = "" While Not rs.EOF .TextBody = .TextBody & rs.Fields("sku")...
  10. J

    Can a pdf shown in a web browser control be read only?

    Hi the DBGuy. What you say makes sense. We have the pro Acrobat version so should be able to disable printing if we save the file as secured pdf. Thanks for the reply!
  11. J

    Problem background...

    The form may be doing a refresh or a repaint. And there must be some code behind the button that makes the background move.
  12. J

    Can a pdf shown in a web browser control be read only?

    Good day to the very helpful members of Access World! We have some forms with web browser control that shows the pdf file for a specific selection from a list box. For security reasons, the management wants to disable saving a copy and printing capability of the pdf being shown. Is this...
  13. J

    Solved Help with elimination query

    I'm sorry but your example stilll gives no record. As arnelgp explains, there would always be a record with a 0 in the fields, thus eliminating all.
  14. J

    Solved Help with elimination query

    I have to digest this to contrast with making the condition =0, which gives the correct record (which is 4). Thanks as always!
  15. J

    Solved Help with elimination query

    Of course! I know it should be simple. Thanks arnelgp. I would like to understand though why my sample query does not give any record?
Top Bottom