Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. OzFoxy

    MsgBox on alternate days

    I am not a VB Scripter, but I hope the logic in this VBA code is helpful. Dim lngLastDay as long Dim blnShowOnEvenDays as boolean ' Determine the last day of the previous month lngLastDay = DateSerial(Year(Now), Month(Now), 1) - 1 ' If the last day of the previous month was 29 or 31 (odd)...
  2. OzFoxy

    Outlook 365 images/graphics not displaying

    Thanks in advance - any help will be appreciated. Emails I receive from Ali-Express do not display graphics or images and links aren't active (no response to click). See attachment. Emails I receive from any other senders display correctly. Outlook settings are to download images automatically...
  3. OzFoxy

    Outlook Template replace text

    Hi Andy, what do you mean by 'messes up the other formatting'? Is it just messing up the alignment, changing fonts / font weights, converting everything to plain text? The first step in problem solving is to understand the problem. Can you be more specific?
  4. OzFoxy

    Grid From

    I'm not sure what you want to achieve, but hope this helps. I copied your 'butter.jpg' to my c:\ and renamed it to 'butter.bmp' In tblCmds i changed the first 7 PhotoURL's to C:\butter.bmp In the form load code I added Dim pic as variant I modified the code as in the attached screensnip and got...
  5. OzFoxy

    How to get AttachmentCount from a field in a table

    Thanks Andrzejek, but that code produces the error 'Run time error 438: Object doesn't support this property or method'. It is apparent that the property 'AttachmentCount' is only supported on form controls. I worked around the problem by creating a form just for the 'Attachment' type field, and...
  6. OzFoxy

    How to get AttachmentCount from a field in a table

    Hi Team, my Asset Register DB has a table which includes the following fields: A yes/no field [Image] to indicate if a Photo is required. An attachment field to contain the photo [Photo] In the form code, me!Photo.attachmentcount returns 0 or 1 for the current record, no attachments or one...
  7. OzFoxy

    CONVERT MACROS TO VBA

    I prefer VBA code to macros. Access 2010 automatically creates Macros when I use the Control Wizards, which I then have to convert to VBA. Is there a setting in Access 2010 to tell Access to create VBA procedures instead of macros. Thanks Foxy in Oz
  8. OzFoxy

    Access 2003 crashes when I add an option group

    My .mdb includes a form with 7 option groups on it (3,4, or 5 options), and I need another option group. When I add it to the form, and either save the form or switch to Form View, Access crashes with the 'Microsoft Office Access has encountered a problem and needs to close ....' dialogue box...
  9. OzFoxy

    error setting a tempvar

    [Cardholder Name] Like '*" & Tempvar_CCN & "*'" I believe with this code you will run into problems with names containing an apostophe e.g. O'Sullivan, where the result will be: [Cardholder Name] Like '*O'Sullivan*' This may be preferred: "[Cardholder Name] Like ""*" & Tempvar_CCN & "*""" To...
  10. OzFoxy

    Need to make a report list items horizontally.

    I'm sure someone will come up with a more efficient way but .... Given that there will probably be more songs per artist than will fit across the page, how about creating a (temporary) table with fields: Artist Song1 Song2 Song3 Create a query to select the data you want, and write it to the...
  11. OzFoxy

    Exporting reports to PDF

    Hi Techkenny1, I am assuming that your invoices are a report from an Access app. I had a similar requirement and solved it programmatically using ConvertReportToPDF from this website. Once it is installed into your app, it's just one line of code to output the report as a PDF file...
  12. OzFoxy

    MSFlexGrid - A solution

    Hi FossilFool, I have VB6, but not installed on my machines, so yes I downloaded and unpacked. I did the procedures documented in my earlier post on one machine. On the other machines I just copied the OCX and registered it. I haven't deleted any .exd files, none of the ones I found on my...
  13. OzFoxy

    MSFlexGrid - A solution

    The problem with uninstalling the update is that it leaves the machine vulnerable. In all conscience I could not do that to my clients, quite apart from the possible legal ramifications. Providing a CD to clients with a batch file to copy the updated OCX and register it, is a small price to pay...
  14. OzFoxy

    Error "Object Invalid or no longer set"

    I'm using Access 2003. Pressing Escape after changes are made to text boxes on a bound form, and a text box has the focus, triggers the FORM undo event. Pressing escape whilst a combo box has the focus does not trigger the undo event. Hope this helps.
  15. OzFoxy

    MSFlexGrid - A solution

    This is how I solved my MSFLEXGRID / KB906715 problem. Created a folder C:\VB (for convenience - optional) Downloaded the VB6 SP6 Cumulative Update (KB957924) into c:\VB from: http://www.microsoft.com/downloads/details.aspx?FamilyID=cb824e35-0403-45c4-9e41-459f0eb89e36&DisplayLang=en Renamed...
  16. OzFoxy

    Error "Object Invalid or no longer set"

    Anoher seniors moment. The code should break at the debug.print line!
  17. OzFoxy

    Error "Object Invalid or no longer set"

    I believe the escape key triggers the Undo event for the control that has the focus, but only if there is something to undo i.e. the data in the control has changed since it got the focus. Put debug.print "Escape pressed" (or somthing) in the undo event procedure for the date control, and set...
  18. OzFoxy

    Error "Object Invalid or no longer set"

    Further to my last. Pressing control+break should take you to the error trap that is displaying the error message. Executing a resume (with no parameters) should take you to the offending code.
  19. OzFoxy

    Error "Object Invalid or no longer set"

    Pressing control+break with the message on the screen doesn't take you to the offending code?
  20. OzFoxy

    Importing .csv to existing table in Access Database

    Hi Mazzy, the code below is PART of the code behind a command button on one of my forms. Whilst it reads the CSV into the controls on a form, the same logic would read the CSV into a recordset. In this case I know exactly how many lines/rows to read (intPlayersAdded). You would need to...

Part and Inventory Search

Back
Top