Posts by Lucas Augusto • 159 points
11 posts
-
0
votes1
answer302
viewsA: How to use jquery plugin in vuejs2
Option #1: Use Provideplugin Add the Provideplugin in the plugin array in the files build/webpack.dev.conf.js and build/webpack.prod.conf.js, so jQuery becomes global for all its modules: plugins: […
-
0
votes3
answers608
viewsA: Convert string to date
My idea was to show on screen in format: "12/10/2017 00:00:00" But working on the backend in format "Thu Oct 12 2017 00:00:00" In this case, what I did to solve the problem was to use a library…
javascriptanswered Lucas Augusto 159 -
-1
votes3
answers608
viewsQ: Convert string to date
How do I convert: var x = "12/10/2017 12:08:26" pro format: "Thu Oct 12 2017 00:00:00" Anyone have any idea?
javascriptasked Lucas Augusto 159 -
1
votes1
answer345
viewsQ: Check exact sum in a cell from a range
I have a range in Excel with N values. I also have a cell with a value x. It is possible without using vba, that I know exactly which cells are in this range that summed, result in the value of my…
excelasked Lucas Augusto 159 -
4
votes2
answers872
viewsQ: What are anonymous methods and what is their main purpose?
I know they’re used to working together with delegates, but the sources I found were a little confused in my opinion.
-
2
votes1
answer169
viewsA: Problems with the excel connection string
In 64-bit Office Windows environments (2010, 2013), there are many reports about this error. The solution or alternative solution is a little strange, but it seems to work for most people. The…
-
1
votes1
answer66
viewsA: Nota1 and nota2 show errors and do not view storage in the array. Can anyone help? Thank you very much
Modification 1: I inserted another bar in the class comment; Modification 2: I declared Nota1 and noted 2 as double; Modification 3: I used a Convert.Todouble in the variable passage; The problem…
-
0
votes1
answer813
viewsA: Like Dar Saveas on I.E
For IE11 or later, this should work: Shortcut key: Alt + S VBA: Application.SendKeys "%{S}" (notice the use of keys) If it still doesn’t work, try adding this variable in the code: Dim Report As…
vbaanswered Lucas Augusto 159 -
3
votes2
answers257
viewsQ: Windows Forms Application - Visual Studio 2017
I realized I don’t have the choice of a project in Windows Form Application in Visual Studio 2017. I searched, and saw that there is the possibility to select the option during the installation.…
-
0
votes1
answer55
viewsA: Alternate text of sharpes for saving config
Hello, All shapes (including Charts) in Excel have the Alternativetext property. This property can be used to store information. In your case, it is possible to use this property to save parameters…
-
1
votes2
answers230
viewsQ: Is there a difference between the use of the underscore and the . this?
From what I’ve seen, we use underscore for class internal variables: class Pessoa { private string _nome; public Pessoa(string nome){ _nome = nome; } } For this case, the use of . this, would be so?…
c#asked Lucas Augusto 159