Posts by Heron Dantas • 316 points
6 posts
-
0
votes2
answers318
viewsA: How to load values in the combobox by the form load event C#
I believe it will work when adding Databind() cbProdutos.DataBind(); Make sure it works. private void frmAdicionarProdutos_Load(object sender, EventArgs e) { string serverName = "localhost"; string…
c#answered Heron Dantas 316 -
4
votes1
answer78
viewsA: Load external source
The code below can help you. For more details, take a look at this link: HERE $('div').on('click', function(){ $("head").prepend("<style type=\"text/css\">" + "@font-face {\n" +…
jqueryanswered Heron Dantas 316 -
8
votes2
answers3199
viewsA: What is the convention for using upper and lower case names in Java?
Packages () The package name prefix must be unique, must always be written in full-ASCII lowercase letters and must be one of the top-level domain names, currently with, edu, Gov, mil, net, org,…
-
2
votes2
answers881
viewsA: Format data dd/mm/yyyy in a jquery Datatable.net
You can do it that way. var data = new Date("2016-10-23T20:30:01.017"); var dia = data.getDate(); var mes = data.getMonth(); var ano = data.getFullYear(); document.write(dia + '/' + mes + '/' +…
-
2
votes1
answer578
viewsA: Connection String C# Entityframework
When connecting via Windows Authentication you need to add Integrated Security=SSPI; Try to switch to <add name="DBModel" connectionString="data source=DESKTOP-JIJ3G7N;initial…
-
1
votes2
answers717
viewsA: How to identify the HTML element in which a js script is contained?
If you do not want to recover by Id or Class. You can recover by Tagname. document.getElementsByTagName In the example below, I created a <Li> and also created a <span> to add the…
javascriptanswered Heron Dantas 316