Click here to Skip to main content
15,893,161 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: scrollbar in form Pin
Coolesh26-Jun-06 0:05
Coolesh26-Jun-06 0:05 
QuestionRe: scrollbar in form Pin
bony_baba26-Jun-06 1:07
bony_baba26-Jun-06 1:07 
AnswerRe: scrollbar in form Pin
Coolesh26-Jun-06 2:08
Coolesh26-Jun-06 2:08 
QuestionHelp with charts. Pin
MatthysDT25-Jun-06 22:45
MatthysDT25-Jun-06 22:45 
QuestionPLS HELP! Pin
d24k104d25-Jun-06 22:04
d24k104d25-Jun-06 22:04 
AnswerRe: PLS HELP! Pin
soodmonu26-Jun-06 2:32
soodmonu26-Jun-06 2:32 
GeneralRe: PLS HELP! Pin
d24k104d26-Jun-06 14:43
d24k104d26-Jun-06 14:43 
AnswerRe: Traversing Controls In a Form Pin
_mubashir26-Jun-06 1:18
_mubashir26-Jun-06 1:18 
hii there

Use the following recurrsive operation instead. Pass control object instead of Form in the Function.

<br />
 Public Sub TraverseControls(ByRef FormName As Control)<br />
        Dim LvCont As Control<br />
        For Each LvCont In FormName.Controls<br />
            If (LvCont.Controls.Count > 0) Then<br />
                TraverseControls(LvCont)<br />
            End If<br />
<br />
            ' Process on LvCont<br />
        Next<br />
 End Sub<br />


regards
Mubashir
Storan Technologies USA.
QuestionConvert Pin
Socheat.Net25-Jun-06 21:37
Socheat.Net25-Jun-06 21:37 
AnswerRe: Convert Pin
Dave Kreskowiak26-Jun-06 4:39
mveDave Kreskowiak26-Jun-06 4:39 
GeneralRe: Convert Pin
Socheat.Net26-Jun-06 22:50
Socheat.Net26-Jun-06 22:50 
GeneralRe: Convert Pin
Dave Kreskowiak27-Jun-06 1:02
mveDave Kreskowiak27-Jun-06 1:02 
Questiondata migration windows application Pin
divyaswati25-Jun-06 21:09
divyaswati25-Jun-06 21:09 
AnswerRe: data migration windows application Pin
Mekong River25-Jun-06 21:29
Mekong River25-Jun-06 21:29 
GeneralRe: data migration windows application [modified] Pin
divyaswati25-Jun-06 21:53
divyaswati25-Jun-06 21:53 
GeneralRe: data migration windows application [modified] Pin
divyaswati28-Jun-06 0:37
divyaswati28-Jun-06 0:37 
GeneralRe: data migration windows application Pin
Mekong River28-Jun-06 5:18
Mekong River28-Jun-06 5:18 
Questiondata migration Pin
divyaswati25-Jun-06 21:06
divyaswati25-Jun-06 21:06 
AnswerRe: data migration Pin
Coolesh26-Jun-06 1:59
Coolesh26-Jun-06 1:59 
Questioncharacter limit in textbox Pin
mamathy25-Jun-06 20:07
mamathy25-Jun-06 20:07 
AnswerRe: character limit in textbox Pin
rajmani25-Jun-06 20:49
rajmani25-Jun-06 20:49 
AnswerRe: character limit in textbox Pin
Socheat.Net26-Jun-06 0:02
Socheat.Net26-Jun-06 0:02 
AnswerRe: character limit in textbox Pin
Socheat.Net26-Jun-06 0:02
Socheat.Net26-Jun-06 0:02 
Questionimport video files from Digital camera Pin
NyBawa25-Jun-06 19:58
NyBawa25-Jun-06 19:58 
QuestionVisual Studio cannot start debugging...... Pin
angelagke25-Jun-06 16:11
angelagke25-Jun-06 16:11 

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.