Click here to Skip to main content
15,900,648 members
Home / Discussions / C#
   

C#

 
GeneralRe: Display a grid of all character of a font Pin
Luc Pattyn14-Jun-09 15:29
sitebuilderLuc Pattyn14-Jun-09 15:29 
GeneralRe: Display a grid of all character of a font Pin
_Maxxx_14-Jun-09 16:56
professional_Maxxx_14-Jun-09 16:56 
GeneralRe: Display a grid of all character of a font Pin
Luc Pattyn14-Jun-09 16:58
sitebuilderLuc Pattyn14-Jun-09 16:58 
GeneralRe: Display a grid of all character of a font Pin
_Maxxx_14-Jun-09 19:07
professional_Maxxx_14-Jun-09 19:07 
GeneralRe: Display a grid of all character of a font Pin
baranils14-Jun-09 19:46
baranils14-Jun-09 19:46 
GeneralRe: Display a grid of all character of a font Pin
Member 400112014-Jun-09 23:45
Member 400112014-Jun-09 23:45 
QuestionC# ToolstripMenu question Pin
Dj_AviAtriX14-Jun-09 12:00
Dj_AviAtriX14-Jun-09 12:00 
AnswerRe: C# ToolstripMenu question Pin
I Believe In GOD14-Jun-09 12:29
I Believe In GOD14-Jun-09 12:29 
this is a clue ...

using System;
using System.Drawing;
using System.Windows.Forms;


    public partial class Form1 : Form
    {
        public Button sb;
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            for (int x = 0; x < 10; x++)
            {
                sb = new Button();
                sb.Size = new Size(25, 25);
                sb.Location = new Point(x * 25, 10);
                sb.Visible = true;
                sb.Text = x.ToString();
                sb.Click += new EventHandler(sb_Click);
                Controls.Add(sb);
            }
        }

        private void sb_Click(object sender, System.EventArgs e)
        {
            Button sb = sender as Button;
            this.Text = sb.Text;
        }
    }


I know nothing , I know nothing ...

GeneralRe: C# ToolstripMenu question Pin
Dj_AviAtriX14-Jun-09 12:38
Dj_AviAtriX14-Jun-09 12:38 
QuestionHow to update cell in Datagrid Pin
E_Gold14-Jun-09 7:24
E_Gold14-Jun-09 7:24 
AnswerRe: How to update cell in Datagrid Pin
I Believe In GOD14-Jun-09 10:49
I Believe In GOD14-Jun-09 10:49 
Questionink sdk application Pin
radhikasharma14-Jun-09 6:59
radhikasharma14-Jun-09 6:59 
AnswerRe: ink sdk application Pin
OriginalGriff14-Jun-09 9:30
mveOriginalGriff14-Jun-09 9:30 
QuestionSamples To Bytes Pin
dSolariuM14-Jun-09 6:53
dSolariuM14-Jun-09 6:53 
AnswerRe: Samples To Bytes [modified] Pin
molesworth14-Jun-09 8:07
molesworth14-Jun-09 8:07 
QuestionHow to restart Console Application at Main Method Pin
Serpendiem14-Jun-09 6:46
Serpendiem14-Jun-09 6:46 
AnswerRe: How to restart Console Application at Main Method Pin
Eddy Vluggen14-Jun-09 8:19
professionalEddy Vluggen14-Jun-09 8:19 
AnswerRe: How to restart Console Application at Main Method Pin
I Believe In GOD14-Jun-09 10:50
I Believe In GOD14-Jun-09 10:50 
AnswerRe: How to restart Console Application at Main Method Pin
PIEBALDconsult14-Jun-09 15:14
mvePIEBALDconsult14-Jun-09 15:14 
AnswerRe: How to restart Console Application at Main Method [modified] Pin
XA21X30-Aug-10 19:48
XA21X30-Aug-10 19:48 
QuestionXLS to CSV - header problem Pin
Fehim Dervišbegović14-Jun-09 5:46
Fehim Dervišbegović14-Jun-09 5:46 
AnswerRe: XLS to CSV - header problem Pin
Henry Minute14-Jun-09 9:47
Henry Minute14-Jun-09 9:47 
GeneralRe: XLS to CSV - header problem Pin
Fehim Dervišbegović14-Jun-09 23:07
Fehim Dervišbegović14-Jun-09 23:07 
Questiondatagridview to excell Pin
michaelgr114-Jun-09 5:27
michaelgr114-Jun-09 5:27 
AnswerRe: datagridview to excell Pin
Fehim Dervišbegović14-Jun-09 5:55
Fehim Dervišbegović14-Jun-09 5:55 

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.