Team Management

Thursday, 16 July 2009 09:26 by tgarnier

Team Management

PlanningPME is a software that has been designed to help managers to run their team efficiently and share the planning informations with everybody. In PlanningPME, you can decide to link your employees together so that when you assign a task to one of them, the task appears to be done by everyone. A good human resources management solution, isn't it?

Let's have an example:

By clicking on Data --> Team, the following window appears

To add a new team, click on Add. The following window enables tou to name the new team and add the resources you want.

So create and organize your teams as you wish and there is the result. If you assign a task to Mike (who is part of team 1), the task will automatically be assigned to the other members of the team.It enables you not to create the same task several times.

Note that you can separate the task of a resource, which means that this specific task won't be linked to the others and that you will be able to move the task independently from the other. You can also delete the task independently.

Team management

Download the trial version of PlanningPME today.

Do not hesitate to ask for an online demo.

Business Planning Software

Wednesday, 15 July 2009 09:54 by tgarnier

Business Planning Software

PlanningPME is made for those who want to run their business efficiently without worrying about planning activities. And the kind of activities you are involved in doesn't matter, it is the software that adapts itself. The must-have planning software !

You can manage your human and material resources easily with a pleasant graphic interface.

planning business

You can also manage your activity by client and see clearly what is being done at any moment for any customer.

 business planning

You can even manage your activity by project if needed, this way you have a clear and precise overview of the process.

Discover more functionalities: statistic edtion, share on network, HTML diffusion, outlook synchronisation...and more...

Download the trial version of PlanningPME today.

Do not hesitate to ask for an online demo.

Resource planner

Monday, 13 July 2009 11:26 by tgarnier

Resource planner

You have so many resources that your planning is not understandable anymore? Organizing your activities became a nightmare? Your Excel planning doesn't fit anymore?

Keep cool ! PlanningPME is here !

PlanningPME is the must-have resource planning software. It is a tool that has been designed for small and medium companies. Through the years and thanks to our clients' feedback, we improved the functionalities offered by the software because your comapny is not like the others.

Here is the result of our growing experience:

 

Download the trial version of PlanningPME today.

Do not hesitate to ask for an online demo.

Resource planning software

Saturday, 11 July 2009 08:35 by tgarnier

Resource planning software

PlanningPME is the planning software designed for small and medium companies. It allows any companies to plan their resources as they want and in the most efficient way.

Here is an overview of the way it looks like:

 

This way, your business is clearer and you gain in productivity. Why wouldn't you test our resource planner ?

Download the trial version of PlanningPME today.

Do not hesitate to ask for an online demo.

 

Planning Software Free

Friday, 10 July 2009 09:31 by tgarnier

Planning Software Free

PlanningPME is a professional planning software designed for business planning, follow up of activities and resources. This software is used daily by more than 2,000 companies all over the world.

 

You can download the trial version and test it for free for 30 days. Thus, make your own opinion andshare it with us. Remember that we can develop all the functionalities that you would desire. Just give us a call !

Try it, it's free !!

 

Tags:   ,
Categories:   General
Actions:   E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Plug in creation

Wednesday, 8 July 2009 08:33 by cdeschamps

Steps to create your plugin

Now that you know why having a plug in in PlanningPME, here are the technical steps to follow.


1 – Register the PlanningPME.dll
C:\windows\system32\regsvr32.dll PlanningPME.dll


2 – Create the plugin with Visual Basic
Choose the name of your object : here : Project1

plug in project

Choose the name of your class
Here : Projet1.plugin

plug in class

Register the dll PlanningPME in your project

plug in register

Insert your code
Const BN_CLICKED = 0
Const WM_COMMAND = 273

Option Explicit

Implements PlanningPMEPlugin

Private Sub PlanningPMEPlugin_InitializeControls(ByVal Controls As PlanningPMEControls)

    Dim Control As PlanningPMEControl
    Set Control = New PlanningPMEControl
   
    Control.Caption = "My Button update Task"
    Control.ID = 5000
    Control.x = 350
    Control.y = 50
    Control.Height = 20
    Control.Width = 150
    Control.Type = PpControlPushButton
    Control.When = PpWhenUpdate
    Control.Destination = PpDestinationDoTask
   
    Controls.Add Control
   
