Function DiskDraw()
For Num As Integer = 0 To My.Computer.FileSystem.Drives.Count - 1
If My.Computer.FileSystem.Drives.Item(Num).DriveType = IO.DriveType.Fixed Then
DiskGraph(Num) = New Label : With DiskGraph(Num)
.Parent = DiskBox(Num) : .BorderStyle = BorderStyle.Fixed3D
.BackColor = Color.FromKnownColor(KnownColor.Control)
.Location = New Point(6, 16) : .Size = New Size(94, 8)
End With
End If
Next
Return Nothing
End Function
in the yellow color are there any suggetion!