Jan 17, 2002 #1 wraygun Programmer Dec 9, 2001 272 US Does anyone know how to use the Line Command in a Frame? e.g. line (x1,y1)-(x2,y2) Any help would be greatly appreciated. Thanks, Wraygun
Does anyone know how to use the Line Command in a Frame? e.g. line (x1,y1)-(x2,y2) Any help would be greatly appreciated. Thanks, Wraygun
Jan 17, 2002 #2 chiuchimu Programmer Jul 3, 2001 31 US Dont think you can use the line method on a frame but you can place a line in a form at design time and move it during run time. place a frame and a line in the frame. put a button anyware private sub command1_click line1.x1=0 line1.y1=0 line1.x2=frame1.width line1.y2=frame1.height end sub Upvote 0 Downvote
Dont think you can use the line method on a frame but you can place a line in a form at design time and move it during run time. place a frame and a line in the frame. put a button anyware private sub command1_click line1.x1=0 line1.y1=0 line1.x2=frame1.width line1.y2=frame1.height end sub