Click here to Skip to main content
15,914,419 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralAuthorization and profile application block Pin
tigertwareg18-Jan-05 6:33
tigertwareg18-Jan-05 6:33 
GeneralRe: Authorization and profile application block Pin
J4amieC19-Jan-05 5:44
J4amieC19-Jan-05 5:44 
GeneralRe: Authorization and profile application block Pin
Anonymous24-Jan-05 3:51
Anonymous24-Jan-05 3:51 
GeneralAccessing a Form from another Pin
raulavi18-Jan-05 5:58
raulavi18-Jan-05 5:58 
GeneralRe: Accessing a Form from another Pin
Amaterasuv18-Jan-05 7:23
Amaterasuv18-Jan-05 7:23 
GeneralRe: Accessing a Form from another Pin
raulavi18-Jan-05 7:32
raulavi18-Jan-05 7:32 
GeneralRe: Accessing a Form from another Pin
raulavi18-Jan-05 7:47
raulavi18-Jan-05 7:47 
GeneralModifying and adding controls to parentform Pin
Amaterasuv18-Jan-05 8:14
Amaterasuv18-Jan-05 8:14 
If you want to add a control:
Me.ParentForm.Controls.Add(value as system.windows.forms.control)

------------
If you know the control's name (Textbox1) you can use the for... next as i wrote.
Dim ctr As New Control
for each ctr in me.parentform.controls
if ctr.name="ControlIwantTochange" then
'instructions
ctr.text="Whatever"
end if
next

------------
If you want to change every control:

For Each ctr In Me.Parentform.Controls
Select Case UCase(thisObj.GetType.Name)
Case "TEXTBOX"
'code
end select
next


GeneralRe: Accessing a Form from another Pin
Dave Kreskowiak18-Jan-05 8:19
mveDave Kreskowiak18-Jan-05 8:19 
GeneralRe: Accessing a Form from another Pin
Rizwan Bashir19-Jan-05 0:37
Rizwan Bashir19-Jan-05 0:37 
GeneralLocalizing Crystal Reports Pin
Amaterasuv18-Jan-05 1:01
Amaterasuv18-Jan-05 1:01 
GeneralEditing MIDI File Pin
girijaa18-Jan-05 0:37
professionalgirijaa18-Jan-05 0:37 
Generalvb.net Pin
Anonymous17-Jan-05 23:51
Anonymous17-Jan-05 23:51 
GeneralRe: vb.net Pin
Tom John18-Jan-05 0:02
Tom John18-Jan-05 0:02 
GeneralObject Property Serialization Pin
Tom John17-Jan-05 23:32
Tom John17-Jan-05 23:32 
GeneralRe: Object Property Serialization Pin
-Dr_X-20-Jan-05 13:37
-Dr_X-20-Jan-05 13:37 
Generalaccessing property of dynamically created controls using vb.net code behind Pin
udita17-Jan-05 19:15
udita17-Jan-05 19:15 
GeneralRe: accessing property of dynamically created controls using vb.net code behind Pin
Rizwan Bashir17-Jan-05 20:21
Rizwan Bashir17-Jan-05 20:21 
QuestionWhy could not exit from a form? Pin
rushing17-Jan-05 18:27
rushing17-Jan-05 18:27 
AnswerRe: Why could not exit from a form? Pin
Amaterasuv18-Jan-05 8:02
Amaterasuv18-Jan-05 8:02 
GeneralRe: Why could not exit from a form? Pin
rushing18-Jan-05 16:35
rushing18-Jan-05 16:35 
QuestionHow to Custome selected item background color in a listview Pin
NarayanVl17-Jan-05 17:07
NarayanVl17-Jan-05 17:07 
AnswerRe: How to Custome selected item background color in a listview Pin
Tom John17-Jan-05 23:35
Tom John17-Jan-05 23:35 
QuestionHow to gray out a single item in a checked listbox? Pin
NarayanVl17-Jan-05 16:59
NarayanVl17-Jan-05 16:59 
AnswerRe: How to gray out a single item in a checked listbox? Pin
Tom John17-Jan-05 23:36
Tom John17-Jan-05 23:36 

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.