Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

copy pictures from MS-Paint to Binary Memo Field

Status
Not open for further replies.

154868

Programmer
Dec 5, 2003
23
Hi all,

I can open mspaint and paste the graph image into
mspaint with CTRL+V
How can I paste that image into a Binary-Memo Field
or into an image control within VFP8 ?

Thanks in advance



Andreas Wichmann
DataBit GmbH
Switzerland
 
How about...

Code:
lcStr=FILETOSTR('C:\balloon.bmp')
INSERT INTO table1 (mymemo) VALUES (lcstr)


Mike Gagnon

If you want to get the best response to a question, please check out FAQ184-2483 first.
 
.. fine, but my image is in the clipboard!

any idea, how can I read what kind of image is in the clipboard?

Andreas

Andreas Wichmann
DataBit GmbH
Switzerland
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top