Search : in
By :

Microsoft Project and VB - Help

Last answer on Feb 9, 2009 9:22:08 am GMT Schedule_VBN00b, on Feb 9, 2009 5:41:10 am GMT 
 Report this message to moderators

Hello,

Configuration: Windows XP
Internet Explorer 6.0

Best answers for « Microsoft Project and VB Help » in :
Free alternative to Microsoft Project ShowFree alternative to Microsoft Project Microsoft Project is a software project management highly valued for managing large projects, to achieve the (Gantt chart or PERT network) There is no free software as comprehensive as Microsoft...
VB6: Modifying the image of the desktop + write changes to the r ShowVB6: Modifying the image of the desktop + write changes to the registry Project initialization Testing As stated here is a short tip, allowing you to change the image of the desktop, including the modifications in the...
Adding your website to the Open Directory Project ShowAdding your website to the Open Directory Project Extract recommendations ODP or DMOZ Step One – Preconditions Step 2 - Pre Search Step 3 - Choose a category Step 4 - Proposal Site What happens next? Updating your Website Inclusion of...
Download GANTT Project ShowGanttProject is a free project management tool allowing to realize GANTT diagrams to plan a project and manage the resources. GanttProject is a complete tool proposing import / export features towards Microsoft Project, as well as export functions...
Project stages ShowThe stages of the project In order to be managed in an atmosphere of quality, a project must pass through various phases, at the end of which milestones should be defined. Each stage is related to a deliverable and a validation based on a specific...
Preparatory phase of a project ShowThe preparatory phase The term preliminary project is generally used to refer to all preparatory stages necessary for the launch of the project. Thus, the idea is to precisely define the nature of the project in order to finalize the contractual...
Introduction to project management ShowProject management Project refers to all actions to be taken in order to meet a defined need within fixed deadlines. Thus, because a project is a temporary action with a beginning and an end, mobilizing identified resources (human and material)...

1

diginum, on Feb 9, 2009 8:38:54 am GMT

Hi,
you have not given enough details so as i can find a specific answer for your post.
please post your question again elaborating more on the problem that you need.
thank you.

Reply to diginum

2

 Schedule_VBN00b, on Feb 9, 2009 9:22:08 am GMT
  • +1

My problem is that when I run the macro (with the excerpt already in the page and attached again below) is that it says that it successfully copies x number of fields but doesnt actually copy the contents of the Percent Complete field into the Text field.
So text field is blank even after the macro runs.

I think I need to convert the percent complete field into a string/text so that it can save in that field. Because Percent complete is in percent format.


Dim t as task
Dim ts as tasks

Set Ts = ActiveProject.Tasks
intTcounter = 0

If not t is nothing then
t.PercentageComplete = t.Text7
intTcounter = intTcounter + 1
End If
next t
'Display message
MsgBox ("Macro done" & Chr(13) & intTcounter & " Task Complete")

End

Reply to Schedule_VBN00b