I'm interested in creating a slide with powerpoint that will just display a new number in a Shape if theres a new day or time (midnight). I know java programming but haven't done programming in over 6 years now. I've never really used VB.
Dim CurrentTime = TimeValue(now)
Sub If CurrentTime.Now = TimeValue(24:00:00)
Then updateNum;
i = i+1
'Then I would like to display 'i' in a shape on powerpoint.
End Sub
Was thinking about doing a continous loop since the file will always be open and will never close.
Or Should I use a timer to countdown the seconds of the day then increment the number?