I have tried the following
rvesds.Addpicture('',bmp,rvvabaseline)
rvesds.Setitemextraintproperty(rvesds.itemcount-1,rvepImagewidth, 45);
rvesds.Setitemextraintproperty(rvesds.itemcount-1,rvepImagehight, 45);
for each image, however there is a line return between each image
so they are each on a new line, how can i get them all in one line?
add four resized bitmaps size by side
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact:
AddPicture is obsolete and deprecated.
Use AddPictureEx.
Use AddPictureEx.
Code: Select all
AddPictureEx('', bmp1, 0, rvvaBaseline);
...
AddPictureEx('', bmp2, -1, rvvaBaseline);
...
AddPictureEx('', bmp3, -1, rvvaBaseline);
...
AddPictureEx('', bmp4, -1, rvvaBaseline);
-
- Site Admin
- Posts: 17557
- Joined: Sat Aug 27, 2005 10:28 am
- Contact: