Sorry, I do not understand what you want to do... which bitmap list? do you meant the Bitmaps which you can use through Image control and Bitmap = <number> property? These are in the exe. Open the exe file through some resource editor...
On a PictureBox on a form, you have the property Bitmaplist. There can you can set some predefined bitmaps, or let Navision import some bmp's from file (like c:\Bitmap1.bmp,c:\Bitmap2.bmp). Once this object is saved, you can remove these bitmaps from your hard disk, because they are imported in Navision.
And that is what happened with a customer of me. So now I'm looking for a way to "restore" these bitmaps...
No way. The bitmap is part of definition of the object. There is no some "vitual table" or something you can use. The internal bitmaps are in resources of the .exe file, but custom bitmaps are in Object BLOB. You can only view the bitmap and capture it through some software and save into file...
There are a number of forms in the download section that show bitmaps. Not for the most recent version I'm afraid, but it will give you a ton of bitmaps to choose from. I also saw a link to someone's blog with bitmaps for NAV2009.
Sorry this is such a tardy reply, but I had to work in 3.7 for the first time in a few years, and I figured out how to do this. Use the form below. If the version of NAV you are on has more than 40, just increase the options in the property BitmapList. Just Page Down through the records (it uses Integer as a counter) and the bitmap changes.
******
OBJECT Form 66666 Temp Kyle
{
OBJECT-PROPERTIES
{
Date=11/20/14;
Time=12:45:34 PM;
Modified=Yes;
Version List=;
}
PROPERTIES
{
Width=7920;
Height=8000;
SourceTable=Table2000000026;
}
CONTROLS
{
{ 1240060000;TextBox;550 ;770 ;1870 ;550 ;SourceExpr=Number }
{ 1240060002;PictureBox;2860;660;880 ;880 ;Name=TestBox;
ShowCaption=No;
BitmapPos=Center;
BitmapList=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,40;
SourceExpr=Number }
}
CODE
{
VAR
Counter@1240060000 : Integer;
Comments
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
And that is what happened with a customer of me. So now I'm looking for a way to "restore" these bitmaps...
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Thank you
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
RIS Plus, LLC
Which dimension/format do the new bitmap must have to be similar on pencil of comment button?
Thank you
******
OBJECT Form 66666 Temp Kyle
{
OBJECT-PROPERTIES
{
Date=11/20/14;
Time=12:45:34 PM;
Modified=Yes;
Version List=;
}
PROPERTIES
{
Width=7920;
Height=8000;
SourceTable=Table2000000026;
}
CONTROLS
{
{ 1240060000;TextBox;550 ;770 ;1870 ;550 ;SourceExpr=Number }
{ 1240060002;PictureBox;2860;660;880 ;880 ;Name=TestBox;
ShowCaption=No;
BitmapPos=Center;
BitmapList=1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,40;
SourceExpr=Number }
}
CODE
{
VAR
Counter@1240060000 : Integer;
BEGIN
END.
}
}