Option Explicit
Private Declare Function BitBlt Lib "gdi32" ( _
ByVal hDestDC As Long, _
ByVal X As Long, _
ByVal Y As Long, _
ByVal nWidth As Long, _
ByVal nHeight As Long, _
ByVal hSrcDC As Long, _
ByVal xSrc As Long, _
ByVal ySrc As Long, _
ByVal dwRop As Long) As Long
Private Declare Function GetDC Lib "user32" (ByVal hWnd As Long) As Long
Private Declare Function GetWindowDC Lib "user32" (ByVal hWnd As Long) As Long
Function Obtener_Imagen(PictureKE As PictureBox) As StdPicture
'25 Sep /2008
'Esta función obtiene del presente picture como una imagen BMP
'IMPORTANTE:
'Cuando llames a esta funcion, debes saber que los picture perderan las escalas, asi que
'lo que yo (Nilson) te recomiendo es que una vez guardadas las imagenes como bmp, este formulario
'deberá cerrarse, cargar otro con 3 Images y alli cargar las imagenes que generaste para
'luego imprimir ese formulario. (esto es mientras perfeciono esta función)
Dim hdc As Long
Dim Escala_Anterior As Integer
Dim Ancho As Long
Dim Alto As Long
Dim Pictemp As PictureBox
' crea un pic temporal
Set Pictemp = Controls.Add("vb.picturebox", "Pic1")
With Pictemp
Pictemp.AutoRedraw = True
.Visible = False
.ScaleMode = vbPixels
.Width = PictureKE.Width
.Height = PictureKE.Height
End With
' escalas
With PictureKE
Escala_Anterior = .ScaleMode
.ScaleMode = vbPixels
Ancho = .ScaleWidth
Alto = .ScaleHeight
End With
' Captura el área de pantalla correspondiente al formulario
hdc = GetDC(PictureKE.hWnd)
' Copia esa área al picturebox
BitBlt Pictemp.hdc, 0, 0, Ancho, Alto, hdc, 0, 0, vbSrcCopy
Pictemp.Picture = Pictemp.Image
Set Obtener_Imagen = Pictemp.Picture
' restaura la escala
PictureKE.ScaleMode = Escala_Anterior
' remueve el control picbox
Controls.Remove "Pic1"
Set Pictemp = Nothing
End Function
Private Sub Command1_Click()
SavePicture Obtener_Imagen(Me.Picture1), App.Path & "PlanoXY.bmp"
SavePicture Obtener_Imagen(Me.Picture2), App.Path & "PLanoXZ.bmp"
SavePicture Obtener_Imagen(Me.Picture3), App.Path & "Informacion.bmp"
Picture1.Cls
Picture1.Picture = LoadPicture(App.Path & "PlanoXY.bmp")
Picture2.Cls
Picture2.Picture = LoadPicture(App.Path & "PlanoXZ.bmp")
Picture3.Cls
Picture3.Picture = LoadPicture(App.Path & "Informacion.bmp")
Me.PrintForm
End Sub
Private Sub Form_Load()
Me.Picture1.AutoRedraw = True
Me.Picture1.ScaleMode = 6
Me.Picture2.AutoRedraw = True
Me.Picture2.ScaleMode = 6
Me.Picture3.AutoRedraw = True
Me.Picture3.ScaleMode = 6
Me.Picture1.Line (0, 0)-(20, 20)
Me.Picture2.Line (0, 0)-(20, 20)
Me.Picture3.Line (0, 0)-(20, 20)
End Sub