My issues is that when a user rotates a page that change to the image is not saved. Could someone please guide me on the proper way to save a rotated page?
Thanks,
Christina
Code that loads the image:
- Code: Select all
Private Sub IncomingFaxesListBox_Click()
Dim strPathAndFileName As String
FaxViewer.CloseImage
strPathAndFileName = "F:\" & Me.IncomingFaxesListBox.Column(0, Me.IncomingFaxesListBox.ItemsSelected(0))
FaxViewer.CreateGdPictureImageFromFile strPathAndFileName
FaxViewer.SetZoomFitControl
ZoomLbl.Caption = (CLng(FaxViewer.Zoom * 100)) & " %"
Me.LoadedFileTxt.Value = strPathAndFileName
Call StoreNameCbo_AfterUpdate
End Sub
Code that rotates the page
- Code: Select all
Private Sub Rotate90Btn_Click()
FaxViewer.Rotate90
End Sub
