View Single Post
  #2 (permalink)  
Old 10-04-2007, 09:35 PM
specci48's Avatar
specci48 specci48 is offline
Basic4ppc Expert
 
Join Date: Apr 2007
Location: Germany
Posts: 1,057
Awards Showcase
Beta Tester Forum Contributer 
Total Awards: 2
Default

Hi tvrman,

try to solve your problem using a timer!

Introduce a timer and set it enabled = false. Enable the timer with the last statement in your event sub. Now code your additional statements within the timer sub. And don't forget to reset it within the timer sub ...

Code:
Sub Table1_SelectionChanged(column, row)
    ...
    
' do something
    ...
    Timer1.enabled = 
true
End Sub

Sub Timer1_Tick
    Timer1.Enabled = 
false
    ...
    
' do something outside the event...
    ...
End Sub

specci48
Reply With Quote