Click here to Skip to main content
15,881,858 members
Home / Discussions / C#
   

C#

 
GeneralRe: Save and Retrieve Image Pin
nirmalgopalakrishnan30-Dec-12 19:57
nirmalgopalakrishnan30-Dec-12 19:57 
GeneralRe: Save and Retrieve Image Pin
Richard MacCutchan30-Dec-12 22:19
mveRichard MacCutchan30-Dec-12 22:19 
GeneralRe: Save and Retrieve Image Pin
nirmalgopalakrishnan31-Dec-12 17:28
nirmalgopalakrishnan31-Dec-12 17:28 
GeneralRe: Save and Retrieve Image Pin
Richard MacCutchan31-Dec-12 22:50
mveRichard MacCutchan31-Dec-12 22:50 
AnswerRe: Save and Retrieve Image Pin
Abhinav S28-Dec-12 23:38
Abhinav S28-Dec-12 23:38 
GeneralRe: Save and Retrieve Image Pin
nirmalgopalakrishnan29-Dec-12 5:16
nirmalgopalakrishnan29-Dec-12 5:16 
QuestionDynamic text box array and focus event Pin
Everetts28-Dec-12 8:41
Everetts28-Dec-12 8:41 
AnswerRe: Dynamic text box array and focus event Pin
Eddy Vluggen28-Dec-12 10:25
professionalEddy Vluggen28-Dec-12 10:25 
Add in a lambda, at the point where you create the textboxes. Like the example below;
C#
public Form1()
{
    InitializeComponent();

    var tb = new TextBox();
    tb.GotFocus += delegate (object s, EventArgs a)
    {
        (s as TextBox).BackColor = Color.Red;
    };
    tb.LostFocus += delegate(object s, EventArgs a)
    {
        (s as TextBox).BackColor = Color.Green;
    };
    Controls.Add(tb);
}

Bastard Programmer from Hell Suspicious | :suss:
If you can't read my code, try converting it here[^]
They hate us for our freedom![^]

GeneralRe: Dynamic text box array and focus event Pin
bambuz28-Dec-12 14:33
bambuz28-Dec-12 14:33 
GeneralRe: Dynamic text box array and focus event Pin
Everetts28-Dec-12 16:41
Everetts28-Dec-12 16:41 
QuestionConnection String in Properties.Settings Pin
TheJudeDude28-Dec-12 7:47
TheJudeDude28-Dec-12 7:47 
AnswerRe: Connection String in Properties.Settings Pin
SledgeHammer0128-Dec-12 8:27
SledgeHammer0128-Dec-12 8:27 
AnswerRe: Connection String in Properties.Settings Pin
Eddy Vluggen28-Dec-12 8:30
professionalEddy Vluggen28-Dec-12 8:30 
GeneralRe: Connection String in Properties.Settings Pin
TheJudeDude28-Dec-12 8:49
TheJudeDude28-Dec-12 8:49 
GeneralRe: Connection String in Properties.Settings Pin
Eddy Vluggen28-Dec-12 9:01
professionalEddy Vluggen28-Dec-12 9:01 
GeneralRe: Connection String in Properties.Settings Pin
PIEBALDconsult28-Dec-12 14:04
mvePIEBALDconsult28-Dec-12 14:04 
GeneralRe: Connection String in Properties.Settings Pin
SledgeHammer0129-Dec-12 7:18
SledgeHammer0129-Dec-12 7:18 
GeneralRe: Connection String in Properties.Settings Pin
PIEBALDconsult29-Dec-12 7:23
mvePIEBALDconsult29-Dec-12 7:23 
GeneralRe: Connection String in Properties.Settings Pin
SledgeHammer0129-Dec-12 7:29
SledgeHammer0129-Dec-12 7:29 
GeneralRe: Connection String in Properties.Settings Pin
PIEBALDconsult29-Dec-12 7:43
mvePIEBALDconsult29-Dec-12 7:43 
GeneralRe: Connection String in Properties.Settings Pin
SledgeHammer0129-Dec-12 7:47
SledgeHammer0129-Dec-12 7:47 
GeneralRe: Connection String in Properties.Settings Pin
PIEBALDconsult29-Dec-12 7:51
mvePIEBALDconsult29-Dec-12 7:51 
GeneralRe: Connection String in Properties.Settings Pin
SledgeHammer0129-Dec-12 7:56
SledgeHammer0129-Dec-12 7:56 
GeneralRe: Connection String in Properties.Settings Pin
jschell30-Dec-12 8:33
jschell30-Dec-12 8:33 
GeneralRe: Connection String in Properties.Settings Pin
SledgeHammer0130-Dec-12 8:56
SledgeHammer0130-Dec-12 8:56 

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.