cropping images....

gabo

Registered User.
Local time
Yesterday, 23:36
Joined
Apr 29, 2004
Messages
11
Is there someway that I can crop an copy and paste images in access to after save them and add them to reports???
 
Last edited:
OK. that's solve part of the problem....

thank you dave that's solve part of the problem but I want to know if there is a way so I can cut the image with a selection box in access and then save the changes

thanks
 
Remember what Access is, a Database, data, not pictures.

The following code will allow you to open paint and edit the image. (WinXP The path to paint may differ with different OS's

Me.PicFile is the path to the image.....


Dim strAppName As String
Dim strPath As String

If IsNull(Me.PicFile) Or Me.PicFile = "" Then
Else
strPath = Me.PicFile
strAppName = "C:\WINDOWS\System32\mspaint.exe " & Chr(34) & strPath & Chr(34)
Call Shell(strAppName, vbMaximizedFocus)
End If

Dave
 

Users who are viewing this thread

Back
Top Bottom