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

C#

 
GeneralRe: Current datagrid row not being selected Pin
Richard Deeming10-Dec-15 5:53
mveRichard Deeming10-Dec-15 5:53 
GeneralRe: Current datagrid row not being selected Pin
Member 1144944714-Dec-15 6:25
Member 1144944714-Dec-15 6:25 
GeneralRe: Current datagrid row not being selected Pin
Member 1144944714-Dec-15 7:08
Member 1144944714-Dec-15 7:08 
GeneralRe: Current datagrid row not being selected Pin
Eddy Vluggen10-Dec-15 4:43
professionalEddy Vluggen10-Dec-15 4:43 
Questionwhy do not SetFocus row for the GridView when using the Thread ? Pin
Member 24584679-Dec-15 21:20
Member 24584679-Dec-15 21:20 
AnswerRe: why do not SetFocus row for the GridView when using the Thread ? Pin
Simon_Whale9-Dec-15 21:58
Simon_Whale9-Dec-15 21:58 
GeneralC# ECG Analysis Algorithm Pin
Member 121973799-Dec-15 18:45
Member 121973799-Dec-15 18:45 
GeneralRe: C# ECG Analysis Algorithm Pin
Mycroft Holmes9-Dec-15 19:00
professionalMycroft Holmes9-Dec-15 19:00 
GeneralRe: C# ECG Analysis Algorithm Pin
Eddy Vluggen10-Dec-15 4:46
professionalEddy Vluggen10-Dec-15 4:46 
GeneralRe: C# ECG Analysis Algorithm Pin
Gerry Schmitz11-Dec-15 7:14
mveGerry Schmitz11-Dec-15 7:14 
GeneralHow I Can Make My Program With Multiple Language For Forms In C# ? Pin
eng_aza9-Dec-15 15:07
eng_aza9-Dec-15 15:07 
GeneralRe: How I Can Make My Program With Multiple Language For Forms In C# ? Pin
Mycroft Holmes9-Dec-15 19:03
professionalMycroft Holmes9-Dec-15 19:03 
GeneralRe: How I Can Make My Program With Multiple Language For Forms In C# ? Pin
Gerry Schmitz11-Dec-15 7:15
mveGerry Schmitz11-Dec-15 7:15 
QuestionSolid color image vs Panel with BackColor Pin
David Sattler9-Dec-15 5:34
David Sattler9-Dec-15 5:34 
AnswerRe: Solid color image vs Panel with BackColor Pin
OriginalGriff9-Dec-15 5:48
mveOriginalGriff9-Dec-15 5:48 
GeneralRe: Solid color image vs Panel with BackColor Pin
David Sattler9-Dec-15 5:52
David Sattler9-Dec-15 5:52 
Questionhow to fill the cells of a DataGridView directly Pin
Member 114494479-Dec-15 1:49
Member 114494479-Dec-15 1:49 
AnswerRe: how to fill the cells of a DataGridView directly Pin
Richard MacCutchan9-Dec-15 2:37
mveRichard MacCutchan9-Dec-15 2:37 
GeneralRe: how to fill the cells of a DataGridView directly Pin
Member 114494479-Dec-15 3:58
Member 114494479-Dec-15 3:58 
The problem is not there, actually I forgot to include here the end of that select ("select lojas.Id, lojas.NIF, lojas.Loja, lojas.Bloqueado, lojas.DataFim, lojas.lastupdate, lojas.Nome from lojas";).

I´ve made exactly the same but using textboxes instead of filling directly the datagrid cell, and the data was added. The code written below works, but data is inserted in texboxes instead of datagrid cells. I don't want to use any buttons, I want to add data directly in the datagrid with no buttons nor texboxes:

C++
string NIF = textBoxNIF.Text;
 int loja = int.Parse(textBoxLoja.Text);

 int bloqueador = 0;

 if (checkBoxBloq.Checked == true)
   bloqueador = 1;
   else
 bloqueador = 0;

 string DataFim = dateTimePicker1.Value.ToString("yyyy-MM-dd");

 string lastupdate = dateTimePicker2.Value.ToString("yyyy-MM-dd HH:mm:ss");

 string Nome = textBoxNome.Text;

string  Commandtext = "insert into lojas (NIF,loja,Bloqueado,DataFim,lastupdate,Nome) values ('" + NIF + "', " + loja + "," + bloqueador + ",'" + DataFim + "','" + lastupdate + "','" + Nome + "')";
OdbcCommand cm2 = new OdbcCommand(Commandtext, con);
cm2.ExecuteNonQuery();
Consulta();


Why does this code works but the first I put doesn't?
GeneralRe: how to fill the cells of a DataGridView directly Pin
Richard Deeming9-Dec-15 4:02
mveRichard Deeming9-Dec-15 4:02 
GeneralRe: how to fill the cells of a DataGridView directly Pin
Member 114494479-Dec-15 4:30
Member 114494479-Dec-15 4:30 
GeneralRe: how to fill the cells of a DataGridView directly Pin
Richard Deeming9-Dec-15 4:44
mveRichard Deeming9-Dec-15 4:44 
GeneralRe: how to fill the cells of a DataGridView directly Pin
Member 114494479-Dec-15 6:37
Member 114494479-Dec-15 6:37 
QuestionChild Window Form does not show color scheme on gridview Pin
Member 121312778-Dec-15 23:39
Member 121312778-Dec-15 23:39 
SuggestionRe: Child Window Form does not show color scheme on gridview Pin
Richard MacCutchan9-Dec-15 0:13
mveRichard MacCutchan9-Dec-15 0:13 

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.