新手求才教--怎样在VBA中读出所点取的坐标的数值!
<p>像大家求教VBA中用a=thisdrawing.utility.getpoint(,"")后</p><p>怎样随机读出交互时所点取的这个坐标的数据!! </p><p>即用什么办法,读出所选取的这个交互点的坐标数据a</p> Sub test()<br/> Dim pt As Variant<br/> <br/> On Error Resume Next<br/> <br/> pt = ThisDrawing.Utility.GetPoint(, vbCr & "拾取点:")<br/> MsgBox pt(0)<br/> MsgBox pt(1)<br/> MsgBox pt(2)<br/>End Sub
页:
[1]