Results 1 to 11 of 11

Best way to program tooltips in VBA

Threaded View

  1. #1
    Registered User
    Join Date
    08-02-2018
    Location
    Belgium
    MS-Off Ver
    Office 365 ProPlus
    Posts
    5

    Best way to program tooltips in VBA

    Hi,
    I wrote a VBA macro that reads machine downtimes from a database and visualises this information in a calendar.
    Each cell in the excel calendar represents a 2 hour shift. When a cel is clicked a tooltip appears with detailed information.
    This works fine but performance is bad. Before adding the 'selection.Validation' command the performance was good.
    So the problem is this statement.
    Are there better ways to do this ?

    Code : coloring each cell and defining the tooltip :
                                Range(Cells(iRow, iColumn), Cells(iRow, iColumn)).Select 'Volledige performantie
                                With Selection.Interior
                                    .Pattern = lPattern
                                    .PatternColorIndex = xlAutomatic
                                    .Color = xlNone 'Verwijder kleur
                                    .TintAndShade = 0
                                    .PatternTintAndShade = 0
                                End With
                                
                                With Selection.Validation
                                    .Delete
                                    .Add Type:=xlValidateInputOnly, AlertStyle:=xlValidAlertStop, Operator _
                                        :=xlBetween
                                    .IgnoreBlank = True
                                    .InCellDropdown = True
                                    .InputTitle = Worksheets(sSheet).Cells(iRow, 1).Value
                                    .ErrorTitle = ""
                                    .InputMessage = sComment
                                    .ErrorMessage = ""
                                    .ShowInput = True
                                    .ShowError = True
                                End With
    Last edited by dominicb; 08-02-2018 at 05:03 AM. Reason: Code tags added

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Custom Chart Tooltips VBA
    By lyla22 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-08-2014, 08:42 AM
  2. [SOLVED] Tooltips for cells
    By hhost in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-10-2013, 08:15 AM
  3. VBA debug tooltips missing
    By paynterf in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-24-2011, 09:23 PM
  4. Excel 2007 : PivotTable Contextual Tooltips
    By DVTiger in forum Excel General
    Replies: 0
    Last Post: 12-10-2010, 02:08 PM
  5. Tooltips or Comment looking up a reference
    By JonBoy in forum Excel General
    Replies: 4
    Last Post: 05-20-2006, 09:20 PM
  6. ToolTips or ScreenTips
    By Stuart Grant in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 09-30-2005, 11:40 AM
  7. Adding ToolTips to buttons
    By Carlos Lozano in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-16-2005, 11:06 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1