+ Reply to Thread
Results 1 to 6 of 6

ComboBox's HIGHLIGHTED ROW to TRIGGER Sub

Hybrid View

  1. #1
    Registered User
    Join Date
    01-28-2011
    Location
    Modesto, CA
    MS-Off Ver
    Excel 2007
    Posts
    25

    ComboBox's HIGHLIGHTED ROW to TRIGGER Sub

    Hello,

    My "CmbBx_TaskCODE" selection triggers the Sub "TxtBx_TaskDESCRIPTION_Change". It actually does the job.
    Now, I also want that before selection is made, when the cursor is over each individual row, the cursor position can trigger the same "TxtBx_TaskDESCRIPTION_Change"

    Would it be possible. I have being exploring some control's events without luck.

    Any suggestions?

    I have attached a copy of my project.

    Thank you.
    Attached Files Attached Files

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: ComboBox's HIGHLIGHTED ROW to TRIGGER Sub

    Have you looked at using the combobox's MouseMove, MouseDown etc events?
    If posting code please use code tags, see here.

  3. #3
    Registered User
    Join Date
    01-28-2011
    Location
    Modesto, CA
    MS-Off Ver
    Excel 2007
    Posts
    25

    Re: ComboBox's HIGHLIGHTED ROW to TRIGGER Sub

    Thank you for replying Norie. I am actually using the MouseMove Event, so when cursor is over my CmbBx_TaskCODE it affects the appearance of it. I tried to add some code to meet my goal but couldn"t figure it out.

  4. #4
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: ComboBox's HIGHLIGHTED ROW to TRIGGER Sub

    You could put the code for the Change event into it's own sub and then you could call that sub from both the change and MouseMove events.

  5. #5
    Registered User
    Join Date
    01-28-2011
    Location
    Modesto, CA
    MS-Off Ver
    Excel 2007
    Posts
    25

    Re: ComboBox's HIGHLIGHTED ROW to TRIGGER Sub

    Nori, I forgot to explain that my "TxtBx_TaskDESCRIPTION" should reflect the current highlighted code.

  6. #6
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: ComboBox's HIGHLIGHTED ROW to TRIGGER Sub

    I'm not sure that's relevant.

    If you want to run the same code that is triggered by the Change event from the MouseEvent then one solution is to do what I suggested.

    Let's say you put the code for the change event in a sub called ComboChange in the userform module.
    Sub ComboChange()
     'Userform
        TxtBx_TaskDESCRIPTION_Change
        Trm_CmbBx_TaskCODE_TxtChrctrs12
            Select Case CmbBx_TaskCODE_TxtChrctrs12
                Case Is = "CD"
                    With CmbBx_OutlineSHAPE
                        .Text = "Circle"
                        .Font.Bold = True
                        .ForeColor = &H6&
                        .BorderStyle = fmBorderStyleNone
                        .SpecialEffect = fmSpecialEffectSunken
                        .Locked = True
                    End With
                Case Else
                    With CmbBx_OutlineSHAPE
                        .Text = "Shape"
                        .ForeColor = &H80000011
                        .Font.Bold = False
                        .BorderStyle = fmBorderStyleSingle
                        .SpecialEffect = fmSpecialEffectFlat
                        .Locked = False
                    End With
            End Select
        'ShwHdFrms_DimensionsDEPTHTHICK
        'Worksheet
        DfnCll_TaskCODE
            Cll_TaskCODE = CmbBx_TaskCODE
        Cell_TaskDESCRIPTIONTxt
    End Sub
    You would then change the event code to this.
    Private Sub CmbBx_TaskCODE_Change()
        Call ComboChange
    End Sub
    
    Private Sub CmbBx_TaskCODE_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
        With CmbBx_TaskCODE
            .BorderStyle = fmBorderStyleSingle
            .SpecialEffect = fmSpecialEffectFlat
        End With
        Call ComboChange
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. ComboBox Linked Cell change does not trigger hiding/unhiding of columns
    By dgibney in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 12-11-2014, 09:59 PM
  2. Adjust a code from cell range trigger to button trigger
    By ld2x07 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-01-2014, 10:02 AM
  3. ComboBox within Frame - how to trigger a change event
    By Barbados in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-20-2011, 03:19 AM
  4. "How to trigger one combobox to another combobox
    By suresz449 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-21-2011, 04:06 AM
  5. Prevent automatic combobox event trigger
    By thulasidhar@gmail.com in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-09-2006, 04:00 PM

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