VBA image control

  • Thread starter Thread starter Piotr Lipski
  • Start date Start date
P

Piotr Lipski

Hello.

I have VBA procedure that draws barcodes on MSAccess report, using Image
control from Acess toolbox (to be more exact: it sets the
ImageControl.PictureData property to some calculated binary value in bmp
format).

I'm trying to port this code to Excel.

I'm looking for some graphical control that allows for such manipulation.
For example, that allows for raw inserting of BMP data into it.
 
On Tue, 20 Jun 2006 12:50:41 +0100, Piotr Lipski wrote:

[...]
I'm looking for some graphical control that allows for such manipulation.
For example, that allows for raw inserting of BMP data into it.

I've found out that Image control (from control Toolbox) is able to load
picture data from file (using LoadImage("path\to\filename.bmp")).

Now the problem is that my binary data is in DIB format (not BMP as I wrote
before) and I need to apply BMP header at the beginning. Does anybody know
how to do this?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top