FNCPlanner display a 5 day week below each resource

Hello,

I am trying to set my FNC planner to display a 5 day week against each of my 3 resources.

Example:

Resource 1 Resource 2 Resource 3
Mo Tu We Th Fr Mo Tu We Th Fr Mo Tu We Th Fr

can this be done

Many thanks

David Royall

Hi,

You can do this with the following code:

  TMSFNCPlanner1.BeginUpdate;
  TMSFNCPlanner1.Mode := pmMultiDayRes;
  TMSFNCPlanner1.Positions.Count := 5 * TMSFNCPlanner1.Resources.Count;
  TMSFNCPlanner1.ModeSettings.StartTime := StartOfTheWeek(Now);
  TMSFNCPlanner1.PositionsAppearance.TopVerticalTextMode := pvtmAlways;
  TMSFNCPlanner1.PositionsAppearance.TopHorizontalTextAlign := gtaLeading;
  TMSFNCPlanner1.PositionsAppearance.TopSize := 100;
  TMSFNCPlanner1.EndUpdate;

Hello Pieter,

Thank you very much, that is exactly what I am after.

Regards
David Royall

1 Like