Options

Export Bitmaplist

Johnny_ReggaeJohnny_Reggae Member Posts: 63
Is there any way to export (to file) the bitmap list within Navision, or just the user-imported bitmaps ?

Comments

  • Options
    kinekine Member Posts: 12,562
    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...
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • Options
    Johnny_ReggaeJohnny_Reggae Member Posts: 63
    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...
  • Options
    kinekine Member Posts: 12,562
    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...
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • Options
    andy76andy76 Member Posts: 616
    Where or how can I see the 43 or more predefined bitmaps internal to Navision in version 5.0?

    Thank you
  • Options
    kinekine Member Posts: 12,562
    By some resource editor when you open the fin.exe file... ;-)
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • Options
    DenSterDenSter Member Posts: 8,304
    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.
  • Options
    andy76andy76 Member Posts: 616
    Could you explain better in which download section?

    Which dimension/format do the new bitmap must have to be similar on pencil of comment button?

    Thank you
  • Options
    kylehardinkylehardin Member Posts: 257
    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;

    BEGIN
    END.
    }
    }
    Kyle Hardin - ArcherPoint
Sign In or Register to comment.