How to get open Windows in MFC
November 5, 2009 by saim · Leave a Comment
Hi, i have very little experience in MFC and VC++. I was developing a small project, during development i need to view the list of all opened windows in my explorer. i read somewhere and like to post the solution of this only for you It is very simple. here is the example by which [...]
How to change Contact US page in Joomla
November 5, 2009 by saim · Leave a Comment
Very easy steps to change it. Go to administration section. Click "Components" -> "Contacts" -> "Manage Contacts" Here you can add/edit/delete contacts. Enjoy the great php CMS…
CRICKET TEAMS/PLAYERS WITH NICKNAMES
November 5, 2009 by saim · Leave a Comment
Teams Australia’s 1948 tour of England – The Invincibles Australian national cricket team – Baggy Greens Bangladeshi national cricket team – The Tigers Canadian national cricket team – One Man Band New Zealand national cricket team – The Black Caps, The Kiwis South African national cricket team – The Proteas West Indian national cricket team [...]
Disabling Repair option from installer
November 5, 2009 by saim · Leave a Comment
I was facing problem to disable “Repair” option from msi installer. I found the solution in little time. If you haven’t install MSI ORCA then install it. Open the msi file in MSI ORCA editor. Select “Property” from left pane (Table pane), and Right click and ‘Add Row’ with property name ‘ARPNOREPAIR’ and value ’1′ [...]
Disabling “Change” option from installer
November 5, 2009 by saim · Leave a Comment
I was facing problem to disable “Change” option from msi installer. I found the solution in little time. If you haven’t install MSI ORCA then install it. Open the msi file in MSI ORCA editor. Select “Property” from left pane (Table pane), and Right click and ‘Add Row’ with property name ‘ARPNOMODIFY’ and value ’1′ [...]
Change file upload size limit in PHP/MySQL
November 5, 2009 by saim · Leave a Comment
In php.ini, this is the one: upload_max_filesize However, change only this line won’t help you to restore big db, so you have to setup some other factors as well Try these different settings in C:\wamp\bin\apache\apache2.2.6\bin\php.ini Find: post_max_size = 8M upload_max_filesize = 2M max_execution_time = 30 max_input_time = 60 memory_limit = 8M Change to: post_max_size = [...]
Gantt Charts
November 3, 2009 by saim · Leave a Comment
Gantt charts provide a standard format for displaying project schedule information by listing project activities and their corresponding start and finish dates in a calendar format. Symbols include: -A black diamond: milestones or significant events on a project with zero duration -Thick black bars: summary tasks -Lighter horizontal bars: tasks -Arrows: dependencies between tasks Producing [...]
The Waterfall Model
November 3, 2009 by saim · Leave a Comment
1. Requirements Specification: The system’s services, constraints and goals are established by consultation with system users. They are then defined in a manner that is understandable by both users and development staff. This phase can be divided into: •Requirements capture •Requirements analysis •Requirements specification •Requirements Validation •Requirements Management 2. System and Software Design: System [...]
Configuration Management Definition
November 3, 2009 by saim · Leave a Comment
"CM (Configuration Management) is a discipline of controlling the evolution of large complex systems and families of system". CM provides techniques, methods and procedures to maintain product history, to uniquely identified and locate each version of a product and to initiate, evaluate and control change to the product during development and after release. Goals of [...]
How to set border of CDialog
November 3, 2009 by saim · Leave a Comment
I am new in MFC. I put some time to draw a border around a Dialog in MFC application. Here is the solution that i found. It is very simple for any level of programmer. Follow just three simple steps. Step1: Add OnCtlColor() method in your Message map like:- BEGIN_MESSAGE_MAP(CDATToSWFDlg, CTrayDialog) ON_WM_CTLCOLOR() END_MESSAGE_MAP() Step2: Add [...]