こんにちは、Visual Basic 2005 を使用して論文の作成に取り組んでいます。テキスト ボックスの下に表示したいのですが、描画ポイントを使用してテキスト ボックスの正確な位置を取得できます。
ここに私のコードがあります:
Dim x As Integer = Me.txtStockQUnit.Location.X + Me.Location.X + Me.grpMonitoring.Location.X
Dim y As Integer = Me.txtStockQUnit.Height + Me.txtStockQUnit.Location.Y + Me.Location.Y + Me.grpMonitoring.Location.Y
My.Forms.frmQuantityUnitDropListGrid.Location = New Point(x, y)
My.Forms.frmQuantityUnitDropListGrid.ShowDialog()