Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~281 People Reached
Favorite Tags
Member Avatar for prakash02

Grid view header and footer rows rowCommand event is not fire when clicking on header row in second page of grid view when paging is enabled.It works fine in first page

0
50
Member Avatar for prakash02

i have to crreate a splash screen to display messages at various instance of my project .So any one can provide me an example how to create a singleton instance for the creation of Qt widgets.

0
37
Member Avatar for madankumar

Hi This is Singleton class program, please let me know any changes required in this code............... #include <iostream> using namespace std; class Singleton { private: static bool instanceFlag; static Singleton *single; Singleton() { //private constructor } public: static Singleton* getInstance(); void method(); ~Singleton() { instanceFlag = false; } }; bool …

Member Avatar for MyNameIsLJ
0
194