Posts by Victor Guedes • 49 points
5 posts
-
1
votes1
answer48
viewsA: Visual interface of vs 2017 with error
I deleted the file . suo from the solution and returned to work. Source: https://stackoverflow.com/questions/17703004/visual-studio-displaying-errors-even-if-projects-build/31944875#31944875…
-
-2
votes1
answer48
viewsQ: Visual interface of vs 2017 with error
Visual interface of vs 2017 marks code in red as if they were in error (when in fact they are not) even building successfully. Build result: I already restarted vs and windows and the problem…
-
2
votes2
answers3282
viewsA: Use Submit to submit a form, within modal, using bootstrap
You need to add name to input <input type="text" class="form-control" id="descricao" name="Descricao"> Binding is made from the name attribute of the tag.…
-
1
votes4
answers1343
viewsA: Plugin bootstrap-material-datetimepicker disable days of the week
This plugin does not support this feature. To do this you need to change the plugin code or find another alternative. I made a change to the plugin’s constructHTMLCalendar function to perform this…
-
-1
votes1
answer257
viewsA: Error: Unexpected type required
You cannot use this because string in Java is immutable. args[0].charAt(x)=args[0].charAt(i-1-x); args[0].charAt(i-1-x)=a; Do it: StringBuilder myName = new StringBuilder(args[0]);…
javaanswered Victor Guedes 49