Click here to Skip to main content
15,892,537 members
Home / Discussions / Windows Forms
   

Windows Forms

 
GeneralRe: What is best way to convert desktop app to web app? Pin
kofflerd27-Jul-10 20:00
kofflerd27-Jul-10 20:00 
AnswerRe: What is best way to convert desktop app to web app? Pin
Phil N Bennett25-Jul-10 11:29
Phil N Bennett25-Jul-10 11:29 
GeneralRe: What is best way to convert desktop app to web app? Pin
bobishkindaguy27-Jul-10 9:20
bobishkindaguy27-Jul-10 9:20 
AnswerRe: What is best way to convert desktop app to web app? Pin
Andy_L_J27-Jul-10 22:48
Andy_L_J27-Jul-10 22:48 
AnswerRe: What is best way to convert desktop app to web app? Pin
BillWoodruff28-Jul-10 18:12
professionalBillWoodruff28-Jul-10 18:12 
AnswerRe: What is best way to convert desktop app to web app? Pin
Ravi Bhavnani2-Aug-10 14:45
professionalRavi Bhavnani2-Aug-10 14:45 
QuestionDataGridView Custom Cells/Columns problems Pin
kmh7275620-Jul-10 6:43
kmh7275620-Jul-10 6:43 
AnswerRe: DataGridView Custom Cells/Columns problems Pin
Peace ON21-Jul-10 21:43
Peace ON21-Jul-10 21:43 
I do not read whole your question. But by reading some lines what I got is
that you need to make visibility true or false for particular column of DataGrid based
on some condition or data change in particular row of the same grid.

Find following code useful for the same.

C#
//for making visibility true or false, just try this code.
dataGridView1.Columns["column_name"/column_number].Visible = false/true; 

//To access particular cell, you need to track cell content click event
//In that you can access particular cell by e.RowIndex and e.ColumnIndex
//So you will get value of clicked cell and based on value of it you can
//make particular column visible on or off as described in above code.
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
    String str=dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
}



HTH
Jinal Desai - LIVE
Experience is mother of sage....

GeneralRe: DataGridView Custom Cells/Columns problems Pin
kmh7275622-Jul-10 23:36
kmh7275622-Jul-10 23:36 
QuestionHelp with Reports: Within one of my .rdlc there 2 tables from 2 datasets.... Pin
roman_s15-Jul-10 4:56
roman_s15-Jul-10 4:56 
AnswerRe: Help with Reports: Within one of my .rdlc there 2 tables from 2 datasets.... Pin
Richard Blythe15-Jul-10 6:46
Richard Blythe15-Jul-10 6:46 
QuestionC# Windows Form Application with WCF on Windows XP Pin
xavier999914-Jul-10 16:06
xavier999914-Jul-10 16:06 
AnswerRe: C# Windows Form Application with WCF on Windows XP Pin
Eddy Vluggen16-Jul-10 0:36
professionalEddy Vluggen16-Jul-10 0:36 
AnswerRe: C# Windows Form Application with WCF on Windows XP Pin
Abhinav S20-Jul-10 18:33
Abhinav S20-Jul-10 18:33 
AnswerRe: C# Windows Form Application with WCF on Windows XP Pin
spn21-Jul-10 18:59
spn21-Jul-10 18:59 
QuestionSave DataGridView To Database Pin
.NetDeveloper0910-Jul-10 21:31
.NetDeveloper0910-Jul-10 21:31 
AnswerRe: Save DataGridView To Database Pin
TimmL11-Jul-10 8:58
TimmL11-Jul-10 8:58 
AnswerRe: Save DataGridView To Database Pin
Peace ON11-Jul-10 19:53
Peace ON11-Jul-10 19:53 
QuestionControl Binding of a bool isn't updating Pin
TimmL9-Jul-10 2:56
TimmL9-Jul-10 2:56 
AnswerRe: Control Binding of a bool isn't updating Pin
Richard Blythe9-Jul-10 6:00
Richard Blythe9-Jul-10 6:00 
AnswerRe: Control Binding of a bool isn't updating Pin
darkelv9-Jul-10 7:43
darkelv9-Jul-10 7:43 
QuestionDataset and Crystal Reports Pin
.NetDeveloper093-Jul-10 23:05
.NetDeveloper093-Jul-10 23:05 
AnswerRe: Dataset and Crystal Reports Pin
darkelv10-Jul-10 18:50
darkelv10-Jul-10 18:50 
GeneralRe: Dataset and Crystal Reports Pin
.NetDeveloper0910-Jul-10 21:27
.NetDeveloper0910-Jul-10 21:27 
AnswerRe: Legal Billing Software Pin
Eddy Vluggen4-Jul-10 1:45
professionalEddy Vluggen4-Jul-10 1:45 

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.