Saturday, August 21, 2010

What % of project cost should b marked for Evaluation, monitoring and control. and what suld b its distributio?

35-40%





5% extra to start at the very beginning of the project timeline. Because you have to set up budgets and reporting at the very beginning, before you have anyone to monitor...(some people leave this off and use 35%)





The rest should be distributed evenly though the entire life of the project., include a short period AFTER CONCLUSION for the Project Summary and Lessons Learned sections.What % of project cost should b marked for Evaluation, monitoring and control. and what suld b its distributio?
40

In these days what's tools use for control and monitoring the project?

what program or software is use for report and monitoring in project.and which report is powerfull for managment to decision,In these days what's tools use for control and monitoring the project?
these days tools use for control and monitoring the project is microsoft project


software is powerfull for management decision is learning a better englishIn these days what's tools use for control and monitoring the project?
You control and monitor a project using people. Software is just a way to record what is happening. You can't make decisions based on what some software program says. It just spits out what some programmer assumed would be the right answer for a given set of circumstances.





I have seen it time and time again, someone using a software program as the excuse when their project was in trouble rather than admitting that they just didn't do a good job of looking after things themselves.

How much is what you view in the world today projected by humankind to control/have power over you?

%'s.How much is what you view in the world today projected by humankind to control/have power over you?
I have simplified my life just so this world cant have much control over me!





People dont understand that the type of control you talk about ranges from everything to wearing your seat belts to paying taxes and from credit cards to home loans....all of these things have control over you..... So yes, whether you like it or not....you are being controlled to some degree!





I have paid off all of my bills....have no loans....just rent, power and food.


So I'm guessing that this world still has me under it's control by at least 2%....and I'm still not liking it!





I will be glad when I'm under Gods control 100%....


Earth 0% HA!





with love...';D';How much is what you view in the world today projected by humankind to control/have power over you?
Probably not much because I am not a follower and form my own views based on what I see with my own eyes. It is hard for me to follow someone for a very long time because I would rather do things using commonsense. The only draw back is that I don't have any friends because people like people who act like the majority and agree with society. They are all society conformists.
Actually it's being projected by dolphins. Those damn evil dolphins.





http://softmelon.wordpress.com
Control is subjective.
3.85%
Oh wait... Only government and family have any control but not much... maybe 5-10%
Quite a bit, especially greed.
No one has power over me without my consent.


So that's a big fat ZERO.
  • your cosmetics
  • Give me topic for project for electrical related to control system?

    P,PI,PID controllers,Robotics,Fuzzy logic,Neural systems are all related to control systems but I'd suggest P,PI,PID controllers cos they are quite easy to understand.

    I am doing a science fair project, and i need an independent variable, dependent variable, and control????????

    my question is ';which type of ice will melt first?'; i am using black food coloring, red food coloring, and salt. PLEASE HELP! what is my dependent variable, independent variable and control.I am doing a science fair project, and i need an independent variable, dependent variable, and control????????
    Independent variable: One that the researcher purposefully changes. In this case, the different types of ice are independent variables.





    Dependent variable: When the ice melts is your dependent variable. It is ';dependent'; on something that you are manipulating.





    Basically, the thing that you are changing is independent, and the thing that you are measuring is dependent.





    Control: A piece of ice with nothing added would be the best ';control'; here. In this case, you'd more be asking the question ';How do additives effect the rate of ice melting?'; Additionally, anything that you maintain the same throughout the experiment is another type of control--the size of each piece of ice, the starting temperature of each piece of ice, the temperature you expose the ice to in order to make it melt, the shape of each piece of ice. As a note, it would be a good idea to measure the temperature of the ice when it starts melting--it will be different for the control ice block from the ones with additives, especially the salt block.

    Friday, August 6, 2010

    Please guide me about this project ';Real-Time Industrial process control& monitoring Using GSM Phone';?

    Hi im final year student of ECE.....


    Guide me about this project..


    Give me idea about the project.Please guide me about this project ';Real-Time Industrial process control%26amp; monitoring Using GSM Phone';?
    I recently written about GSM based projects in my blog visit it

    I want to place a close button on ActiveX control in VB6 which will end all project where this control wil use

    I have created a an ActiveX control in which one Button is Close button.


    This button checks some information valid or not if found invalid information all project will end after prompting a message.


    HOW CAN I DO IT. I have used ';END'; keyword but saying this keyword will nor supoort in Dll project.





    SIPLY: I WANT TO END UP CURRENT PROJECT/SOFTWARE USED MY ACTIVEX CONTROL.





    thanks in advanceI want to place a close button on ActiveX control in VB6 which will end all project where this control wil use
    The only safe way is to find out top-most parent window and send Windows message to close it. Unloading forms does not neccesarily solves the problem (the container must not be a VB form).


    This requires you to learn about finding parent windows (Win API functions, explanations are good in MSDN) and do that for each parent until you find some window that has no parents (top-most) and send Win Message to close it (look in MSDN).





    Simpler alternative is to provide an public event e.g. DoShutdown() on your control that is raised when Close button validation fails. On the form that contains your control handle the event and put the ';End'; there.I want to place a close button on ActiveX control in VB6 which will end all project where this control wil use
    I woud suggest putting a boolean property on your ocx that says whether or not to end the current application. And then check that property within the actual project. From there unload all forms and end politely.





    Hope that helps!
    Figure out how to access the PARENT FORM from the ActiveX control, and then UNLOAD the PARENT FORM.