Load,Edit and save images in MS Access 2000

  • Thread starter Thread starter Dem
  • Start date Start date
D

Dem

Hello,

I need to create a form, that user can load an image (jpeg, gif etc), then
edit it (adding some textboxes with comments) and then save the result as an
image in order to add it in an access report in later step.

Can you help me??????

Dem
 
You can't do the editing from within Access itself. What you can do is use
FollowHyperLink or Shell to open the file for editing with whatever
application is used to do the editing.
 
Thanks for the link. Looks very interesting. But when I insert text the
image is disapear. I want to add textbox in the image and arrows. Actually I
want to load a map as an image and add some textboxes with arrows to
highlight specific location etc... If i could add text inside the Rectangles
it would be great. :)
any ideas???

Thanks
Dem
 
Dem

You are going to have to do at least a little programming. I will get you
started!

Open the clsPictureBox Class module

Find the function

Public Function OutputText(Optional ByVal strText As String = "") As Boolean

change

' Clear Image control to background color
Clear

to

' Clear Image control to background color
' Clear

Save the Class module

Try again :-)

Rdub
 
Back
Top