Interesting questions
-
-1
votes3
answers299
viewsHow to make Visual Studio interpret an hour that is larger than 23hrs and smaller than 6hrs at the same time?
I have a function that is called and must enter the condition where the time now is greater than 23 hours and less than 6 hours at the same time, however the code conflicts with this condition and…
-
0
votes2
answers837
viewsReplacement for Frameset HTML?
I am working with a 100% offline HTML page, I use Frameset to create a side menu that is resizable by the user. I was informed that Frameset or iframe are exceeded, so I would like to know some more…
-
-1
votes2
answers43
viewsI cannot access the index of a for inside addeventlistener
docReady(function () { var arr = ["usuario/cadastroum"]; var lis = document.querySelector(".metro").getElementsByTagName("li"); for (var i = 0; i < lis.length; i++) {…
-
0
votes1
answer124
viewslibpng error: Not a PNG file
After I edited the icon of my application and I went around the emulator it appears to me with the following error: I’ve searched for images in another format, I’ve reviewed my code and nothing,…
-
-3
votes1
answer46
viewsWHMCS cannot do the WHOIS query on the.br record
I have a WHMCS installation that at the time will consult a domain ending in .com.br or . br returns that the domain is unavailable, but I check the same domain under.br registration and the same is…
-
0
votes1
answer58
viewsSectionheader tableview Swift
I have a message tableview, I would like to know how to add sections using the date field of the Notificationitem object. struct NotificationItem: Codable { let title: String let body: String let…
-
0
votes1
answer392
viewsHow to keep menu open after :active
I have a menu made exclusively with css and html. When clicking the button it opens the menu, but if I release the button it disappears, to keep the menu open I need to be holding the mouse button.…
-
1
votes2
answers57
viewsInformation is not enough in the value attribute
The information that I take from the user model (getTimeLine method) reaches the homeController, but does not reach the homeView in the input type Hidden in the value attribute. public function…
-
4
votes1
answer4458
viewsHow to return day of the week and time formatted sql server 2008?
I need to make a query as follows, I have a table (script): 1 - Take the day of the week 2 - take server time in format hh:mm example: SELECT CASE DATEPART(DW, GETDATE()) WHEN 1 THEN 'DOMINGO' WHEN…
-
1
votes2
answers256
viewsSubtract value using JS
Until now my code was using a sum of values Example: const inputs = [...document.querySelectorAll("input[class='serv']")]; const res = document.getElementById("resultado"); const total =…
-
1
votes1
answer1932
viewsHow to work with multi-level dropdown menu in bootstrap?
I am using bootstrap and would like to know how I do to work with dropdown menu with multi-level? <div class="btn-group"> <a href="index.php" class="btn btn-warning">Item1</a>…
twitter-bootstrapasked 11 years, 1 month ago fabricio_wm 1,090 -
1
votes1
answer93
viewsInsert does not work
I am trying to create a login log of my page, and store this information in the table stat however I am not succeeding and is not returning any error. I put an IF to signal if the inclusion was…
-
3
votes1
answer393
viewsSpool task for the server
Good night! Guys, currently in my job, I have to generate multiple files. txt to be exported to another company’s database. I roll it in my hand and it sucks, every day I spin it, I wait to send it…
-
0
votes1
answer60
viewsValidation with ASP MVC
Personal I am in trouble, precise that the attribute code (from my database) has either have position greater than 4 numbers and with attribute value can not contain value less than 0. I tried to…
-
0
votes1
answer66
views(Django) Send form to another table
I’m a beginner in Django and I’m picking up a lot on one thing. I want to submit a form that has already been filled out for another table. I need somehow to select which table the form will be…
djangoasked 5 years, 11 months ago Igor Araujo Cruz 11 -
2
votes1
answer239
viewsError using glyphicon with bootstrap-Sass
Good afternoon, I’m trying to work with bootstrap-sass and sass, However, by including an icon in my class, nothing happens. Below follows the line of code that represents the same, I wonder if I…
-
2
votes1
answer1353
viewsValidation jquery validate is not deleted when I close the modal bootstrap
How to make jQuery Validate validation messages delete when I close modal Bootstrap? I have the following codes that are executed when I close the modal by clicking the button Fechar and when I…
-
2
votes0
answers40
viewsError writing file using Sqldatareader
I’m wearing a datagridview to show my table data and I have to create a file with that data, I tried to make the code I will post below but the using (SqlDataReader sqlReader = comm.ExecuteReader())…
c#asked 8 years, 8 months ago Pedro Azevedo 435 -
1
votes1
answer16354
viewsWhat is net::ERR_CONNECTION_RESET and how do I resolve it?
Good afternoon, I developed a system to manage the FTP of the company where I work, in this way, locally works perfectly and when I go up to the server and try to send a file bigger than 30mb, it…
phpasked 11 years, 11 months ago Matheus Jordan 193 -
0
votes2
answers383
viewsHow to export and use a Local Middleware with Express Route?
I’m having two difficulties which are: 1) I’m trying to export and use mine middleware to be used locally. 2) I would also like to know if it is possible to use a middleware for a specific request…