Click here to Skip to main content
15,892,298 members
Home / Discussions / C#
   

C#

 
QuestionIt's quite embarrassing.. Pin
Muammar©5-Sep-07 0:55
Muammar©5-Sep-07 0:55 
AnswerRe: It's quite embarrassing.. Pin
Urs Enzler5-Sep-07 1:00
Urs Enzler5-Sep-07 1:00 
AnswerRe: It's quite embarrassing.. Pin
Guffa5-Sep-07 2:44
Guffa5-Sep-07 2:44 
QuestionCreating a web server for board game Pin
MeLight5-Sep-07 0:52
MeLight5-Sep-07 0:52 
AnswerRe: Creating a web server for board game Pin
Larantz5-Sep-07 9:49
Larantz5-Sep-07 9:49 
GeneralRe: Creating a web server for board game Pin
MeLight5-Sep-07 10:24
MeLight5-Sep-07 10:24 
AnswerRe: Databases Pin
originSH5-Sep-07 0:46
originSH5-Sep-07 0:46 
GeneralRe: Databases Pin
jblouir5-Sep-07 0:49
jblouir5-Sep-07 0:49 
Questionhow do I DeviceIoControl in C# Pin
gamitech4-Sep-07 23:31
gamitech4-Sep-07 23:31 
AnswerRe: how do I DeviceIoControl in C# Pin
Dave Kreskowiak5-Sep-07 5:13
mveDave Kreskowiak5-Sep-07 5:13 
QuestionSaving Animated Gifs Pin
pokabot4-Sep-07 23:20
pokabot4-Sep-07 23:20 
AnswerRe: Saving Animated Gifs Pin
Giorgi Dalakishvili4-Sep-07 23:38
mentorGiorgi Dalakishvili4-Sep-07 23:38 
QuestionSessionStateItemCollection.Dirty Pin
73amit4-Sep-07 23:17
73amit4-Sep-07 23:17 
QuestionWDSL Jagged array problem C# .net Pin
sander BB4-Sep-07 23:09
sander BB4-Sep-07 23:09 
QuestionRegion Pin
Assaf824-Sep-07 23:03
Assaf824-Sep-07 23:03 
AnswerRe: Region Pin
Giorgi Dalakishvili4-Sep-07 23:14
mentorGiorgi Dalakishvili4-Sep-07 23:14 
AnswerRe: Region Pin
hotcodeking5-Sep-07 1:48
hotcodeking5-Sep-07 1:48 
Questionexporting data to excel Pin
lourensG4-Sep-07 23:01
lourensG4-Sep-07 23:01 
AnswerRe: exporting data to excel Pin
Giorgi Dalakishvili4-Sep-07 23:16
mentorGiorgi Dalakishvili4-Sep-07 23:16 
GeneralRe: exporting data to excel Pin
lourensG4-Sep-07 23:42
lourensG4-Sep-07 23:42 
GeneralRe: exporting data to excel Pin
Giorgi Dalakishvili4-Sep-07 23:51
mentorGiorgi Dalakishvili4-Sep-07 23:51 
GeneralRe: exporting data to excel Pin
lourensG5-Sep-07 0:04
lourensG5-Sep-07 0:04 
GeneralRe: exporting data to excel Pin
Giorgi Dalakishvili5-Sep-07 0:13
mentorGiorgi Dalakishvili5-Sep-07 0:13 
GeneralRe: exporting data to excel Pin
lourensG5-Sep-07 0:16
lourensG5-Sep-07 0:16 
QuestiontxtBox_Leave Pin
Assaf824-Sep-07 22:56
Assaf824-Sep-07 22:56 
The leave event occure when i push the tab button
What happen with me is when i put the first digit the leave event is called

this the code:
private void txtNewExpDate3_Leave(object sender, EventArgs e)
{
string val = this.txtNewExpDate3.Text;
if (this.txtNewExpDate3.TextLength.Equals(1))
this.txtNewExpDate3.Text = "0" + val;
}
and the MaxLength for the txtNewExpDate3 is 2

I do the same code is the same event in other textbox and it work properly.

Thanks in advance

Assaf

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.