Click here to Skip to main content
15,890,946 members
Home / Discussions / C#
   

C#

 
GeneralRe: Feedback: How to find the number of current window handles Pin
Martin#19-Sep-07 19:33
Martin#19-Sep-07 19:33 
GeneralRe: Feedback: How to find the number of current window handles Pin
Dave Kreskowiak20-Sep-07 1:59
mveDave Kreskowiak20-Sep-07 1:59 
GeneralRe: Feedback: How to find the number of current window handles Pin
Martin#20-Sep-07 2:48
Martin#20-Sep-07 2:48 
GeneralRe: Feedback: How to find the number of current window handles Pin
Dave Kreskowiak20-Sep-07 12:35
mveDave Kreskowiak20-Sep-07 12:35 
GeneralRe: Feedback: How to find the number of current window handles Pin
mav.northwind19-Sep-07 19:07
mav.northwind19-Sep-07 19:07 
GeneralRe: Feedback: How to find the number of current window handles Pin
Martin#19-Sep-07 19:35
Martin#19-Sep-07 19:35 
QuestionRemove One Row from DataGridView [modified] Pin
M Riaz Bashir18-Sep-07 21:15
M Riaz Bashir18-Sep-07 21:15 
AnswerRe: Remove One Row from DataGridView Pin
sri_ashutosh18-Sep-07 21:53
sri_ashutosh18-Sep-07 21:53 
hello dear,
try it
string dgvstr="";
SqlDataAdapter da = new SqlDataAdapter("select (enter all columan_name in table) from table_name", con);
dgvstr = da.SelectCommand.CommandText.Replace(",enter remove columan_name", "");
DataSet ds = new DataSet();
da.Fill(ds, "table_name");
datagridview.DataSource = ds.Tables[0];
datagridview.Columns[enter remove column_index(ex-0)].Visible = false;
datagridview.Rows[0].Selected = true;
AnswerRe: Remove One Row from DataGridView Pin
rohitsrivastava19-Sep-07 0:00
rohitsrivastava19-Sep-07 0:00 
QuestionLive Video Transmission Pin
DeepOceans18-Sep-07 20:41
DeepOceans18-Sep-07 20:41 
Questionusercontrols Pin
kakanis18-Sep-07 20:16
kakanis18-Sep-07 20:16 
AnswerRe: usercontrols Pin
DanB198319-Sep-07 0:27
DanB198319-Sep-07 0:27 
GeneralRe: usercontrols Pin
kakanis19-Sep-07 18:41
kakanis19-Sep-07 18:41 
GeneralRe: usercontrols Pin
DanB198319-Sep-07 20:53
DanB198319-Sep-07 20:53 
AnswerRe: usercontrols Pin
rohitsrivastava19-Sep-07 0:37
rohitsrivastava19-Sep-07 0:37 
GeneralRe: usercontrols Pin
Dave Kreskowiak19-Sep-07 5:05
mveDave Kreskowiak19-Sep-07 5:05 
AnswerRe: usercontrols Pin
Dave Kreskowiak19-Sep-07 5:10
mveDave Kreskowiak19-Sep-07 5:10 
Questiondynamic Connectivity Pin
shimjith.shimu18-Sep-07 19:59
shimjith.shimu18-Sep-07 19:59 
QuestionUsage of app.config Pin
M. J. Jaya Chitra18-Sep-07 19:42
M. J. Jaya Chitra18-Sep-07 19:42 
AnswerRe: Usage of app.config Pin
Eduard Keilholz18-Sep-07 20:34
Eduard Keilholz18-Sep-07 20:34 
GeneralRe: Usage of app.config Pin
M. J. Jaya Chitra18-Sep-07 20:44
M. J. Jaya Chitra18-Sep-07 20:44 
GeneralRe: Usage of app.config Pin
Eduard Keilholz18-Sep-07 20:49
Eduard Keilholz18-Sep-07 20:49 
QuestionRe: Usage of app.config [modified] Pin
M. J. Jaya Chitra18-Sep-07 20:56
M. J. Jaya Chitra18-Sep-07 20:56 
QuestionRe: Usage of app.config Pin
M. J. Jaya Chitra18-Sep-07 23:21
M. J. Jaya Chitra18-Sep-07 23:21 
AnswerRe: Usage of app.config Pin
Dave Kreskowiak19-Sep-07 5:03
mveDave Kreskowiak19-Sep-07 5:03 

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.