Posts by Edilson Lemos • 10 points
7 posts
-
-2
votes0
answers25
viewsQ: put Array of Label objects into Sort numbers?
I’m creating a Label array where the Label Input label creates 12 numeors from 1 to 25, random numbers in ascending order, an Input text where it receives 3 numbers that are added by the user, with…
-
-2
votes2
answers99
viewsA: Do not let insert same value in a Datagridview C#
The ideal events for such validation are Columnchanged and Rowchanged. Columnchanged occurs soon after the user has changed the value of a column is ideal for column-by-column validation. Rowchanged…
-
-2
votes2
answers74
viewsA: Data Conversion in SQL server 2008
try using a CONVERT(DATE, GETDATE()) DATA or CAST(GETDATE() as DATE) DATE
-
1
votes1
answer54
viewsA: SQL - Group information and Do not repeat
if I understand the question try using "select distinct c.Company, p.Name, c.data,c.Numerooc, c.fornecedor, pe.nome from avoids repetitions.
-
-1
votes1
answer48
viewsA: Displaying SQL Server data in Windows Forms
your question is half vague, would you have a datagrid to see these names or a list? or would you just type in some bank name? or you want a search system? explain better there so that we can help…
-
-1
votes2
answers233
viewsA: How to validate one of the 2 fields as required with bootstrap-Validator?
could do a simple javascript check, forcing the field to be filled. Function valida(){ var field = Document.getElementById("name"); if(field.value == ""){ Alert("Field not filled!"); Return false; }…
-
0
votes1
answer28
viewsA: I’m facing a problem with Datareader, in the C#programming language, Visual Studio development environment
public void Aberto() { try { // esta lina tem que ser close, vai abrir o que já esta aberto? :) if (connection.State != System.Data.ConnectionState.open) // CLOSE { connection.Open(); } }…