Click here to Skip to main content
15,905,420 members
Home / Discussions / C#
   

C#

 
AnswerRe: The WebService still returns "Connection Successful" even SQL Server is off. Please Help. Pin
Bernhard Hiller8-Mar-12 21:26
Bernhard Hiller8-Mar-12 21:26 
GeneralRe: The WebService still returns "Connection Successful" even SQL Server is off. Please Help. Pin
Sentenryu9-Mar-12 0:21
Sentenryu9-Mar-12 0:21 
AnswerRe: The WebService still returns "Connection Successful" even SQL Server is off. Please Help. Pin
Shameel9-Mar-12 1:03
professionalShameel9-Mar-12 1:03 
AnswerRe: The WebService still returns "Connection Successful" even SQL Server is off. Please Help. Pin
jschell9-Mar-12 5:16
jschell9-Mar-12 5:16 
AnswerRe: The WebService still returns "Connection Successful" even SQL Server is off. Please Help. Pin
MarkSquall11-Mar-12 21:33
MarkSquall11-Mar-12 21:33 
QuestionEncryption and decryption Pin
sandy_418-Mar-12 17:19
sandy_418-Mar-12 17:19 
AnswerRe: Encryption and decryption PinPopular
OriginalGriff8-Mar-12 20:20
mveOriginalGriff8-Mar-12 20:20 
GeneralRe: Encryption and decryption Pin
sandy_419-Mar-12 0:12
sandy_419-Mar-12 0:12 
GeneralRe: Encryption and decryption Pin
OriginalGriff9-Mar-12 0:25
mveOriginalGriff9-Mar-12 0:25 
GeneralRe: Encryption and decryption Pin
sandy_419-Mar-12 0:27
sandy_419-Mar-12 0:27 
GeneralRe: Encryption and decryption Pin
Matt Meyer9-Mar-12 3:54
Matt Meyer9-Mar-12 3:54 
GeneralRe: Encryption and decryption Pin
Wayne Gaylard9-Mar-12 0:36
professionalWayne Gaylard9-Mar-12 0:36 
GeneralRe: Encryption and decryption Pin
OriginalGriff9-Mar-12 0:40
mveOriginalGriff9-Mar-12 0:40 
QuestionWhere is this c# console application running from?? Pin
Goalie358-Mar-12 17:08
Goalie358-Mar-12 17:08 
AnswerRe: Where is this c# console application running from?? Pin
Roger Wright8-Mar-12 17:30
professionalRoger Wright8-Mar-12 17:30 
AnswerRe: Where is this c# console application running from?? Pin
RobCroll9-Mar-12 3:19
RobCroll9-Mar-12 3:19 
GeneralRe: Where is this c# console application running from?? Pin
Roger Wright9-Mar-12 5:02
professionalRoger Wright9-Mar-12 5:02 
AnswerRe: Where is this c# console application running from?? Pin
jschell9-Mar-12 5:23
jschell9-Mar-12 5:23 
GeneralRe: Where is this c# console application running from?? Pin
Vasudevan Deepak Kumar9-Mar-12 9:54
Vasudevan Deepak Kumar9-Mar-12 9:54 
QuestionDecimal format in the textbox Text Change C# (1000000 -> 1,000,000) Pin
nhanlaptrinh8-Mar-12 16:03
nhanlaptrinh8-Mar-12 16:03 
AnswerRe: Decimal format in the textbox Text Change C# (1000000 -> 1,000,000) Pin
OriginalGriff8-Mar-12 20:37
mveOriginalGriff8-Mar-12 20:37 
GeneralRe: Decimal format in the textbox Text Change C# (1000000 -> 1,000,000) Pin
nhanlaptrinh9-Mar-12 0:56
nhanlaptrinh9-Mar-12 0:56 
We now want to enter the number into the textbox, textbox itself decimal format and displays the time on that textbox. For example, enter "123456789", the textbox will appear as 123,456,789. I have a problem when entering a string from 1 to 9 are ok, but when inserting a number in the range from 1 to 9, the textbox back to position the cursor on the first position, thanks to your help with , thank you very much.

Code I wrote
C#
private void textBox1_TextChanged(object sender, EventArgs e)
        {
            try
            {
                if (textBox1.Text != "")
                {
                    int iIndex = textBox1.Text.IndexOf('.');
                    if (iIndex != -1)
                    {
                        string strT = textBox1.Text.Substring(iIndex + 1, 1);
                    }
                    double a = double.Parse(textBox1.Text.Trim(','));
                    if (textBox1.SelectionStart >= textBox1.Text.Length)
                    {
                        textBox1.Text = a.ToString("#,###");
                        textBox1.SelectionStart = textBox1.Text.Length;
                    }
                    else
                    {
                        textBox1.Text = a.ToString("#,###"); 
                        //Help?
                    }
                }
            }
            catch (Exception) { MessageBox.Show("Must enter the number ."); }
        }


modified 9-Mar-12 7:18am.

GeneralRe: Decimal format in the textbox Text Change C# (1000000 -> 1,000,000) Pin
Bernhard Hiller9-Mar-12 2:23
Bernhard Hiller9-Mar-12 2:23 
GeneralRe: Decimal format in the textbox Text Change C# (1000000 -> 1,000,000) Pin
nhanlaptrinh9-Mar-12 2:35
nhanlaptrinh9-Mar-12 2:35 
GeneralRe: Decimal format in the textbox Text Change C# (1000000 -> 1,000,000) Pin
nhanlaptrinh9-Mar-12 16:49
nhanlaptrinh9-Mar-12 16:49 

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.