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

Visual Basic

 
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 
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 
Why use reflection for this?

If you know the name of the button, use this:

Button myButton = this.Controls["buttonName"] as Button;
myButton.BackColor = Color.Red;


This is a C# code and I assume you can write the equivalent in VB. Here "this" refers to the form in which the button is placed. In case the button is placed in some other container, use the control collection of that container.

50-50-90 rule: Anytime I have a 50-50 chance of getting something right, there's a 90% probability I'll get it wrong...!!

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 
AnswerRe: Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX)) Pin
Thomas Krojer18-Jan-10 23:30
Thomas Krojer18-Jan-10 23:30 

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.