Click here to Skip to main content
15,886,362 members
Everything / Project management

Project management

project-management

Great Reads

by Mircea Neacsu
Source code organization suggestion
by DiponRoy
How to manage Entity Framework Code First in Real Time Projects
by Wayne Ye
Personal Schedule Management Tool
by Mary J John, PMP
The major differences between the Traditional and Agile paradigms.

Latest Articles

by Greg Utas
Open-heart surgery on your Big Ball of Mud
by Mircea Neacsu
Source code organization suggestion
by Nick Polyak
making decisions when starting and running a software project.
by Carlos Conceição
Some scenarios and situations that involve turning around a project and saving it from the jaws of failure

All Articles

Sort by Score

Project management 

7 Oct 2021 by Mircea Neacsu
Source code organization suggestion
28 Jul 2014 by DiponRoy
How to manage Entity Framework Code First in Real Time Projects
24 Apr 2011 by Wayne Ye
Personal Schedule Management Tool
3 Aug 2012 by Mary J John, PMP
The major differences between the Traditional and Agile paradigms.
22 Apr 2012 by RobCroll
Accepting bugs as a part of your SDLC
31 Jan 2013 by ZurdoDev
The best resource I am aware of for these questions is google.com[^]. There are tons of different models. Agile alone has a lot of different models.You should likely do some google searches first to get a bearing on what exactly you are looking for. Right now, I think your questions are...
9 Jan 2012 by Nagy Vilmos
Further to Torsten's answer, there is a way to find your candidate classes. First off list write out the requirements. Whenever you come to a noun or noun phrase, that is a candidate for being a class:Requirements:My project is Peer to Peer chat and File Sharing. It performs device...
26 Dec 2015 by Dave Kreskowiak
Well, you better figure out how to describe your last project and what you were doing. There are no resources anywhere that's going to give you the answer to that question. Well, except you!
18 Jul 2011 by Ashika s
Hi,Could you please suggest a good name for Personal Manager Software?
26 Dec 2011 by Chuck O'Toole
We use SourceSafe's "share" feature to place a shared copy of the common file(s) into both (or several) projects. SourceSafe maintains a single copy of the module but both projects have a copy. A SourceSafe "Get Latest" command synchronizes them.I'm sure other code management tools provide...
27 Dec 2011 by JackDingler
Alternatively you can put the function in a library project, that is shared by both target projects.Libraries are one standard method for creating shared code bases for projects.
27 Dec 2011 by BrainlessLabs.com
Shared libraries are used for this kind of situation:Shared Libraries[^]http://wfrakes.wordpress.com/category/reusable-assets/[^]
8 Jan 2012 by TorstenH.
Non of your things.You need to structure your code. Therefor create packages. Split your code in classes, which have a logical structure. It's quite normal to have a big number of classes - I'm working on a project with (currently) over 400 classes.But don't just create random packages -...
22 Jul 2012 by woutercx
If you would be able to save the project files as XML format (I see that .mpp is binary), that would be a whole lot easier.. You could call the SaveAs function from VBA. Here's an example I think.http://social.msdn.microsoft.com/Forums/en-US/isvvba/thread/f1895801-5b2b-4aba-be41-d529f796ae87[^]
31 Jul 2012 by Sandesh M Patil
How to create a dummy development environment of your web based project.
13 Aug 2013 by Sergey Alexandrovich Kryukov
You cannot. It simply makes no sense. People are too different to count them as cattle. If you don't feel the main thing here, human factor, you should not continue to do what you are doing.You need to feel it when you work with developers.It's very typical that one person is more...
24 Dec 2013 by joginder-banger
This is [Not a Question] you can try in google.I have searching on Google some Link find check out this i Hope this is usefull for you. First is http://carmaux.cs.gsu.edu/~mweeks/project.html[^] and more is...
24 Dec 2013 by Peter Leow
You are reverse engineering. Not right. These are SDLC processes and documentation that should have been followed and done before the actual development work, especially 1,2, and 3. If you have done the project yourself, then should have no problem producing the report (especially if you have...
14 May 2015 by Member 10033441
>Hello All,br mode="hold" /> I am new joinee .Presently I am working in a web development project in asp .net,where the client sends daily basis assignment.But the problem is in my project there is no one who can give me KT.So my request is how can i understand the flow of the project.Plz...
26 Aug 2015 by Richard MacCutchan
Sorry, this site does not provide projects to order; especially for your homework project.
24 Feb 2018 by OriginalGriff
If you mean "at the same time" as in "genuinely doing things together" instead of "doing one thing, then doing the other after it finishes" than that complex - you would need to look at setting up separate threads to run each "chunk" of code. And if I recall correctly, Turbo C++ doesn't have any...
24 Feb 2018 by OriginalGriff
1) You can't have two main functions. 2) "Unreachable code" is just that: code that cannot be reached so cannot be executed. For example: while (1 == 1) { i++; } printf("Unreachable"); if you can exit the loop, it isn't unreachable: while (1 == 1) { i++; if (i == 100) break;...
26 Jun 2022 by Dave Kreskowiak
Quote: java.lang.NumberFormatException: For input string: "" The error is pretty clear. An empty string cannot be converted to a numerical value. You're next question is going to be "how do I fix it?" Well, that depends. Assuming this is line...
1 Apr 2011 by Sandeep Mewara
This is not a technical question. I would suggest you to take this discussion somewhere else where you have proper audenience and you might get some help. Try: The Lounge[^]
25 Apr 2011 by Wayne Ye
An introduction to EVM Part 1
5 May 2011 by Sandeep Mewara
It does not work like this here.I am sorry but there is no quick question here. This sounds like your college project/assignment, you should put some effort. We expect you to put some time in trying the issue that you are facing and then some time in formulating the question while posting...
25 Sep 2011 by shikhar gilhotra
I am new to an organisation. I have been assigned a Project(maintainence project) whose coding is very critical and confusing. I have been given a short summary of this project by the person whoi developed it. There is no standards or design pattern followed. On top of that, i have been given a...
25 Sep 2011 by Abhinav S
You need to ask them for some documentation.If they don't have any documentation available, then I'm afraid, the only thing you can do is debug the code to figure out what is going on.
25 Sep 2011 by Mehdi Gholam
Start by going through what you have to do/change in the project. If you do not understand what you have to do it is the job of the organization to give you the required information to get your job done. You must demand time from your assignee.
25 Sep 2011 by Sergey Alexandrovich Kryukov
It looks like a pretty tough situation, however pretty typical. There is only one way to cope: become a tough man. Your hour has come.—SA
26 Dec 2011 by Coder Block
With continue to my previous post,We have,Two project used same function,that is if i have project ABC and PQRusing IsNumeric() function so still date we need two copy of function one in ABC and one in PQR .instead of that i need IsNumeric() as microsoft visual studio function that...
27 Dec 2011 by JackDingler
That sounds good.Organize your libraries by function and give them meaningful names.
27 Dec 2011 by Albert Holguin
Break out things into libraries where it makes sense, not just because you can. Follow the kiss (keep it simple stupid) design methodology where possible and it will save you headaches in the long run.
27 Dec 2011 by BrainlessLabs.com
Projects can take help of the following to group functionality:Classe.NamespaceLibrariesFoldersYou have to give nice and meaningful names. Group similar code in same places. Keep code modular. Give proper comments. Avoid keeping dead code.Google C++ Style Guide[^]This is the...
16 Mar 2012 by Andy411
I'm using git but not hierarchical but I've read something about it.I think you are looking for this: Distributed WorkflowsTry goolge for git lieutenant
26 Jun 2012 by Tim Corey
Personally, I really like OnTime because of how intuitive it is and because it is free for up to two developers. They have a client so that you can work offline (I don't think the free version allows this), but the online experience is wonderful as well (browser-based or client-based). They...
26 Jun 2012 by lewax00
We use Rally[^] where I work (it is online however).Of course, if you need a single user offline project manager, and you can't find one, you could always write your own. I wouldn't imagine it would be terribly complex, mostly just CRUD-type stuff.
26 Jun 2012 by R. Erasmus
IBM Rational Team Concert (they have a trail period)... But I think its better to use it if you use some of there other products already as there products compliment each other and the one product serves as a input to the other.Checkout: http://en.wikipedia.org/wiki/IBM_Rational_Team_Concert[^]
19 Jul 2012 by Kosh2010
Hello,I need help in using SSIS to import multiple Microsoft Project 2010 .MPP files posted on a Sharepoint site into a SQL Server 2008 R2 database I'm developing. Unfortunately, there is no backend database applied by Microsoft Project. Otherwise, I would connect to that directly. Can...
22 Jul 2012 by woutercx
In 2007 you could do this;http://msdn.microsoft.com/en-us/library/bb968652(v=office.12).aspx[^]
23 Jul 2012 by Dovile Sinkeviciute
Try taking a look at Eylean Board.It's a desktop client which may be used on your own or with a team if needed (using locally installed Eylean Server). Only pricing for the teams is provided on the website, but contact their sales to receive an individual offer for personal use.Eylean Board...
8 Sep 2012 by Pablo Aliskevicius
I recommend Scrum and XP from the trenches[^].There is a free PDF download there, you can start from it. Good luck with your job hunt, Pablo.
18 Jan 2013 by SagnikMukherjee
Please suggest me, what are the common practices or methods to estimate effort (man hour) for an ASP.NET application? I am going to develop a mid size web application using Asp. NET. I have found some practices like Function Point etc. etc. but i want to know what are the methods currently used...
18 Jan 2013 by dan!sh
What are you trying to estimate here? If it is design, function point is the way to go based upon output of requirement phase. If it is coding and unit testing, I suggest to make a proof of concept based on design. Based on the time required to do so, estimate for the project.
10 Apr 2013 by Richard MacCutchan
See http://en.wikipedia.org/wiki/ISO_9000[^].
5 Aug 2013 by _Damian S_
It's not by design behaviour for MS Project, but a quick search will reveal some add-ons (for purchase) that can achieve this if you need it.
5 Sep 2013 by Muhamad Faizan Khan
i am working on (asp.net) VS 2012 and sqlserver 2008r . now if i want to see my project to another computer (with functional database working) where vs 2012 and sqlsever 2008 r2 already installed then do i need to restore my databse in that computer's sqlserver. ? or i can see my project in...
5 Sep 2013 by Mycroft Holmes
If you are on the same network then all you need to do is install your application on the other computer, it will be able to connect to your sql server using the same connection string (if you used localhost then change that to the name of your computer).
8 Oct 2013 by sash_kp
My android widget for OIS(online information system for our college) project is going on.While i work on my ideas regarding this i wanna make it unique by adding some interesting and new features which was never used in our college OIS. Following are my ideas.By now i have developed the front...
8 Oct 2013 by sash_kp
@Sergey Alexandrovich Kryukov : Here are some of my new ideas.Can you please comment on these.And then lemme know if you can share some more ideas regarding this?1) Which are the professors for the subjects I am taking? How do I contact these professors? 2) What other students are taking...
31 Mar 2014 by Ahmed_Raza
I want to remove the suite bar from the top of project server 2013?
21 Apr 2014 by thatraja
Pick any from thisComparison of project management software[^]
8 Aug 2014 by Richard Deeming
See the user's previous messages:http://www.codeproject.com/Messages/4315327/Re-Source-availability.aspx[^]Thank you Vijay, Source is not available as we developed for one of our client. We are happy to develop a similar system as per your requirements, If your company Interested....
8 Sep 2014 by rbala006
We are going to start a new project, for that we need to get approval of every screen we are going to implement. Is there any user friendly Free HTML Layout Designer Tool available, instead of traditional HTML Editor. So that it will save lot of our time.Bala
8 Sep 2014 by George Jonsson
Well, pick a winner:The 10 Best Free Web Editors for Windows[^]
28 Oct 2014 by User 11060979
Not really a question for this Forum. Try Google for "winproj exe appcrash".About 3k results which may have a solution.
12 Jan 2015 by Hapisha
I m trying to install redmine on my PC using the installation step http://www.redmine.org/projects/redmine/wiki/redmineinstall[^] found here. but getting the error please configure your config/database.yml first while executing the command "rake generate_secret_token" . i need help on this...
21 Jan 2015 by Avenger1
Hii made my first big project a month ago but i have problemwhen i want to add something to my project, its confusing and too much hard for add new item because i need to change many thing and i know object oriented (very good) and i used in my project but its still confusing when i want to...
21 Jan 2015 by nagendrathecoder
Your question is not too clear, what exactly you mean be adding something new?Is it a class or form into your solution or what?If you are asking from solution perspective, you can create folders based on modules and divide your classes and forms in those folders.
11 Feb 2015 by TarikHuber
We are working on a ERP System for our company that has a quite number of small projects like vehicle management, customer management and so on...Now other companies would like to buy some of our small projects (for example: vehicle management). In that case I would like ta make a new...
11 Feb 2015 by Member 11446846
while doing the application development which tool is best one to implement developed and maintenance Projects ?
24 Feb 2015 by Albert Holguin
Quote:1.Client's Private repository is there in github2.I've to take a clone of this into my Local server.3.Each developer in my team has to clone the project from the local server to their local computer.4.Each developer works on their local computer ,after they complete their...
9 Mar 2015 by Mdzzzl5
Not trying to seem smart-alecky, but have you opened config/database.yml and filled it in with the correct values to access your database? That would be my first guess. If you've left the default values, Rails can't access the db.
25 Mar 2015 by TarikHuber
Using the STT Library [^]allowes me to maange multiple projects with different arhictecture in one large ERP system.
14 Apr 2015 by Sergey Alexandrovich Kryukov
Your post is a striking manifestation of the lack of effort. You could start, say, here: http://en.wikipedia.org/wiki/Project_management.But first of all, you need to understand that project management is not a law of nature, not an international or state law, it is just a matter of human...
22 Apr 2015 by waruna 92
i want to make gant chart using php and mysql, any one can help me to do this...
22 Apr 2015 by Peter Leow
Check this out: http://www.phpclasses.org/package/2737-PHP-Generate-project-progress-Gantt-charts.html[^]
14 May 2015 by Pradip Kumar Sen
For any type of project there will be multiple layers. Like normally you may have UI(User Interface => aspx/html or aspx.cs) layer, Business access layer(Business logic), data access layer (ADO.Net/Enterprise library/Entity Framework) layer. It is not mendatory to have these 3 layers only. Any...
26 Aug 2015 by KarstenK
Normallay you can download attached project zip from articles. If you have such project you must open it with a IDE (development tool) like Visual Studio and build it.Else if you want to upload a project for development on the internet you can use the Github Website.
12 Dec 2015 by RaNa Za'arour
Hello please can you help me with this : i need the followingIN THE PROJECT YOU HAVE TO SPECIFY THE FOLLOWING :Descriptions of data to be entered into the systemDescriptions of operations performed by each screenDescriptions of work-flows performed by the systemDescriptions of...
12 Dec 2015 by Richard MacCutchan
Sorry, but we do not do your homework for you. If we did then you would not learn how to do things for yourself, and you would gain college credits by fraud.
5 Jan 2016 by Member 12235761
How to create own custom .exe installer for java project with licence agreement and other information.
7 Aug 2016 by Member 12674363
Hello, I'm a beginner at programming writing up a theoretical project for university and i wanted to know if this idea could actually be done in real life. I'm trying to collaborate the prices of items from different supermarkets so that you can see that e.g. apples are $4/Kg at supermarket...
22 Aug 2016 by Member 12697792
#include #include #include using namespace std;class account{ int accno; char name[50]; int deposit; string type;public: void create_account(); void show_account(); void modify(); void dep(int); ...
20 Sep 2016 by Member 12750312
Hi, my understanding of MSTest is very limited so this may be an unreasonable question, or I am now using the right keywords in Google searches. This is not really a code question but more of a solution setup question.What I am trying to do is create an integration test environment where the...
20 Sep 2016 by Bernhard Hiller
The more important question to ask is: where will those tests be running?I'd integrate them in a Continuous Integration framework (Jenkins or Team Foundation Server). After a build and unit tests were successful, startup a virtual machine, install and start the required services, copy your...
26 Dec 2016 by Dave Kreskowiak
Your question isn't answerable by anyone but yourself.We can't tell you because we don't know anything about your experience. The number of years you've put into any particular topic, like C# experience, is completely meaningless.
15 Jan 2017 by Amol Hegana
I am developing big product. It consumes so many third party libraries. I don't want to directly depend on it. So kept it seperate. Now i am getting confused, Wheteher i should 1. Create seperate project for every small component. So many small components, few of them have only 3 to 4 classes....
24 May 2017 by RickZeeland
This question has been asked before, for a listing see: Search[^]
22 Aug 2017 by Richard MacCutchan
Go to ASP.NET | The ASP.NET Site[^].
9 Sep 2017 by Member 13401923
I am needing to make a python project for finals, and all my friends are doing something like games or simple console application, but I want to create something that has a real world application (useful software) and a challenging one, any suggestions? What I have tried: I have tried to think...
9 Sep 2017 by CPallini
I believe your friend are right. Keep it simple. A simple project could be very accurate in the implementation. If you opt for a complex one it could require more time than you planned and remain without implementation or with a fallacious one.
24 Feb 2018 by Member 13694445
I have two separate source codes and I want to implement them together like the first screen and then another screen in turbo c++. how do I do that?this is the first part/program that i want to interconnect with my second program/code. #include #include #include...
24 Feb 2018 by KarstenK
You can do it by using a start menu in the main-function, so you can choose which subroutine to use. char c = 's';//some value while( c = 'x' { // make some screen output to explain what to do c = getchar(); switch( c ) { case '1': subRoutine1(); break; case '2': ...
23 Oct 2018 by Carlos Conceição
Some scenarios and situations that involve turning around a project and saving it from the jaws of failure
5 Dec 2018 by Paramu1973
Hi I copied my project_1 to Project_1Copy and I rename the project_1Copy to another name. & Build & Run successfully. But the problem is I can not find the project folders like SourceFiles Folder etc...Also the Header files .h,ResourceFiles,.cpp files showing like mixed manner... And hence does...
5 Dec 2018 by RickZeeland
Maybe this CodeProject article will be of help to you, the images seem to be missing sadly: Visual Studio–Painlessly Renaming Your Project and Solution Directories[^]
7 Feb 2020 by _Starbug_
Hello every one. I developed a project in android environment that works fine and it is exactly same as xd file(Adobe xd) that employer give it to me. but unlike apk file that is very good when a programmer from employer side seen my codes he say your codes are not modular. for example he say...
8 Aug 2021 by OriginalGriff
Unfortunately, we can't really help: we have no idea of your skills, ability level, or interests. And we have no idea of the scale of the project that you need to produce - what size of project would be acceptable to your tutor? I'd suggest that...
8 Aug 2021 by CHill60
Further to solution 1 - there are tons of ideas out there in google-land - just pick one web based project ideas for computer science students - Google Search[^]
13 Apr 2022 by Phoenix Liveon
It seem there's a bug or maybe the local vscode application in my computer got corrupted? But the multi-module projects or subprojects features are working properly and I already configure the "gradle.nestedProjects" to TRUE, nonetheless I want...
26 May 2022 by Hamid Rasheed
How can I disable a project in orangehrm so that it doesn't show in list while adding timesheet. Either through front-end or through code. What I have tried: I am not a develop but just an admin. I couldn't find this option at front end.
26 May 2022 by OriginalGriff
If you have a question about how to use any software, the place to start asking with with the creators, not a random website: even the dweebs in HR can usually work that out! In this case, start here: OrangeHRM Forum - Index page[^] - they will...