Simple question, how do I make my application process "unstoppable" by the system? I want when a user tries to close the application the message "Access is denied" appears, and when it forces the kernel to terminate the CRITICAL_PROCESS_DIED ker...
Hello, I'm trying to create a simulator using SESSION, but since I'm a beginner and a lot of lay people, I'm asking the help of friends.
Next I created the page where the user can change the logo, it simply selects the image and changes it with...
I'm trying to generate the build configuration from a simple example in Qt using CMake. The example code is this:
#include <QApplication>
#include <QTextEdit>
int main(int argc, char** argv)
{
QApplication app(argc, argv);...
Is there any performance difference in the codes below?
$result = $pdo->query($sql);
foreach($result as $reg){ ... }
and ...
foreach($pdo->query($sql) as $reg){ ... }
I did some testing, but the behavior of the runs does not seem...
In my Vraptor project I'm trying to delete a record from a list without the page being reloaded. From the book I'm following, AJAX is used so that the removed record "adds" without the whole page being loaded.
The error below occurs when I try t...
I found the following code on the internet:
<script type="text/javascript">
var popup = null;
function Abrir() {
if (popup!=null && popup.closed)
alert("A Janela foi fechada.n Abrindo novamente.");
if (popup!=null &...
Problem
I'm trying to validate certain data contained in a% custom View in the event of clicking the Save button. So after the validation I save the data and close the AlertDialog, and in case the data is not valid I would show the e...
I'm using:
Windows 8 64 bits
Vagrant 1.7.2
Virtual box 4.3.28
GitBash 1.9.4 para conexão SSH
Box Ubuntu 14.04.02 Trusty 32 bits
Box Ubuntu 14.04.02 Trusty 64 bits
I'm developing with Ruby on Rails, but I can not edit the generated files...