Posts by IdkWhy • 550 points
12 posts
-
1
votes1
answer80
views -
1
votes1
answer534
viewsA: Intellisense does not work
Go to: Tools ► Options ► Text Editor ► All Languages ► General: Select the columns Auto list Numbers and Parameter Information Build a Solution and restart the visual studio…
-
2
votes3
answers851
viewsA: Add a title to the SELECT tag (without the "Selected disabled" option) without it appearing in the options?
I think what you want is this: <select> <option selected hidden >- Selecione -</option> <option>Volvo</option> <option>Mercedes Bens</option>…
-
0
votes1
answer1841
viewsQ: Deserialize List JSON C#
In my program I do a GET and get the following: {"totalcount":2,"count":2,"sort":1,"order":"ASC","data":[{"2":8283,"1":"Teste","12":6,"15":"2018-03-29 11:30:04","19":"2018-03-29…
-
0
votes1
answer1077
views -
0
votes0
answers85
views -
3
votes1
answer12121
viewsQ: Postasync Json C#
I have the Following class set: public class Ticket { public string name public string content public int itilcategories_id } And the following code sample: static HttpClient client = new…
-
24
votes4
answers2561
viewsA: What’s wrong with gluttonous philosophers?
Problem of gluttonous philosophers (dinner of philosophers): Imagine a round table with five chairs and in each of the chairs is seated a philosopher. At this table there are 5 spaghetti dishes and…
-
2
votes1
answer6216
viewsQ: Join columns in one SQL column
I have three columns, belonging to the same table in the database, these being: Growth, Financial Autonomy and Rationliquidity; All columns are bit type. What I need is to group the three fields in…
-
1
votes1
answer300
viewsQ: Error: Expected End of Statement
I’m using SQL for a classic ASP page and in a part of the code I have this: If (opcao = 1) Then If credito > 0 Then SQL = "UPDATE FO_Passaportes SET creditoTotal = creditoTotal + " & credito…
-
4
votes1
answer107
viewsQ: Condition to check null variables does not work
I’m developing a page ASP (Classic) and on that page I have this: <%if(textocontrato) = "NULL" Then%> <td >Texto Contrato</td> <td ><input type="text" name="textocontrato"…
-
1
votes0
answers318
viewsQ: Incorrect syntax near the keyword 'ORDER'
I started to perform a program in classic Portuguese and in a part of that program I wrote the following code: <% SQL = " SELECT Id = TCD.Id "_ & " , IdTipoContrato = TC.IdTipoContrato "_…