Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
GeneralRe: in c # how to make a control which shape is a line(not only horizontal and vertical but also bias) Pin
neeka20-Jul-08 23:33
neeka20-Jul-08 23:33 
QuestionCustom Control / Property Grid Pin
c242320-Jul-08 23:18
c242320-Jul-08 23:18 
AnswerRe: Custom Control / Property Grid Pin
leppie20-Jul-08 23:22
leppie20-Jul-08 23:22 
GeneralRe: Custom Control / Property Grid Pin
c242320-Jul-08 23:28
c242320-Jul-08 23:28 
AnswerRe: Custom Control / Property Grid Pin
darkelv20-Jul-08 23:27
darkelv20-Jul-08 23:27 
GeneralRe: Custom Control / Property Grid Pin
c242320-Jul-08 23:30
c242320-Jul-08 23:30 
QuestionFormat BoundColumn Text Pin
Member 426786720-Jul-08 23:07
Member 426786720-Jul-08 23:07 
AnswerRe: Format BoundColumn Text Pin
C1AllenS21-Jul-08 0:43
C1AllenS21-Jul-08 0:43 
Hello,

Could you explain your requirement on how and when you wish to pass the value to your
method. Is there any specific action after you wish to pass the data. The normal procedure
to pass the data could be in either of the given forms. For example:

<br />
private void button1_Click(object sender, EventArgs e)<br />
        {<br />
           <br />
<br />
           //mymethod(this.dataGridView1.CurrentCell.Value);<br />
<br />
           int row, col;<br />
           row = 3;<br />
           col = 2;<br />
<br />
           mymethod(this.dataGridView1[col, row].Value);        <br />
<br />
        }<br />
 public void mymethod(Object obj)<br />
        {<br />
            MessageBox.Show(obj.ToString());<br />
        }


I hope this helps.

Regards,

Allen

Allen Smith


ComponentOne LLC
www.componentone.com

GeneralRe: Format BoundColumn Text Pin
Member 426786721-Jul-08 0:48
Member 426786721-Jul-08 0:48 
GeneralRe: Format BoundColumn Text Pin
leppie21-Jul-08 3:46
leppie21-Jul-08 3:46 
QuestionRegarding Log4Net tool to clean the data older than 60 days Pin
rajesh4u20-Jul-08 22:49
rajesh4u20-Jul-08 22:49 
AnswerRe: Regarding Log4Net tool to clean the data older than 60 days Pin
leppie20-Jul-08 23:03
leppie20-Jul-08 23:03 
GeneralRe: Regarding Log4Net tool to clean the data older than 60 days Pin
rajesh4u20-Jul-08 23:32
rajesh4u20-Jul-08 23:32 
GeneralRe: Regarding Log4Net tool to clean the data older than 60 days Pin
Paddy Boyd21-Jul-08 2:34
Paddy Boyd21-Jul-08 2:34 
GeneralRe: Regarding Log4Net tool to clean the data older than 60 days Pin
rajesh4u22-Jul-08 1:30
rajesh4u22-Jul-08 1:30 
AnswerRe: Regarding Log4Net tool to clean the data older than 60 days Pin
nelsonpaixao21-Jul-08 13:20
nelsonpaixao21-Jul-08 13:20 
Questional excel sheets from different files into one new file Pin
Member 232322620-Jul-08 22:43
Member 232322620-Jul-08 22:43 
AnswerRe: al excel sheets from different files into one new file Pin
nelsonpaixao21-Jul-08 13:27
nelsonpaixao21-Jul-08 13:27 
GeneralRe: all excel sheets from different files into one new file Pin
Member 232322621-Jul-08 22:33
Member 232322621-Jul-08 22:33 
QuestionCan I get the DataTable properties from an arbitrary DataRow? Pin
JoeRip20-Jul-08 22:36
JoeRip20-Jul-08 22:36 
AnswerRe: Can I get the DataTable properties from an arbitrary DataRow? Pin
leppie20-Jul-08 22:58
leppie20-Jul-08 22:58 
GeneralRe: Can I get the DataTable properties from an arbitrary DataRow? Pin
JoeRip20-Jul-08 23:00
JoeRip20-Jul-08 23:00 
AnswerRe: Can I get the DataTable properties from an arbitrary DataRow? Pin
J4amieC20-Jul-08 22:59
J4amieC20-Jul-08 22:59 
QuestionRe: Can I get the DataTable properties from an arbitrary DataRow? Pin
JoeRip20-Jul-08 23:06
JoeRip20-Jul-08 23:06 
AnswerRe: Can I get the DataTable properties from an arbitrary DataRow? Pin
leppie20-Jul-08 23:24
leppie20-Jul-08 23:24 

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.