Arthur Fuller
artful at rogers.com
Wed Jun 22 13:29:07 CDT 2005
Well, that clearly works, but I think I'll give you a smack upside the
temple anyway LOL. (I wonder if there is a more universally hated developer
in the world than the author(s) of these various assistants.)
So you have demonstrated that we can invoked the Assistant from Access.
Upsizing the question, is this sort of approach possible with other
animations? Case in point -- the gears inside a torn-open skin, that revolve
in synch. Can I use your code to apply to such an animated JPG, and if so,
how?
TIA,
Arthur
-----Original Message-----
From: accessd-bounces at databaseadvisors.com
[mailto:accessd-bounces at databaseadvisors.com] On Behalf Of MartyConnelly
Sent: June 22, 2005 2:21 PM
To: Access Developers discussion and problem solving
Subject: Re: [AccessD] Question about Animated Graphics
Well animated graphics seem to be possible from vba
Just run this snippet in debug window
Please don't hit me ;)
With Assistant
.On = True
.Visible = True
.Move xLeft:=400, yTop:=300
.MoveWhenInTheWay = True
.TipOfDay = True
'need reference to MS Office 11.0 Library
' .Animation = msoAnimationGreeting
.Animation = 2
End With