Posts by Daniel Mendes • 76 points
7 posts
-
1
votes1
answer121
viewsQ: Printing by VBS - Windows 2008 R2 Server
Hello! I did an automatic print routine where a task I created in windows server 2008 R2 calls a vbs script, where HTTP request by GET is made to a web service that mounts a PDF file in a folder.…
-
0
votes1
answer251
viewsA: Notification in javascript/HTML 5
I was able to solve it. I used setTimeout. The corrected function is below, for those who need =D function notify(mensagem) { Notification.requestPermission(function() { var notification = new…
-
0
votes1
answer251
viewsQ: Notification in javascript/HTML 5
I used javascript below to display notifications. It works and is called 10 in 10 seconds. However, when two notification windows happen to appear, only one is automatically closed. Is it possible…
-
0
votes2
answers841
viewsA: Data in SQL ORACLE
Friend, use the function EXTRACT for the command that takes the current date in Oracle which is the sysdate. Below is an example: Select extract(month from sysdate) as MES_ATUAL from dual ;…
-
2
votes1
answer45
viewsA: Ajax Questions in Updates
In short, this is when you, in this case, make requests to communicate with server-side scripts using HTTP requests. This server-side script in your case is PHP code. The advantage of using is that…
-
0
votes0
answers35
viewsQ: symfony error after update Composer
When I executed the commands Composer require symfony/filesystem Post update , is occurring the following error below in my project, on any route I access. Could you help me ? I am using symfony 3.0…
-
3
votes1
answer555
viewsQ: ASP.NET Core Pagination - Pagedlist.Core
I am creating an ASP.NET core study project, and when using the paging library PagedList.Core, the following error is occurring while running the command dotnet run: Startup.Cs(49,35): error CS0246:…