Click here to Skip to main content
15,906,645 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: vbscript for reading the registry and search with regular expression Pin
Dave Kreskowiak16-Apr-09 1:42
mveDave Kreskowiak16-Apr-09 1:42 
QuestionHow to disable TabPage of TabControl Pin
Sumit Prakash Sharma9-Apr-09 23:11
professionalSumit Prakash Sharma9-Apr-09 23:11 
AnswerRe: How to disable TabPage of TabControl Pin
Nilesh Hapse10-Apr-09 1:47
Nilesh Hapse10-Apr-09 1:47 
GeneralRe: How to disable TabPage of TabControl Pin
Sumit Prakash Sharma10-Apr-09 22:53
professionalSumit Prakash Sharma10-Apr-09 22:53 
AnswerRe: How to disable TabPage of TabControl Pin
Eddy Vluggen10-Apr-09 1:50
professionalEddy Vluggen10-Apr-09 1:50 
GeneralRe: How to disable TabPage of TabControl Pin
Sumit Prakash Sharma10-Apr-09 22:48
professionalSumit Prakash Sharma10-Apr-09 22:48 
GeneralRe: How to disable TabPage of TabControl Pin
Eddy Vluggen10-Apr-09 23:27
professionalEddy Vluggen10-Apr-09 23:27 
GeneralRe: How to disable TabPage of TabControl Pin
Sumit Prakash Sharma11-Apr-09 2:36
professionalSumit Prakash Sharma11-Apr-09 2:36 
Its Ok Dear

As there is no any "Enabled" property of tab page so we have to check it is in tabcontrol's "SelectedIndexChanged" event like the following code


Private Sub tabCon_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles tabCon.SelectedIndexChanged
If YourCondition Then
Me.tabCon.SelectedIndex = 1
End If
End Sub

to set defualt TabPage write the following code in form load event

Me.tabCon.SelectedIndex = 1 'Here 1 is the index of desired tabpage
Questionerror in the function parse mail Pin
kaustubh879-Apr-09 22:40
kaustubh879-Apr-09 22:40 
AnswerRe: error in the function parse mail Pin
Dave Kreskowiak10-Apr-09 2:51
mveDave Kreskowiak10-Apr-09 2:51 
Questiondifference between textbox.text = "" and textbox.clear Pin
nishkarsh_k9-Apr-09 22:18
nishkarsh_k9-Apr-09 22:18 
AnswerRe: difference between textbox.text = "" and textbox.clear Pin
Sumit Prakash Sharma9-Apr-09 22:53
professionalSumit Prakash Sharma9-Apr-09 22:53 
AnswerRe: difference between textbox.text = "" and textbox.clear Pin
Eddy Vluggen10-Apr-09 1:55
professionalEddy Vluggen10-Apr-09 1:55 
QuestionNeed help in reading RSS feed and storing Pin
Surej709-Apr-09 20:25
Surej709-Apr-09 20:25 
AnswerRe: Need help in reading RSS feed and storing Pin
Dave Kreskowiak10-Apr-09 2:48
mveDave Kreskowiak10-Apr-09 2:48 
GeneralRe: Need help in reading RSS feed and storing Pin
Surej7010-Apr-09 8:48
Surej7010-Apr-09 8:48 
AnswerRe: Need help in reading RSS feed and storing Pin
Surej7011-Apr-09 9:10
Surej7011-Apr-09 9:10 
QuestionPostedFile Is Nothing on DataGrid File Upload Pin
dstrube9-Apr-09 11:27
dstrube9-Apr-09 11:27 
AnswerRe: PostedFile Is Nothing on DataGrid File Upload Pin
Dave Kreskowiak10-Apr-09 2:47
mveDave Kreskowiak10-Apr-09 2:47 
Questionapplication/website required Pin
sahil sherwani9-Apr-09 11:14
sahil sherwani9-Apr-09 11:14 
AnswerRe: application/website required Pin
Mycroft Holmes9-Apr-09 22:31
professionalMycroft Holmes9-Apr-09 22:31 
QuestionNeed Help with Shuffle of a deck Pin
ymilan9-Apr-09 10:44
ymilan9-Apr-09 10:44 
AnswerRe: Need Help with Shuffle of a deck Pin
Dalek Dave9-Apr-09 12:28
professionalDalek Dave9-Apr-09 12:28 
GeneralRe: Need Help with Shuffle of a deck Pin
ymilan10-Apr-09 5:02
ymilan10-Apr-09 5:02 
AnswerRe: Need Help with Shuffle of a deck Pin
Dave Kreskowiak10-Apr-09 2:40
mveDave Kreskowiak10-Apr-09 2:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.