Click here to Skip to main content
16,013,918 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Need som help with a casting error please. Pin
Qvicksilver6-Jun-05 12:13
Qvicksilver6-Jun-05 12:13 
GeneralRe: Need som help with a casting error please. Pin
Christian Graus6-Jun-05 14:16
protectorChristian Graus6-Jun-05 14:16 
GeneralRe: Need som help with a casting error please. Pin
Qvicksilver7-Jun-05 3:58
Qvicksilver7-Jun-05 3:58 
GeneralRe: Need som help with a casting error please. Pin
Christian Graus7-Jun-05 11:45
protectorChristian Graus7-Jun-05 11:45 
GeneralRe: Need som help with a casting error please. Pin
Qvicksilver9-Jun-05 19:52
Qvicksilver9-Jun-05 19:52 
GeneralRe: Need som help with a casting error please. Pin
Qvicksilver9-Jun-05 20:09
Qvicksilver9-Jun-05 20:09 
GeneralRe: Need som help with a casting error please. Pin
Christian Graus13-Jun-05 12:03
protectorChristian Graus13-Jun-05 12:03 
GeneralRe: Need som help with a casting error please. Pin
KaptinKrunch9-Jun-05 9:20
KaptinKrunch9-Jun-05 9:20 
I think you making it harder than you need to.

For each tabcontrol there are tabpages which contain the controls your trying to count.

Function CountControls(ByVal tPage As TabPage)
Dim count As Integer = 0
Dim c As Control
For Each c In tPage.Controls
If TypeOf (c) Is TextBox Then
count += 1
End If
Next
Return count
End Function


Simply pass in the tabpage you wish to count the controls on..
Debug.WriteLine("Total textboxes: " & CountControls(TabControl1.TabPages(0)))


Hope this helps.
GeneralRe: Need som help with a casting error please. Pin
KaptinKrunch9-Jun-05 9:21
KaptinKrunch9-Jun-05 9:21 
GeneralRe: Need som help with a casting error please. Pin
Qvicksilver9-Jun-05 19:59
Qvicksilver9-Jun-05 19:59 
GeneralMDI FORMS HELPPP! Pin
Josh1991186-Jun-05 8:21
Josh1991186-Jun-05 8:21 
GeneralRe: MDI FORMS HELPPP! Pin
Rizwan Bashir6-Jun-05 22:12
Rizwan Bashir6-Jun-05 22:12 
GeneralRe: MDI FORMS HELPPP! Pin
Anonymous7-Jun-05 2:31
Anonymous7-Jun-05 2:31 
GeneralSudden crash Pin
vishalmishra6-Jun-05 7:51
vishalmishra6-Jun-05 7:51 
GeneralRe: Sudden crash Pin
Christian Graus6-Jun-05 14:17
protectorChristian Graus6-Jun-05 14:17 
GeneralAxtivex controls Pin
smita_roy6-Jun-05 3:09
smita_roy6-Jun-05 3:09 
GeneralRe: Axtivex controls Pin
Rizwan Bashir6-Jun-05 3:29
Rizwan Bashir6-Jun-05 3:29 
Generalrandom files..... Pin
virtual_manu6-Jun-05 1:32
virtual_manu6-Jun-05 1:32 
GeneralRe: random files..... Pin
toxcct6-Jun-05 1:48
toxcct6-Jun-05 1:48 
GeneralRe: random files..... Pin
Rizwan Bashir6-Jun-05 3:33
Rizwan Bashir6-Jun-05 3:33 
GeneralRe: random files..... Pin
virtual_manu7-Jun-05 5:14
virtual_manu7-Jun-05 5:14 
GeneralRe: random files..... Pin
Rizwan Bashir7-Jun-05 22:54
Rizwan Bashir7-Jun-05 22:54 
GeneralRegisteration of DLL Pin
Gagan Deep Singla6-Jun-05 0:53
Gagan Deep Singla6-Jun-05 0:53 
GeneralRe: Registeration of DLL Pin
enesaga1236-Jun-05 1:28
enesaga1236-Jun-05 1:28 
GeneralRe: Registeration of DLL Pin
enesaga1236-Jun-05 1:32
enesaga1236-Jun-05 1:32 

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.