View Single Post
  #1 (permalink)  
Old 02-14-2008, 09:49 PM
klaus's Avatar
klaus klaus is offline
Basic4ppc Expert
 
Join Date: Oct 2007
Location: Switzerland
Posts: 516
Awards Showcase
Competition Winner 
Total Awards: 1
Default Image problem with ImageButtons

Hello Erel,
I have a problem with images in ImageButtons.
For the IconEdit program I am trying to merge all the images into one binary file and retrieve those in an ImageList in the program, original idea of Oran.
But there is a problem with images in ImageButtons.
I added some Buttons and ImageButtons in the joined ImageEmbedBuilderTest program with different tests and the problem.
- Run the program
- Click on Viewer
- Load the IconEdit.img file there are 48 images in
- Then on top you can display the different images (Item 13 Pen image)
- If you click on Button15 it's the problem the image is not recognized

Below the code for the different Buttons with tests
Code:
Sub Button15_Click    ' problem
  ImageButton3.Image=IL1.Item(13)
End Sub

Sub Button16_Click    ' works
  IL2.Add(AppPath&"\btnPen.bmp")  ' original bitmap file
  ImageButton3.Image=IL2.Item(0)
End Sub

Sub Button17_Click  ' works
  Image1.Image=IL1.Item(13)         ' assign Item(13) to an Image object
  Il2.Add(Image1.Image)                ' assigning it to imageList
  ImageButton3.Image=IL2.Item(0)
End Sub
It seems that there is a bitmap format problem.
Can you please have a look at, thank you in advance.

Klaus
Switzerland
Attached Files
File Type: zip ImageEmbedBuilderTest.zip (36.5 KB, 17 views)
Reply With Quote