End Sub

Private Sub PlanningPMEPlugin_OnEvent(ByVal Context As PlanningPMEContext)
    If Context.Context = PpContextMessage Then
        If Context.Loword = 5000 And Context.message = WM_COMMAND And Context.Hiword = BN_CLICKED Then
            MsgBox "BN_CLICKED task Key = " & Context.Key
        End If
    End If
  
    If Context.Context = PpContextTrigger Then
        If Context.When = PpWhenInsert Then
            MsgBox "Trigger Insert task Key = " & Context.Key
        End If
        If Context.When = PpWhenUpdate Then
            MsgBox "Trigger Update task Key = " & Context.Key
        End If
    End If
   
End Sub

 
Compile your project
 
3 – Register your plugin
C:\windows\system32\regsvr32.dll plugin.dll
4 – Indicate in the PlanningPME register database (HKEY_LOCAL_MACHINE) the name of your plugin

Name : Plugin and Value : Projet1.plugin


5 – Launch PlanningPME
A new button in the task window will appear

plug in button

Tags:  
Categories:   Integration | Technical
Actions:   E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Human resource department

Tuesday, 7 July 2009 09:03 by tgarnier

Human resource department

Human resources management is complicated enought to be one of the most important matter in near every companies. That's why the persons who carry out these tasks need and deserve a powerful and adaptable tool to help them.

PlanningPME has been designed for this. It enables a clear overview of the employees allocation together with precise statistics about their days-off and absences. You can manage your resources by skills and assign tasks to them

Here is the global view on your planning board:

Here are the general basic statistics you can ask for:

You can edit precise reports easily thanks to Excel pivot tables and organize it the way you want to. It is very professional and useful. This is what it looks like:

Download the trial version of PlanningPME today.

Do not hesitate to ask for an online demo.

Software plug in

Monday, 6 July 2009 10:05 by cdeschamps


PlanningPME allows you to create a plugin

Why a plug-in?

- In order to insert controls (button) in the PlanningPME interface and associate actions


- In order to make automatic actions for example add a task 

 

Who is able to make a  plug-in PlanningPME ?

- A developer expert in Visual Basic or Visual C++ or C#

Plug-in example:

 

Next more technical Post: How to create a plug-in in PlanningPME?

Tags:  
Categories:   Integration
Actions:   E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Update PlanningPMEHTML

Friday, 3 July 2009 17:07 by cdeschamps

How to update your visualisation planning tool PlanningPMEHTML ?


To update PlanningPMEHTML, here are the different steps:

- Rename the file PlanningPMEHTML.exe you are currently using with a name like: PLanningPMEHTML.old

- Download the file PlanningPMEHTML.exe from our website (If you are under support, you will receive an emailing informing you about a new version available on our ftp)

- Save this file on the same location as your file PlanningPMEHTML.old

Your update is now OK.

If you created a scheduled task, your HTML pages will be updated automatically as before.

Tags:  
Categories:   PlanningPMEHTML
Actions:   E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Fair Organisation Planning

Thursday, 2 July 2009 09:04 by tgarnier

Fair Organisation Planning

PlanningPME counts among its users some fair organizers. As you will see through this planning template, PlanningPME meets particularly well the requirements of that kind of opportunities.

Fair organisation needs a special rigour because it is a long and complicated task to handle. The best advantage the fair organisers can take from PlanningPME is the clearness of its interface and of the informations displayed. PlanningPME allows to handle many employees and display them by departments/service. Then, you can create as many tasks as you want and display your work by tasks for a better follow up. It is even possible to display your planning by project so that you do not feel lost when working on a particular fair. 

Everything is designed so that the informations displayed are clear and precise. Then you are free to custom the planning to feel at ease when using it. To have a better understanding, take a look at this example:

Here is the main view, the resource view where you can see all your resources and the tasks assigned to them.

 

 Here is the task view that tells you the state of the ctivities sorted by tasks. It offers another point of view on the work on progress.

 

But you can also choose to see the activity by projects or by clients or whatever you want since PlanningPME provides a lot of different filters and even allows you to create yours. 

  Download the trial version of PlanningPME today.

Do not hesitate to ask for an online demo.