Posts by Geisson Lucas de Oliveira • 69 points
6 posts
-
0
votes2
answers1855
viewsA: Stopwatch construction
This was the result. Adapted to my need. It worked great. using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Text; using…
-
2
votes2
answers1855
viewsQ: Stopwatch construction
I’m building a stopwatch using WPF. When I performed some tests, I realized that the timer on WPF is delayed in relation to my timer iPhone. The difference starts to appear from 8 seconds after the…
-
0
votes1
answer85
viewsQ: Environment for Android database testing
I am developing a simple application with Android Studio, using Java as a language. Currently, I am implementing the login and logout routine and I have some doubts. 1° ) Is there a need for me to…
-
1
votes1
answer2754
viewsQ: How to adjust the alignment of a <th>?
I would like to know how I do to adjust the alignment of a Table Heading <th>? I do not know if it is possible to do this procedure as it is done for <tr> or <td>. I want to be…
-
2
votes1
answer279
viewsQ: How to assign a default date value to a Textboxfor?
I own the following Textboxfor @Html.TextBoxFor(model => model.data, "{0:dd/MM/yyyy}", new { @class = "form-control", @alt = "date", @placeholder = DateTime.Now.Date.ToString("dd/MM/yyyy"),…
-
1
votes1
answer192
viewsQ: How to make two Radiobuttons enable and disable fields
Each radio button enables and disables two fields, two by two. When the first radio is clicked the first two textBox are enabled and the last two are disabled. When you click on the second radio…