Click here to Skip to main content
15,903,540 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to create alert in c# Pin
Eddy Vluggen24-Nov-16 23:46
professionalEddy Vluggen24-Nov-16 23:46 
GeneralRe: How to create alert in c# Pin
Gerry Schmitz25-Nov-16 0:17
mveGerry Schmitz25-Nov-16 0:17 
AnswerRe: How to create alert in c# Pin
Wendelius1-May-17 18:15
mentorWendelius1-May-17 18:15 
QuestionHow to use Wizard functionality in Windows App using C# ASP.NET Pin
Member 1225689022-Nov-16 23:38
Member 1225689022-Nov-16 23:38 
AnswerRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Pete O'Hanlon23-Nov-16 0:17
mvePete O'Hanlon23-Nov-16 0:17 
GeneralRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Member 1225689023-Nov-16 1:14
Member 1225689023-Nov-16 1:14 
GeneralRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Pete O'Hanlon23-Nov-16 1:30
mvePete O'Hanlon23-Nov-16 1:30 
QuestionRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Eddy Vluggen23-Nov-16 4:53
professionalEddy Vluggen23-Nov-16 4:53 
AnswerRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Richard MacCutchan23-Nov-16 0:26
mveRichard MacCutchan23-Nov-16 0:26 
GeneralRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Member 1225689023-Nov-16 1:02
Member 1225689023-Nov-16 1:02 
GeneralRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Richard MacCutchan23-Nov-16 1:22
mveRichard MacCutchan23-Nov-16 1:22 
GeneralRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Afzaal Ahmad Zeeshan23-Nov-16 1:38
professionalAfzaal Ahmad Zeeshan23-Nov-16 1:38 
AnswerRe: How to use Wizard functionality in Windows App using C# ASP.NET Pin
Afzaal Ahmad Zeeshan23-Nov-16 0:38
professionalAfzaal Ahmad Zeeshan23-Nov-16 0:38 
QuestionDatagridView Multi Header Columns & Rows Pin
abboudi_ammar22-Nov-16 11:52
abboudi_ammar22-Nov-16 11:52 
AnswerRe: DatagridView Multi Header Columns & Rows Pin
OriginalGriff22-Nov-16 21:36
mveOriginalGriff22-Nov-16 21:36 
AnswerRe: DatagridView Multi Header Columns & Rows Pin
Afzaal Ahmad Zeeshan23-Nov-16 0:41
professionalAfzaal Ahmad Zeeshan23-Nov-16 0:41 
QuestionHow to index dynamically created controls and their values? Pin
turbosupramk322-Nov-16 8:58
turbosupramk322-Nov-16 8:58 
AnswerRe: How to index dynamically created controls and their values? Pin
Richard MacCutchan22-Nov-16 10:48
mveRichard MacCutchan22-Nov-16 10:48 
you could start by giving your controls meaningful names so anyone can better guess what they are used for. You can list all the controls on your form by something like:
C#
foreach (Control cc in Controls)
{
    // access the control's properties
    // check its type etc.
}
See Control Class (System.Windows.Forms)[^] for Properties, Methods etc.
QuestionAssigning Number To Strings Then Sort Pin
MadDashCoder21-Nov-16 19:46
MadDashCoder21-Nov-16 19:46 
AnswerRe: Assigning Number To Strings Then Sort Pin
Pete O'Hanlon21-Nov-16 20:34
mvePete O'Hanlon21-Nov-16 20:34 
GeneralRe: Assigning Number To Strings Then Sort Pin
MadDashCoder22-Nov-16 5:42
MadDashCoder22-Nov-16 5:42 
AnswerRe: Assigning Number To Strings Then Sort Pin
Afzaal Ahmad Zeeshan21-Nov-16 23:34
professionalAfzaal Ahmad Zeeshan21-Nov-16 23:34 
GeneralRe: Assigning Number To Strings Then Sort Pin
Daniel Pfeffer22-Nov-16 0:22
professionalDaniel Pfeffer22-Nov-16 0:22 
GeneralRe: Assigning Number To Strings Then Sort Pin
Afzaal Ahmad Zeeshan22-Nov-16 0:36
professionalAfzaal Ahmad Zeeshan22-Nov-16 0:36 
GeneralRe: Assigning Number To Strings Then Sort Pin
MadDashCoder22-Nov-16 5:23
MadDashCoder22-Nov-16 5:23 

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.