現在 300 である fWidth というグローバル変数があります。
私はpictureBox. width = fWidthを設定していますが、その後、 pictureBox. height = calcImgHeight(originalHeight,originalWidth) のようなことをしたいです
私は数学が苦手なので、ここで問題が発生します:D
Private Function calcImgHeight(oHeight, oWidth)
Dim nHeight, ratio As Integer
ratio = oWidth / fWidth
nHeight = oHeight / ratio
Return nHeight
End Function
正しいコードは何ですか?