Click here to Skip to main content
15,898,010 members
Home / Discussions / C#
   

C#

 
GeneralRe: Having issues with a action looping Pin
Member 113620598-Jan-15 9:50
Member 113620598-Jan-15 9:50 
QuestionConvert from Base 64 to hexadecimal value Pin
NJdotnetdev8-Jan-15 7:10
NJdotnetdev8-Jan-15 7:10 
AnswerRe: Convert from Base 64 to hexadecimal value Pin
SledgeHammer018-Jan-15 7:25
SledgeHammer018-Jan-15 7:25 
GeneralRe: Convert from Base 64 to hexadecimal value Pin
NJdotnetdev8-Jan-15 7:32
NJdotnetdev8-Jan-15 7:32 
AnswerRe: Convert from Base 64 to hexadecimal value Pin
PIEBALDconsult8-Jan-15 7:32
mvePIEBALDconsult8-Jan-15 7:32 
GeneralRe: Convert from Base 64 to hexadecimal value Pin
NJdotnetdev8-Jan-15 7:34
NJdotnetdev8-Jan-15 7:34 
GeneralRe: Convert from Base 64 to hexadecimal value Pin
PIEBALDconsult8-Jan-15 7:42
mvePIEBALDconsult8-Jan-15 7:42 
GeneralRe: Convert from Base 64 to hexadecimal value Pin
NJdotnetdev13-Jan-15 8:48
NJdotnetdev13-Jan-15 8:48 
Questionusing sData in C# to post sales Pin
Jassim Rahma7-Jan-15 20:33
Jassim Rahma7-Jan-15 20:33 
AnswerRe: using sData in C# to post sales Pin
Mycroft Holmes7-Jan-15 21:02
professionalMycroft Holmes7-Jan-15 21:02 
AnswerRe: using sData in C# to post sales Pin
Richard MacCutchan7-Jan-15 22:51
mveRichard MacCutchan7-Jan-15 22:51 
QuestionABOUT C# PROJECT Pin
bhulku Swati7-Jan-15 16:33
bhulku Swati7-Jan-15 16:33 
AnswerRe: ABOUT C# PROJECT Pin
BillWoodruff7-Jan-15 16:55
professionalBillWoodruff7-Jan-15 16:55 
AnswerRe: ABOUT C# PROJECT Pin
Pete O'Hanlon7-Jan-15 20:29
mvePete O'Hanlon7-Jan-15 20:29 
AnswerRe: ABOUT C# PROJECT Pin
Swinkaran8-Jan-15 10:12
professionalSwinkaran8-Jan-15 10:12 
QuestionWhy is happening this error: Object synchronization method was called from an unsynchronized block of code. ? Pin
FANMixco7-Jan-15 8:38
FANMixco7-Jan-15 8:38 
AnswerRe: Why is happening this error: Object synchronization method was called from an unsynchronized block of code. ? PinPopular
Richard Deeming7-Jan-15 8:57
mveRichard Deeming7-Jan-15 8:57 
GeneralRe: Why is happening this error: Object synchronization method was called from an unsynchronized block of code. ? Pin
OriginalGriff7-Jan-15 8:59
mveOriginalGriff7-Jan-15 8:59 
QuestionI'm looking for instructions to convert a demo project into a class Pin
turbosupramk37-Jan-15 5:00
turbosupramk37-Jan-15 5:00 
AnswerRe: I'm looking for instructions to convert a demo project into a class Pin
OriginalGriff7-Jan-15 5:23
mveOriginalGriff7-Jan-15 5:23 
GeneralRe: I'm looking for instructions to convert a demo project into a class Pin
turbosupramk37-Jan-15 8:00
turbosupramk37-Jan-15 8:00 
GeneralRe: I'm looking for instructions to convert a demo project into a class Pin
OriginalGriff7-Jan-15 8:27
mveOriginalGriff7-Jan-15 8:27 
GeneralRe: I'm looking for instructions to convert a demo project into a class Pin
turbosupramk37-Jan-15 8:49
turbosupramk37-Jan-15 8:49 
GeneralRe: I'm looking for instructions to convert a demo project into a class Pin
OriginalGriff7-Jan-15 8:58
mveOriginalGriff7-Jan-15 8:58 
GeneralRe: I'm looking for instructions to convert a demo project into a class Pin
turbosupramk37-Jan-15 9:12
turbosupramk37-Jan-15 9:12 
Ok, I tried the code below but it did not work and my basic class is at the bottom. Under designer.cs, should I be using some of the code under InitializeComponent()?


dataGridViewUserControl1 dgv1 = new dataGridViewUserControl1();
dgv1.ColumnCount = 25;
dgv1.RowCount = 20;


C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace UserControlDemo
{
    public partial class dataGridViewUserControl1 : UserControl
    {
        public dataGridViewUserControl1()
        {
            InitializeComponent();
        }

        private int columnCount;

        public int ColumnCount
        {
            get { return columnCount; }
            set { columnCount = value; }
        }

        private int rowCount;

        public int RowCount
        {
            get { return rowCount; }
            set { rowCount = value; }
        }

        private void UserControl1_Load(object sender, EventArgs e)
        {
            // create datagridviewcolumns
            for (int i = 0; i < columnCount; i++)
            {
                dataGridView1.Columns[i].Name = "column " + i;
            }

            // create datagridviewrows
            for (int i = 0; i < rowCount; i++)
            {
                string[] rowName = new string[] { "row" + i.ToString() };
                dataGridView1.Rows.Add(rowName);
            }
        }
    }
}

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.