Click here to Skip to main content
15,908,173 members
Home / Discussions / C#
   

C#

 
GeneralRe: About POS system made in C# Pin
OriginalGriff13-Sep-09 0:48
mveOriginalGriff13-Sep-09 0:48 
GeneralRe: About POS system made in C# Pin
CoderForEver13-Sep-09 0:57
CoderForEver13-Sep-09 0:57 
GeneralRe: About POS system made in C# Pin
OriginalGriff13-Sep-09 1:15
mveOriginalGriff13-Sep-09 1:15 
GeneralRe: About POS system made in C# Pin
CoderForEver14-Sep-09 21:56
CoderForEver14-Sep-09 21:56 
AnswerRe: About POS system made in C# Pin
Dave Kreskowiak13-Sep-09 4:25
mveDave Kreskowiak13-Sep-09 4:25 
GeneralRe: About POS system made in C# Pin
CoderForEver14-Sep-09 21:53
CoderForEver14-Sep-09 21:53 
Questionhelp in tab control Pin
michaelgr112-Sep-09 20:44
michaelgr112-Sep-09 20:44 
AnswerRe: help in tab control Pin
zafersavas12-Sep-09 21:56
zafersavas12-Sep-09 21:56 
Have a look at this:
private void Form1_Load(object sender, EventArgs e)
{
    TabControl tabControl1 = new TabControl();
    TabPage tabPage1 = new TabPage();
    TabPage tabPage2 = new TabPage();
    TabPage tabPage3 = new TabPage();
    TabPage tabPage4 = new TabPage();
    TabPage tabPage5 = new TabPage();
    Label label1 = new Label();

    // Allows multiple rows of tabs in the tabControl1 tab strip.
    tabControl1.Multiline = true;

    tabControl1.SizeMode = TabSizeMode.FillToRight;
    tabControl1.Padding = new Point(15, 5);
    tabControl1.Controls.AddRange(new Control[] {
    tabPage1, tabPage2, tabPage3, tabPage4, tabPage5});
    tabControl1.Location = new Point(35, 65);
    tabControl1.Size = new Size(220, 180);

    // Gets the number of rows currently in the tabControl1 tab strip.
    // Assigns int value to the rows variable.
    int rows = tabControl1.RowCount;

    label1.Text = "There are " + rows.ToString() +
        " rows of tabs in the tabControl1 tab strip.";
    label1.Location = new Point(35, 25);
    label1.Size = new Size(220, 30);

    Size = new Size(300, 300);
    Controls.AddRange(new Control[] { label1, tabControl1 });
}

zafer
AnswerRe: help in tab control Pin
OriginalGriff12-Sep-09 21:56
mveOriginalGriff12-Sep-09 21:56 
QuestionAccessing Session data outside webmethod Pin
AndreFratelli12-Sep-09 15:07
AndreFratelli12-Sep-09 15:07 
AnswerRe: Accessing Session data outside webmethod Pin
Abhijit Jana12-Sep-09 21:42
professionalAbhijit Jana12-Sep-09 21:42 
GeneralRe: Accessing Session data outside webmethod Pin
AndreFratelli13-Sep-09 10:57
AndreFratelli13-Sep-09 10:57 
QuestionC# .NET Best Approaches...Newbie Help... Pin
thiago barbedo12-Sep-09 14:15
thiago barbedo12-Sep-09 14:15 
AnswerRe: C# .NET Best Approaches...Newbie Help... Pin
PIEBALDconsult12-Sep-09 20:19
mvePIEBALDconsult12-Sep-09 20:19 
GeneralRe: C# .NET Best Approaches...Newbie Help... Pin
thiago barbedo13-Sep-09 5:49
thiago barbedo13-Sep-09 5:49 
QuestionTrapping a Windows Dialog Pin
Damian McDonald12-Sep-09 13:03
Damian McDonald12-Sep-09 13:03 
AnswerRe: Trapping a Windows Dialog Pin
Abhishek Sur12-Sep-09 13:37
professionalAbhishek Sur12-Sep-09 13:37 
AnswerRe: Trapping a Windows Dialog Pin
Luc Pattyn12-Sep-09 13:50
sitebuilderLuc Pattyn12-Sep-09 13:50 
GeneralRe: Trapping a Windows Dialog Pin
Damian McDonald12-Sep-09 14:17
Damian McDonald12-Sep-09 14:17 
AnswerRe: Trapping a Windows Dialog Pin
April Fans22-Sep-09 17:29
April Fans22-Sep-09 17:29 
QuestionImplementing security against AD, user level, group level and roles? Pin
Mats Eurén12-Sep-09 12:02
Mats Eurén12-Sep-09 12:02 
AnswerRe: Implementing security against AD, user level, group level and roles? Pin
Abhishek Sur12-Sep-09 12:49
professionalAbhishek Sur12-Sep-09 12:49 
GeneralRe: Implementing security against AD, user level, group level and roles? Pin
Mats Eurén12-Sep-09 21:46
Mats Eurén12-Sep-09 21:46 
AnswerRe: Implementing security against AD, user level, group level and roles? Pin
April Fans22-Sep-09 17:31
April Fans22-Sep-09 17:31 
Questionfile list Pin
kennyhibs12-Sep-09 11:32
kennyhibs12-Sep-09 11:32 

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.