Click here to Skip to main content
15,885,921 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHOW I can pause the timer in qt Pin
sara741-Jun-14 1:42
sara741-Jun-14 1:42 
AnswerRe: HOW I can pause the timer in qt Pin
Albert Holguin2-Jun-14 5:34
professionalAlbert Holguin2-Jun-14 5:34 
Questionhow can i convert a QString to char* in QT Pin
sara741-Jun-14 1:24
sara741-Jun-14 1:24 
AnswerRe: how can i convert a QString to char* in QT Pin
Richard MacCutchan1-Jun-14 2:38
mveRichard MacCutchan1-Jun-14 2:38 
AnswerHow to convert a QString to char* (char pointer) in QT Pin
Software_Developer1-Jun-14 22:47
Software_Developer1-Jun-14 22:47 
QuestionQtimer class in Qt Pin
sara7431-May-14 20:17
sara7431-May-14 20:17 
AnswerRe: Qtimer class in Qt Pin
Richard MacCutchan31-May-14 21:03
mveRichard MacCutchan31-May-14 21:03 
AnswerThe QElapsedTimer Class has timer.elapsed( ) built in. Pin
Software_Developer31-May-14 21:13
Software_Developer31-May-14 21:13 
QElapsedTimer Class example :

C++
QElapsedTimer timer;
    timer.start();

    slowOperation1();

    qDebug() << "The slow operation took" << timer.elapsed() << "milliseconds";


QElapsedTimer Class documentation : http://qt-project.org/doc/qt-5/qelapsedtimer.html[^]
GeneralRe: The QElapsedTimer Class has timer.elapsed( ) built in. Pin
sara741-Jun-14 1:25
sara741-Jun-14 1:25 
QuestionThe Ultimate Toolbox file watcher links are dead Pin
Grine Amine31-May-14 5:51
Grine Amine31-May-14 5:51 
AnswerRe: The Ultimate Toolbox file watcher links are dead Pin
Richard MacCutchan31-May-14 21:01
mveRichard MacCutchan31-May-14 21:01 
AnswerRe: The Ultimate Toolbox file watcher links are dead Pin
David Crow1-Jun-14 16:58
David Crow1-Jun-14 16:58 
Questionwhy can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
Falconapollo28-May-14 21:02
Falconapollo28-May-14 21:02 
AnswerRe: why can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
CPallini28-May-14 22:45
mveCPallini28-May-14 22:45 
GeneralRe: why can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
Falconapollo28-May-14 22:53
Falconapollo28-May-14 22:53 
GeneralRe: why can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
CPallini29-May-14 0:17
mveCPallini29-May-14 0:17 
GeneralRe: why can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
Richard MacCutchan29-May-14 0:35
mveRichard MacCutchan29-May-14 0:35 
GeneralRe: why can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
CPallini29-May-14 0:40
mveCPallini29-May-14 0:40 
GeneralRe: why can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
Richard MacCutchan29-May-14 0:43
mveRichard MacCutchan29-May-14 0:43 
GeneralRe: why can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
CPallini29-May-14 1:00
mveCPallini29-May-14 1:00 
AnswerRe: why can't I use std::shared_ptr & std::unique_ptr like this? just got crash Pin
Randor 29-May-14 0:18
professional Randor 29-May-14 0:18 
QuestionMFC -Help Pin
imran.prdc27-May-14 19:46
imran.prdc27-May-14 19:46 
AnswerRe: MFC -Help Pin
_Flaviu27-May-14 20:24
_Flaviu27-May-14 20:24 
AnswerRe: MFC -Help Pin
Richard MacCutchan27-May-14 21:14
mveRichard MacCutchan27-May-14 21:14 
GeneralRe: MFC -Help Pin
imran.prdc27-May-14 21:16
imran.prdc27-May-14 21:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.