Graphics Commands

T

Trent Argante

Can graphics commands, such as circle, line, etc., be used in a form's code?
I have a form's backcolor as black and want a multi-colored circle to expand
from the center of it to its borders when I click any of its command
buttons...like your warping to the next object.
Thanks,
Trent
TPA.J(17)
 
M

Marshall Barton

Trent said:
Can graphics commands, such as circle, line, etc., be used in a form's code?
I have a form's backcolor as black and want a multi-colored circle to expand
from the center of it to its borders when I click any of its command
buttons...like your warping to the next object.


No they can not, those methods only apply to reports.

Maybe you can use a rectangle control and modify its Top,
Left, Height, and Width properties?

Another hokey approach would be to use an image control with
it's Picture set to a BMP (or other?) graphic in Stretch
mode and manipulate its Top, etc. properties.
 
T

Trent Argante

Thanks, Marsh. Not what I wanted to hear; but you included some good ideas
to try, so I am appreciative.
 
P

PC Datasheet

This is just an idea and I don't know if it will work but how about a label
with a WingDing circle. You could keep expanding the font size to get latger
circles.


--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
[email protected]
www.pcdatasheet.com

Over 1000 Access users have come to me for help. My fees are very
reasonable.
 
Top