Click here to Skip to main content
15,913,055 members
Home / Discussions / C#
   

C#

 
AnswerRe: GDI+ Adjusting Font spacing for Pin
stancrm13-Jul-06 22:05
stancrm13-Jul-06 22:05 
AnswerRe: GDI+ Adjusting Font spacing for Pin
Robert Rohde13-Jul-06 23:17
Robert Rohde13-Jul-06 23:17 
QuestionTo print an html page without loading it and without a print dialog, in asp.net Pin
sai_akkina13-Jul-06 21:29
sai_akkina13-Jul-06 21:29 
GeneralRe: To print an html page without loading it and without a print dialog, in asp.net Pin
Guffa13-Jul-06 23:03
Guffa13-Jul-06 23:03 
GeneralRe: To print an html page without loading it and without a print dialog, in asp.net Pin
vjain2314-Jul-06 1:16
vjain2314-Jul-06 1:16 
Questionchecking textboxes Pin
toink toink13-Jul-06 21:26
toink toink13-Jul-06 21:26 
AnswerRe: checking textboxes Pin
stancrm13-Jul-06 21:51
stancrm13-Jul-06 21:51 
AnswerRe: checking textboxes Pin
Andrew Lygin14-Jul-06 6:43
Andrew Lygin14-Jul-06 6:43 
Hi, I'd do this:
private bool CheckTextBoxes(params TextBox[] textboxes)
{
    bool result = true;
    if (textboxes.Length > 0)
    {
        string standardText = textboxes[0].Text;
        for(int i = 1; i < textboxes.Length; i++)
        {
            if (textboxes[i].Text != standardText)
            {
                result = false;
                break;
            }
        }
    }
    return result;
}

Function usage:
bool equality = CheckTextBoxes(textbox1, textbox2, textbox3, textbox4, textbox5, textbox6);

QuestionSMS Send and Recieve Pin
Mr. Unstoppable13-Jul-06 20:26
Mr. Unstoppable13-Jul-06 20:26 
AnswerRe: SMS Send and Recieve Pin
Divyang Mithaiwala13-Jul-06 20:39
Divyang Mithaiwala13-Jul-06 20:39 
AnswerRe: SMS Send and Recieve Pin
alexey N13-Jul-06 20:39
alexey N13-Jul-06 20:39 
AnswerRe: SMS Send and Recieve Pin
gsparrow14-Jul-06 1:37
gsparrow14-Jul-06 1:37 
QuestionHow to do Windows Settings during Installation Pin
engsrini13-Jul-06 20:05
engsrini13-Jul-06 20:05 
AnswerRe: How to do Windows Settings during Installation Pin
alexey N13-Jul-06 20:08
alexey N13-Jul-06 20:08 
GeneralRe: How to do Windows Settings during Installation Pin
engsrini13-Jul-06 20:55
engsrini13-Jul-06 20:55 
GeneralRe: How to do Windows Settings during Installation Pin
Dan Neely14-Jul-06 2:15
Dan Neely14-Jul-06 2:15 
QuestionSend XML file Pin
Spike^Blue^Heaven13-Jul-06 19:13
Spike^Blue^Heaven13-Jul-06 19:13 
AnswerRe: Send XML file Pin
psamy13-Jul-06 19:51
psamy13-Jul-06 19:51 
GeneralRe: Send XML file Pin
gayathirivasudevan13-Jul-06 19:59
gayathirivasudevan13-Jul-06 19:59 
QuestionGetting the User Information Who is Login Into the Computer Pin
Chetan Ranpariya13-Jul-06 17:38
Chetan Ranpariya13-Jul-06 17:38 
AnswerRe: Getting the User Information Who is Login Into the Computer Pin
Andrew Lygin13-Jul-06 18:15
Andrew Lygin13-Jul-06 18:15 
AnswerRe: Getting the User Information Who is Login Into the Computer Pin
stancrm13-Jul-06 20:25
stancrm13-Jul-06 20:25 
AnswerRe: Getting the User Information Who is Login Into the Computer Pin
albCode13-Jul-06 21:06
albCode13-Jul-06 21:06 
Questionchanging width of excel column Pin
_tasleem13-Jul-06 16:44
_tasleem13-Jul-06 16:44 
AnswerRe: changing width of excel column Pin
alexey N13-Jul-06 22:40
alexey N13-Jul-06 22:40 

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.