Questions tagged as 'processo'

1
answer

Opening a minimized browser in Windows Forms

I'm doing an application in Windows Forms and I have the following problem, when the user clicks on a form button, he will have to maximize a minimized internet page, that is, bring the browser window to the foreground and maximize it....
asked by 15.10.2018 / 14:33
1
answer

Processes - Doubt

To better understand how processes work, fork, I wrote this test program: #include <unistd.h> #include <stdio.h> int main(){ int value = 9 ; int pid = fork(); if(pid==0) value+=2 ; else value-=5 ; printf("%d...
asked by 14.04.2016 / 03:50