Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Here is the VB question, can you help me to code the dots in the circle. Here below is my code, many thanks! The project
Here is the VB question, can you help me to code the dots in the circle. Here below is my code, many thanks!
The project randomly places dots, whose coordinate pairs are random whole numbers between 0 and 200,until there are a total of 20 dots inside the circle. The coordinates of the points will also be displayed in a Listbox.
Ercice 2 O X (168 139) (175 1523 1155 1823 CH 3) 116556) (16753 139 63) (38.4 (1970) (116. 112) (106:32) (14, 124) (17:106) (2071) (123195) (191. 109) r=31 GO 253 points Fun Command1 Click Private Sub Commandl_Click() Dim count, w As Integer r = Int (Rnd * 90) + 1 Picturel.Circle (100, 100), r Labell = r Do x = Int (Rnd * 200) + 1 y = Int (Rnd * 200) + 1 PSet (x, y), RGB(0, 255, 255) if PSet (x, y)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started