lngHZoom = 0.8 lngWZoom = 0.505 '************** ' 印字サイズの計算 If lngHZoom < lngWZoom Then lngHeight = lngHeight * lngHZoom lngWidth = lngWidth * lngHZoom Else lngHeight = lngHeight * lngWZoom lngWidth = lngWidth * lngWZoom End If End If ' 用紙方向を横向きに設定 objPrinter.Orientation = vbPRORLandscape
' 用紙サイズをA4に設定 objPrinter.PaperSize = vbPRPSA4
' ピクチャー印刷 objPrinter.PaintPicture _ objPicture, lngYLeft, lngYTop, lngWidth, lngHeight objPrinter.EndDoc End If End Sub ========================================