ginabenina
Registered User.
- Local time
- Today, 08:53
- Joined
- Mar 21, 2013
- Messages
- 32
Hello,
Any help is greatly appreciated. I'm trying to show the progress of each project based on milestones with the activities ranging from 1 - 100. A single bar graph for each project.
I was trying to use the following set in the On Format of the detail section with no luck (http://www.tek-tips.com/viewthread.cfm?qid=1749100):
The control source of txtPC are Long Integers. Not sure what I am missing. :banghead:
Any help is greatly appreciated. I'm trying to show the progress of each project based on milestones with the activities ranging from 1 - 100. A single bar graph for each project.
I was trying to use the following set in the On Format of the detail section with no luck (http://www.tek-tips.com/viewthread.cfm?qid=1749100):
Code:
Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer)
Dim int100Pct As Integer ' width of 100 Percent
int100Pct = 1440 * 6 ' 6 inches
Me.txtPC.Width = Me.txtPC / 100 * int100Pct
End Sub
The control source of txtPC are Long Integers. Not sure what I am missing. :banghead: