Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の行でこのエラーが発生しています。((35, 31)の下の青い波線)
Dim chkbx1 as New Checkbox chkbx1.Location = New Point(35, 31)
このエラーの原因は何ですか? チェックボックスの場所を指定する他の方法はありますか?
Point別のクラスをどこかに定義する必要があります。
Point
次のことを試してください。
Dim chkbx1 As New CheckBox chkbx1.Location = New System.Drawing.Point(35, 31)