View Single Post

  #5 (permalink)  
Old 04-16-2004
Mossoft Mossoft is offline
Member
Yellow Belt
 
Join Date: Feb 2003
Posts: 48
Just came across this problem as well. Got round it by using the Fill AND Line Visible properties like this:

shp.Fill.Visible = (chkShow(CHK_SHOW_DIRECTION).Value = vbUnchecked)
shp.Line.Visible = Not shp.Fill.Visible

The value of the check box determines the visibility of the line shape.

M.
Reply With Quote