I had to modify code found under: sys://Schema/Modules/AutomationBrowser/DateTime/Classes/DateTime/RenderPlugin
as shown to fix my problem...? Any ideas on why dateTime is not updating for me? The property called autoset is checked...
output = ""
if CBool(this.multiLine) = true then
tStr = WeekDayName(Weekday(this.DateTime)) 'LCase(FormatDateTime(this.DateTime,3))
tStr = tStr & "<BR>"
'tStr = tStr & MonthName(Month(this.DateTime))
tStr = tStr & MonthName(Month(times.SysDate))
tStr = tStr & " "
'tStr = tStr & Day(this.DateTime) 'LCase(FormatDateTime(this.DateTime,3))
tStr = tStr & day(times.SysDate) 'LCase(FormatDateTime(this.DateTime,3))
tStr = tStr & " "
'tStr = tStr & Year(this.DateTime) 'LCase(FormatDateTime(this.DateTime,3))
tStr = tStr & Year(times.sysdate)
tStr = tStr & "<BR>"
tStr = tStr & Time()
tStr = Left(tStr, Len(tStr)-6) & " " & Right(tStr, 2)
output = tStr
else
tStr = LCase(FormatDateTime(this.DateTime,3))
tStr = Left(tStr,Len(tStr) - 6) & " " & Right(tStr,2)
output = FormatDateTime(this.DateTime,1) & " " & tStr
end if
if CBool(this.Shadow) = true then
temp = temp & "<SPAN style=""width:100%;height:100%;filter
rogid
XImageTransform.Microsoft.Shadow(direction=130, strength="
temp = temp & this.ShadowStrength
temp = temp & ");"">"
temp = temp & output
temp = temp & "</SPAN>"
output = temp
end if
method.RenderPlugin = output
as shown to fix my problem...? Any ideas on why dateTime is not updating for me? The property called autoset is checked...
output = ""
if CBool(this.multiLine) = true then
tStr = WeekDayName(Weekday(this.DateTime)) 'LCase(FormatDateTime(this.DateTime,3))
tStr = tStr & "<BR>"
'tStr = tStr & MonthName(Month(this.DateTime))
tStr = tStr & MonthName(Month(times.SysDate))
tStr = tStr & " "
'tStr = tStr & Day(this.DateTime) 'LCase(FormatDateTime(this.DateTime,3))
tStr = tStr & day(times.SysDate) 'LCase(FormatDateTime(this.DateTime,3))
tStr = tStr & " "
'tStr = tStr & Year(this.DateTime) 'LCase(FormatDateTime(this.DateTime,3))
tStr = tStr & Year(times.sysdate)
tStr = tStr & "<BR>"
tStr = tStr & Time()
tStr = Left(tStr, Len(tStr)-6) & " " & Right(tStr, 2)
output = tStr
else
tStr = LCase(FormatDateTime(this.DateTime,3))
tStr = Left(tStr,Len(tStr) - 6) & " " & Right(tStr,2)
output = FormatDateTime(this.DateTime,1) & " " & tStr
end if
if CBool(this.Shadow) = true then
temp = temp & "<SPAN style=""width:100%;height:100%;filter


temp = temp & this.ShadowStrength
temp = temp & ");"">"
temp = temp & output
temp = temp & "</SPAN>"
output = temp
end if
method.RenderPlugin = output