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

C#

 
GeneralRe: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Ray415287-Dec-14 15:38
Ray415287-Dec-14 15:38 
GeneralRe: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
BillWoodruff7-Dec-14 18:21
professionalBillWoodruff7-Dec-14 18:21 
AnswerRe: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Harsh Athalye7-Dec-14 17:13
Harsh Athalye7-Dec-14 17:13 
General[SOLVED]Re: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Ray415288-Dec-14 5:20
Ray415288-Dec-14 5:20 
GeneralRe: [SOLVED]Re: Reading Process.StandardOutput from Echoprint Codegen.exe always returns empty string Pin
Harsh Athalye8-Dec-14 17:59
Harsh Athalye8-Dec-14 17:59 
Questioni want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare7-Dec-14 6:21
Keshav Shivhare7-Dec-14 6:21 
SuggestionRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Richard MacCutchan7-Dec-14 6:42
mveRichard MacCutchan7-Dec-14 6:42 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare7-Dec-14 6:53
Keshav Shivhare7-Dec-14 6:53 
private void cheakbox_Load(object sender, EventArgs e)
{
con = new SqlConnection("Data Source=(local);Initial Catalog=vediocon;Integrated Security=True");

con.Open();

string s = "Select Date,DealerCode,AmounTransfer,ActualAmount,TransactionCode from [Transaction]where TransactionType='PBT' order by TransactionId desc";
cmd = new SqlCommand(s, con);

SqlDataReader reader = cmd.ExecuteReader();

DataTable dt = new DataTable();
dt.Load(reader);
dataGridView1.DataSource = dt;

DataGridViewCheckBoxColumn chk = new DataGridViewCheckBoxColumn();
dataGridView1.Columns.Add(chk);
chk.HeaderText = "Check Data";
chk.Name = "chk";
// dataGridView1.Rows[0].Cells[1].Value = true;
}

private void btnupload_Click(object sender, EventArgs e)
{
int RowNo = 0;


foreach (DataGridViewRow row in dataGridView1.Rows)
{
RowNo = RowNo + 1;
bool Checkbox = ((CheckBox)row.FindControl("CheckBox1")).Checked;
if (Checkbox = true)


{
// Perform copy...
}

}
Logic to seclect the row..i m new so help me in this..thnks in advance!!

GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Richard MacCutchan7-Dec-14 7:00
mveRichard MacCutchan7-Dec-14 7:00 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare7-Dec-14 7:47
Keshav Shivhare7-Dec-14 7:47 
AnswerRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu7-Dec-14 13:08
professionalsyed shanu7-Dec-14 13:08 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Keshav Shivhare8-Dec-14 3:12
Keshav Shivhare8-Dec-14 3:12 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu8-Dec-14 13:11
professionalsyed shanu8-Dec-14 13:11 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
syed shanu8-Dec-14 13:16
professionalsyed shanu8-Dec-14 13:16 
GeneralRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
Richard Deeming9-Dec-14 1:51
mveRichard Deeming9-Dec-14 1:51 
AnswerRe: i want to show the selected cheakbok values from one grid view to another grid view in windows form. Pin
aartimishra9-Dec-14 23:30
aartimishra9-Dec-14 23:30 
QuestionHow can I Create windows signup form application from html codes ? Pin
madleet6-Dec-14 16:51
madleet6-Dec-14 16:51 
QuestionRe: How can I Create windows signup form application from html codes ? Pin
Richard MacCutchan6-Dec-14 21:23
mveRichard MacCutchan6-Dec-14 21:23 
AnswerRe: How can I Create windows signup form application from html codes ? Pin
BillWoodruff7-Dec-14 2:37
professionalBillWoodruff7-Dec-14 2:37 
QuestionIndividual SubItem Double-click in Detail ListView Pin
Simmerliner6-Dec-14 7:17
Simmerliner6-Dec-14 7:17 
AnswerRe: Individual SubItem Double-click in Detail ListView Pin
Ravi Bhavnani6-Dec-14 11:51
professionalRavi Bhavnani6-Dec-14 11:51 
GeneralRe: Individual SubItem Double-click in Detail ListView Pin
Simmerliner6-Dec-14 13:34
Simmerliner6-Dec-14 13:34 
Questionwindows store app streaming webcam Pin
blqck6-Dec-14 4:28
blqck6-Dec-14 4:28 
GeneralMessage Closed Pin
5-Dec-14 8:02
ItsElio5-Dec-14 8:02 
GeneralRe: Community Project Pin
OriginalGriff5-Dec-14 8:12
mveOriginalGriff5-Dec-14 8:12 

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.