Click here to Skip to main content
15,905,683 members
Home / Discussions / C#
   

C#

 
QuestionHow to create a DropDownList like that of the Font list in Microsoft Word? Pin
hhseiki21-Jul-08 1:00
hhseiki21-Jul-08 1:00 
QuestionLow Virtual memory problem with Memory Stream? Pin
DeepOceans21-Jul-08 0:39
DeepOceans21-Jul-08 0:39 
Answer[Message Deleted] Pin
AtulRane21-Jul-08 1:04
AtulRane21-Jul-08 1:04 
GeneralRe: Low Virtual memory problem with Memory Stream? Pin
Simon P Stevens21-Jul-08 2:52
Simon P Stevens21-Jul-08 2:52 
GeneralRe: Low Virtual memory problem with Memory Stream? Pin
Paul Conrad21-Jul-08 4:38
professionalPaul Conrad21-Jul-08 4:38 
AnswerRe: Low Virtual memory problem with Memory Stream? Pin
Paddy Boyd21-Jul-08 2:33
Paddy Boyd21-Jul-08 2:33 
QuestionCreating an Auto- Web Form Filler Application Pin
Raj-Ekoham DwitiyoNasti21-Jul-08 0:25
Raj-Ekoham DwitiyoNasti21-Jul-08 0:25 
AnswerRe: Creating an Auto- Web Form Filler Application Pin
Raj-Ekoham DwitiyoNasti21-Jul-08 1:38
Raj-Ekoham DwitiyoNasti21-Jul-08 1:38 
Questionin c # how to make a control which shape is a line(not only horizontal and vertical but also bias) Pin
neeka20-Jul-08 23:19
neeka20-Jul-08 23:19 
AnswerRe: in c # how to make a control which shape is a line(not only horizontal and vertical but also bias) Pin
leppie20-Jul-08 23:23
leppie20-Jul-08 23:23 
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 

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.