Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
5497 | Jul 6,2003 07:58 AM UTC | Jul 6,2003 08:31 AM UTC | WinForms | 1 |
![]() |
Tags: GridControl |
private void dgOutput_CheckBoxClick(object sender, Syncfusion.Windows.Forms.Grid.GridCellClickEventArgs e)
{
if(e.RowIndex > 0 && e.ColIndex > 0 )
{
int checkBoxColIndex = 10; //Sell column
if(e.ColIndex == checkBoxColIndex)
{
string s = this.dgOutput[e.RowIndex, checkBoxColIndex].Text;
if(s == "False")
Console.WriteLine(this._oID);
else if(s == "True")
Console.WriteLine("null");
}
}
}// dgOutput_CheckBoxClick(object sender, Grid.GridCellClickEventArgs e)
On my English version XP this works fine. But on other Language OS, will it work the same?
Is there any possibility to avoid this problem (if it might occur)?
XP This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.