Given, for example, the following Query:
SELECT
ClienteId,
Nome,
DataNascimento,
Cidade,
Estado,
DataCadastro
FROM
Cliente
WHERE
Estado = :Estado AND
Cidade = :Cidade
ORDER BY
DataCadastro, DataNascimento DESC
In terms...
I'm using bootstrap, I already tried to use display:table-cell and display:cell in divs children, however, nothing worked, I have two divs , and both have dynamic content, but I need both to stay of the same size....
I'm learning how to play a game but by following step by step I think I did something wrong. It moves correctly but just keeps looking forward and does not spin, I do not know if it's a problem in the character's turning. The script is this:
p...
I'm having problems centralizing the page because centralizing both sides has already been done, I already added several classes and attributes in the style tag but I did not succeed, and to better exemplify what happened, I removed a print and...
I have the following problem:
A program generates two types of threads A and B through clicks on their respective buttons. Both types can not run at the same time. If I have 10 threads A, B can only execute when 10 of type A ends.
I can re...
While learning programming at a reasonable time, learning C ++ with QT, I came across something I had not seen in other languages. I noticed that some (not all) objects need to be created with an asterisk preceding the name. For example:
QMe...
I need to set the first row of my table always at the top of the page.
I have read several questions about this same problem, but I could not solve ...
My code:
<table border="2px">
<tr bgcolor="0099FF" id="topo">
<th...
My question that maybe - hopefully not - can be considered as opinion, is conceptual and even simple.
In most applications, we work with features that when used by multiple users at the same time, can cause some problem in the database. In my...
I'm thinking of using the native window.open() feature to create a small web system that is similar to desktop systems (made with windows forms). My problem is regarding communication and manipulation of data / events between 2 windows....
I'm working on a project that uses the X-editable library with Bootstrap 3. Throughout the page are multiple instances of the plugin, however, there was a need for some instances to have a different template. By reading the library's documenta...