Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~5K People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for Zeeshan_10

LearnCpp.com is a free website devoted to teaching you how to program in C++. Whether you’ve had any prior programming experience or not, the tutorials on this site will walk you through all the steps to write, compile, and debug your C++ programs, all with plenty of examples. Becoming an …

Member Avatar for udayaprakash1
0
748
Member Avatar for Addison111

Sets the colors for the specified display elements. Display elements are the various parts of a window and the display that appear on the system display screen.

Member Avatar for tinstaafl
0
330
Member Avatar for Addison111

How do I create a socket server and start receiving clients, if my main thread is processing UI messages? I tried putting all of the server code in a thread using CreateThread() from WinMain(), but it just crashes with an error:

Member Avatar for rproffitt
0
449
Member Avatar for djbsabkcb

Write a function that computes the alternating sum of all elements in an array. For example, if alternating_sum is called with an array containing 1 4 9 16 9 7 4 9 11 then it computes 1 – 4 + 9 – 16 + 9 – 7 + 4 – …

Member Avatar for jacklin
0
2K
Member Avatar for Nancy_16

@ QMenuBar *menuBar; QMenu *menuFile; QAction *actionOpen; QAction *actionClose; menuBar = new QMenuBar(MainWindow); menuFile = new QMenu(menuBar); menuFile->setTitle("File"); actionOpen = new QAction(MainWindow); actionOpen->setText("Open"); actionClose = new QAction(MainWindow); actionClose->setText("Close"); menuBar->addAction(menuFile->menuAction()); menuFile->addAction(actionOpen); menuFile->addAction(actionClose); @ To disable one of the items or whole "File" menu @ actionOpen->setEnable(false); menuFile->setEnable(false); @ To enable them back …

Member Avatar for jacklin
1
1K

The End.