Posts by Cleverton Carneiro • 111 points
6 posts
-
1
votes1
answer149
viewsQ: LEFT JOIN mysql Filter non-existent records NOT IN
Good afternoon, what I’m trying to do is this: have two tables machines - stores copier location data ( address, zip code, etc ). readings - stores machine code, counters, datareading, etc I wanted…
-
0
votes3
answers1828
viewsA: Format Strings to RG
Try it this way Text1.Text = Text1.Text.Replace("X", "") double numero; if (Double.TryParse(Text1.Text, out numero)) Text1.Text = numero.ToString(@"000\.000\.000\-X"); else MessageBox.Show("Valor…
-
1
votes4
answers1058
viewsA: How to copy a datagrid to an arraylist
Follow example with Datatable for (int i = 0; i < 15; i++) { dataGridView1.Rows.Add("Linha= " + i.ToString() + "\t Coluna=0 ", "Linha= " + i.ToString() + "\t Coluna=1 ", "Linha= " + i.ToString()…
-
2
votes4
answers1058
viewsA: How to copy a datagrid to an arraylist
Put that code on your button and test; ( remembering that I put 04 columns in the DGV ) for (int i = 0; i < 15; i++) //carrega os itens { dataGridView1.Rows.Add("Linha= " + i.ToString() + "\t…
-
7
votes2
answers292
viewsA: Undo error display on console
Use the block Try catch follows an example <!DOCTYPE html> <html> <body> <script> try { //veja que escrevi documentOO e o correto é document documentOO.write('Olá Mundo'); }…
javascriptanswered Cleverton Carneiro 111 -
0
votes1
answer1862
viewsQ: Pass PHP variable value by Javascript
Now follow the function; what I need is to simply pass the value of a Javascript variable into PHP, if I make an isolated code without so many quotes and calls works, but when I mix everything gives…