Click here to Skip to main content
15,887,746 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Getpicture method in ocx Pin
Mohamed Asane20-Jan-10 17:39
Mohamed Asane20-Jan-10 17:39 
GeneralRe: Getpicture method in ocx Pin
Estys21-Jan-10 2:05
Estys21-Jan-10 2:05 
QuestionVB + OleDb.OleDbCommand + MS Access issue. Pin
alexvw19-Jan-10 9:23
alexvw19-Jan-10 9:23 
AnswerRe: VB + OleDb.OleDbCommand + MS Access issue. Pin
dragon_20-Jan-10 2:38
dragon_20-Jan-10 2:38 
GeneralRe: VB + OleDb.OleDbCommand + MS Access issue. Pin
alexvw20-Jan-10 14:12
alexvw20-Jan-10 14:12 
GeneralRe: VB + OleDb.OleDbCommand + MS Access issue. Pin
dragon_20-Jan-10 18:08
dragon_20-Jan-10 18:08 
AnswerSOLVED: VB + OleDb.OleDbCommand + MS Access issue Pin
alexvw30-Jan-10 2:45
alexvw30-Jan-10 2:45 
QuestionHow to change a button background color if i know the name? Pin
spawneditions19-Jan-10 6:36
spawneditions19-Jan-10 6:36 
Hi im here again,

i got this code that show me the name of the controls in my form

Public Sub GetControls(ByVal owner As Form)
        Dim fis As System.Reflection.FieldInfo()
        fis = owner.GetType().GetFields(Reflection.BindingFlags.NonPublic Or _
        Reflection.BindingFlags.Instance Or _
        Reflection.BindingFlags.IgnoreCase)
        For Each fi As Reflection.FieldInfo In fis
            If TypeOf (fi.GetValue(owner)) Is Control Then
                MessageBox.Show(fi.Name)
            End If
        Next
    End Sub


I'm trying this because i wanna put this in the load form, but i wanna make a comparation like this,
if fi.name = "101" then button.BackColor = Green
something like this , how can i do?, only i wanna change the backcolor of the button with that name, only if the comparation is true
AnswerRe: How to change a button background color if i know the name? Pin
EliottA19-Jan-10 7:14
EliottA19-Jan-10 7:14 
GeneralRe: How to change a button background color if i know the name? Pin
spawneditions19-Jan-10 7:20
spawneditions19-Jan-10 7:20 
AnswerRe: How to change a button background color if i know the name? Pin
spawneditions19-Jan-10 8:28
spawneditions19-Jan-10 8:28 
GeneralRe: How to change a button background color if i know the name? Pin
dan!sh 19-Jan-10 18:45
professional dan!sh 19-Jan-10 18:45 
QuestionRediming An array object Containing Public Share Variant Pin
A.Najafi19-Jan-10 0:11
A.Najafi19-Jan-10 0:11 
AnswerRe: Rediming An array object Containing Public Share Variant Pin
DaveAuld19-Jan-10 5:17
professionalDaveAuld19-Jan-10 5:17 
QuestionEdit records in vb6 through access Pin
offroaderdan18-Jan-10 22:33
offroaderdan18-Jan-10 22:33 
Questionhow to update a VB .NET application? Pin
jeshra27918-Jan-10 21:48
jeshra27918-Jan-10 21:48 
AnswerRe: how to update a VB .NET application? Pin
Steven J Jowett19-Jan-10 1:14
Steven J Jowett19-Jan-10 1:14 
GeneralRe: how to update a VB .NET application? Pin
jeshra27921-Jan-10 0:30
jeshra27921-Jan-10 0:30 
QuestionI Need Help On Vb.net Smart Devices [modified] Pin
bernard tang18-Jan-10 21:27
bernard tang18-Jan-10 21:27 
AnswerRe: I Need Help On Vb.net Smart Devices Pin
jerryj19-Jan-10 3:31
jerryj19-Jan-10 3:31 
GeneralRe: I Need Help On Vb.net Smart Devices Pin
bernard tang19-Jan-10 16:54
bernard tang19-Jan-10 16:54 
AnswerRe: I Need Help On Vb.net Smart Devices Pin
Rick Shaub19-Jan-10 5:23
Rick Shaub19-Jan-10 5:23 
GeneralRe: I Need Help On Vb.net Smart Devices Pin
bernard tang19-Jan-10 16:59
bernard tang19-Jan-10 16:59 
QuestionQuery regarding the code in MatixCoder's "Autorun Applications" CodeProject article? Pin
Paul Hasler18-Jan-10 20:20
Paul Hasler18-Jan-10 20:20 
AnswerRe: Query regarding the code in MatixCoder's "Autorun Applications" CodeProject article? Pin
loyal ginger19-Jan-10 4:50
loyal ginger19-Jan-10 4:50 

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.