Click here to Skip to main content
15,924,828 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralDifferent control Linking Pin
kerene28-Mar-05 16:39
kerene28-Mar-05 16:39 
GeneralThe datagrid problem....help... Pin
besah28-Mar-05 14:07
besah28-Mar-05 14:07 
GeneralTWO WAY DATA BINDING Pin
Anonymous28-Mar-05 10:42
Anonymous28-Mar-05 10:42 
QuestionHow to call a aspx page from a windows form Pin
ac_vbdeveloper28-Mar-05 8:36
ac_vbdeveloper28-Mar-05 8:36 
AnswerRe: How to call a aspx page from a windows form Pin
Christian Graus28-Mar-05 19:04
protectorChristian Graus28-Mar-05 19:04 
GeneralRe: How to call a aspx page from a windows form Pin
ac_vbdeveloper12-Apr-05 3:17
ac_vbdeveloper12-Apr-05 3:17 
GeneralList all controls existing in a form Pin
wgalafassijr28-Mar-05 5:13
wgalafassijr28-Mar-05 5:13 
GeneralRe: List all controls existing in a form Pin
rwestgraham28-Mar-05 17:52
rwestgraham28-Mar-05 17:52 
Not such an easy task. Controls can contain child controls. And "Value" is not so easily defined because for something like a ListBox with multiple selections you would have a collection of selected values.

You start by enumerating each control in the form Controls collection. This will give you a list of all "first generation" controls on the form. But that will not always list all controls, because if a GroupBox (Panel, other container control) exists, the Form.Controls collection will not include the container's child controls. So you would then have to enumerate the GroupBox Controls collection to get it's children. But then a GroupBox could also contain a child GroupBox, and on and on ad infinitum.

An interesting exercise in recursion ...

Robert
GeneralCanadian Postal Codes Validation Pin
Member 157864528-Mar-05 4:39
Member 157864528-Mar-05 4:39 
GeneralRe: Canadian Postal Codes Validation Pin
Dave Kreskowiak28-Mar-05 5:03
mveDave Kreskowiak28-Mar-05 5:03 
GeneralRe: Canadian Postal Codes Validation Pin
Mandar Patankar28-Mar-05 5:57
Mandar Patankar28-Mar-05 5:57 
Questioninstantiate a class from a string name? Pin
BlackDice28-Mar-05 4:04
BlackDice28-Mar-05 4:04 
AnswerRe: instantiate a class from a string name? Pin
Robert Rohde28-Mar-05 4:42
Robert Rohde28-Mar-05 4:42 
GeneralRe: instantiate a class from a string name? Pin
BlackDice28-Mar-05 4:45
BlackDice28-Mar-05 4:45 
GeneralRe: instantiate a class from a string name? Pin
Dave Kreskowiak28-Mar-05 5:00
mveDave Kreskowiak28-Mar-05 5:00 
GeneralOpen file in its parent application Pin
payal sheth28-Mar-05 2:13
payal sheth28-Mar-05 2:13 
GeneralRe: Open file in its parent application Pin
Dave Kreskowiak28-Mar-05 4:59
mveDave Kreskowiak28-Mar-05 4:59 
GeneralRe: Open file in its parent application Pin
payal sheth28-Mar-05 18:14
payal sheth28-Mar-05 18:14 
GeneralRe: Open file in its parent application Pin
Dave Kreskowiak29-Mar-05 2:08
mveDave Kreskowiak29-Mar-05 2:08 
GeneralStartMenuItemz Pin
AndrewVos28-Mar-05 1:36
AndrewVos28-Mar-05 1:36 
QuestionHow do I bind dataset using stored procedure? Pin
Vipul Mehta27-Mar-05 19:37
Vipul Mehta27-Mar-05 19:37 
GeneralDisabling Menu Items of MS Word Application Pin
Anonymous27-Mar-05 19:35
Anonymous27-Mar-05 19:35 
Generalenumerate Event handlers For a control Pin
xstoneheartx27-Mar-05 17:57
xstoneheartx27-Mar-05 17:57 
GeneralRe: enumerate Event handlers For a control Pin
Dave Kreskowiak28-Mar-05 4:58
mveDave Kreskowiak28-Mar-05 4:58 
GeneralRe: enumerate Event handlers For a control Pin
xstoneheartx28-Mar-05 9:14
xstoneheartx28-Mar-05 9:14 

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.