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 TouchToneTommy 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. zouzouna

    unable not selected tab in tab control

    Thank you so much once more.
  2. zouzouna

    unable not selected tab in tab control

    Do you mean the data interaction of a database when you refer grid or list? Does EditMode is established in the form's declarations section? Sorry for my question, I am new to programming.
  3. zouzouna

    unable not selected tab in tab control

    Maybe something like that??? where ChckSaveBtnPressed is a boolean variable indicates that the button has pressed. Private Sub LoginTabCntrl_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles LoginTabCntrl.SelectedIndexChanged OppositeTabIndx =...
  4. zouzouna

    unable not selected tab in tab control

    I was searching an event like that Auguy, thank you so much, what kind of code could you place there to prevent users from entering certain pages when they are in "edit" mode. Can you give an example please?
  5. zouzouna

    unable not selected tab in tab control

    Thank you so much, for your reply. I finally tried this and it seams to work for me. Dim OppositeTabIndx As Integer OppositeTabIndx = LoginTabCntrl.SelectedIndex + 1 LoginTabCntrl.SelectedIndex = OppositeTabIndx LoginTabCntrl.TabPages.Remove(LoginTabCntrl.SelectedTab)
  6. zouzouna

    unable not selected tab in tab control

    Hello, I am new member there, I am using Visual Basic.net 2003 version and I am facing a problem. Well I have a tab control on a form with two tabs. I have a button in each tab and I want when the user clicks on it to be unable to select the other tab in the form, not the current tab. I was...

Part and Inventory Search

Back
Top