Hi Team,

So I am working on this project where I have 5 comboboxes that loads data from an .accdb file and Displays the result as per selection in a Text Box.

I need to add Timers(as many as Required) to capture the Text-Box Data "10 seconds After" the fifth combobox option is selected. Please Help!

You add a timer control and set Interval to 10000 (ten seconds). In the SelectionIndexChanged event handler for the fifth combobox you do

MyTimer.Start

In the MyTimer.Tick event handler you do

MyTimer.Stop
your other code
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.