Click here to Skip to main content
15,885,720 members
Home / Discussions / Visual Basic
   

Visual Basic

 
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 
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 
i get the answer.
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

                Try
                    boton = CType(Me.Controls(fi.Name.Substring(4, 6)), Button)

                    ' MessageBox.Show(fi.Name.Substring(4, 6))
                    If boton.Name = "100" Then

                        boton.BackColor = Color.Gray

                    End If
                Catch ex As Exception

                End Try

            End If
        Next
    End Sub

i create a var called "boton as Button" then use Ctype to get the number and then make the comparation, if is true change the color of the button.

i make a substring because the name of the buttons start in "_p1" and a number like 100,101.

that is all.
Thanks
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 
AnswerRe: Query regarding the code in MatixCoder's "Autorun Applications" CodeProject article? Pin
Dave Kreskowiak19-Jan-10 6:35
mveDave Kreskowiak19-Jan-10 6:35 
GeneralRe: Query regarding the code in MatixCoder's "Autorun Applications" CodeProject article? Pin
Paul Hasler20-Jan-10 4:53
Paul Hasler20-Jan-10 4:53 
QuestionInvalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX)) Pin
vidhish18-Jan-10 20:12
vidhish18-Jan-10 20:12 

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.