Posts by Daniel Afonso • 35 points
6 posts
-
0
votes1
answer207
viewsQ: Load combobox C# from another in Load()
It’s been so long since I’ve worked with Winforms, I’m missing something. In my Form Load I call this method below: private void CarregarEstados() { cboEstado.DataSource = Listas.ListaEstados();…
-
-1
votes1
answer54
viewsQ: Generate txt with standard format
all right? I need to generate a txt file with a default format as below: D00000002 200014002154129 $9997 7720 0000 0012 * 12/19 *CLARICE LISPECTOR *0014-00 215412-9 * %B9997772000000012^CLARICE…
-
1
votes1
answer202
viewsA: SELECT with intermediate table returning all values in the same field and separated by comma
After several attempts and mistakes, I solved as follows:…
-
1
votes1
answer202
viewsQ: SELECT with intermediate table returning all values in the same field and separated by comma
I have the tables (and their relationships) of the diagram below: I need to do this: Bring all the fields of the TBCADCRE table and an extra column called ADQ with all the TIPADQ that the user has…
-
0
votes0
answers21
viewsQ: Paging in SQL
I have a SELECT that needs to turn into a PROC with paging to be consumed by an ASP (classic) page. Could you help me? Below is the SELECT: SELECT A.NOMUSU, A.NOMMAE, C.ATIVID, B.DSCEND, B.NUMEND,…
-
1
votes2
answers1101
viewsQ: Display modal after form validation (fields filled)
I have a form with several fields that are mandatory. By clicking submit, validation is performed using jquery validation and being ok, send to the controller (ASP.Net MVC). I need that after the…