Interesting questions
-
0
votes2
answers112
viewsResponsive Site
The thing is, I’m having a hard time modifying a footer on my website. I’m using Bostrap to style the site, but wanted to leave the radapé in two columns on mobile devices. The structure of my…
-
0
votes2
answers189
viewsChange the position of the maps map by clicking
I want to change the position of the marker of the maps by clicking on the screen of the Smartphone, in my code instead of changing the position it creates several markers. below the main code…
-
-3
votes1
answer2656
views -
-1
votes1
answer35
viewsI need help, I am using Node and Request Form to do Scraping
I’m trying to develop an application to take data from a particular site and send it to the database. It would be simple if you didn’t have to request to access this data. As I’m beginning, I may be…
-
0
votes2
answers254
viewsAssign a variable the value of a click on an image, to make a comparison
I had made this game using textbox, and everything worked ok, but I decided to make a modification and instead of typing put respective images to the jokenpô and the image that the user click will…
-
0
votes2
answers221
viewsDropdownlist in views Asp.net mvc of the validation error
In a view razor of asp.net mvc I have a dropdownlist with the following code: @Html.DropDownListFor(model => model.Banco, (SelectList) ViewBag.Banco, new {@class = "form-control"}) Even selecting…
-
0
votes1
answer1535
viewsDate format problem (mm/dd/yyyy)
I have an ASP.NET Core application and can’t find a solution to my date format problem. My application, is published on a Microsoft Azure server, which is probably in the US (although it appears…
-
3
votes1
answer10445
viewsHow to perform UPDATE with PDO in PHP?
So guys, I wanted to rescue the data to edit on update.php, but I’m a little lost here, it’s got to give? <div class="container"> <div class="table-responsive"> <table…
-
0
votes1
answer72
viewsAsynctask result
I rephrased the question again to try to clarify better the need of my situation: I need to run between asa Activity s the following operation, when clicking the button, the application sends…
-
10
votes2
answers781
viewsWhat functions are form tags in HTML5?
The question refers to tags not so commonly used, for example, <fieldset>, <legend>, <label> and <optgroup>. Recently I had to do extensive work involving registration forms…
-
0
votes0
answers33
viewsServer does not search style sheets
I have a site that generates the following errors: Can someone give me a hand with this? This site on Localhost (using xampp) works normally, there is nothing missing. But it is only I bring to the…
-
0
votes0
answers14
viewsTDD with Jest and sequelize - POSTGRES Migration error for SQLITE
I am implementing TDD with Jest in a Node with express application, my database is POSTGRES and I have several sequelize Migrations already configured, and for my test scenarios I am running these…
-
1
votes1
answer78
viewsEntity Framework 6 relationship
I have a class where I need to have two different relationships with the same table. public class Usuario { public int Naturalidade {set;get;} public int CidadeEndereco {set;get; } public class…
-
0
votes1
answer103
viewsMiscalculation
Hello, I am with a project of a consortium calculator that is showing error. It receives from the user the following data: Value of the consortium Amount of months % from the reserve fund % of the…
javaasked 8 years, 7 months ago Weriky Alphazero 37 -
1
votes0
answers49
viewsBackup System in Php and Mysql (with Codeigniter)
Intending to put in my software a database backup system, where the user will perform this backup manually. Only I have never done this procedure, and I am using the Codeigniter framework. Could…
-
0
votes1
answer515
viewsView Mysql inside modal
I am developing a new PHP ordering system that works as follows: The user does upload requests, which are stored in a Mysql table called requests; After uploading, the user can change the status of…
-
0
votes1
answer131
viewsIndexeddb does not connect on Android 4.2
I am working on the Intelxdk IDE, and I use Indexeddb to persist some files. By emulating the project in the IDE, everything works perfect, it makes the connection, it brings all the data,…
-
3
votes1
answer304
viewsWhy does keybd_event not work in some contexts?
I want to understand why keybd_event doesn’t work in some contexts. For example, it does not work in games with League of Legends or emulated games on ePSXe. The following code: Keys key = Keys.Q;…
-
0
votes0
answers17
viewsHow to pass a <Gridtile> list to Staggeredgridview?
I’m returning a list of images to put on a Staggeredgridview. The problem is that I am unable to find a way to pass the list within Networkimage(). How could I do this? List<GridTile>…
flutterasked 5 years ago Vitor Freitas 11 -
3
votes2
answers1018
viewsHow to drag elements using dragSort inside a scroll div?
I need the elements to be dragged only inside a div that has scroll. For example: HTML <ul id="list1"> <li><div>1</div></li>…