Explore AX.com

Skip to content
  • Home
  • About Me
  • Questions?
  • X++ 101

Explore AX.com

Don’t only practice your art, but force your way into its secrets

Skip to content
  • Home
  • About Me
  • Questions?
  • X++ 101

Approve By Email

Approve your AX 2009 and 2012 Workflows direct from your inbox with Axnosis Email Approver. Works with Outlook, Blackberry, Android, iPad, iPhone etc...

Recent Posts

  • Electronic reporter: New line in a word template content control
  • AX/D365 SSRS Report: “: Error 1 : Format is invalid. “
  • Report not working “This report doesn’t exist just yet”
  • Powershell/GIT – Create PackageLocalDirectory Symlinks
  • Saving Company Logo to file (X++)

Categories

  • AIF
  • AX2012
  • Client
  • Dynamics AX
  • Environment Management
  • Further Reading
  • Integration
  • Jobs
  • Model Management
  • Quick Tips
  • Role Centers
  • Security
  • SQL Scripts
  • SSRS
  • Training
  • Uncategorized
  • Workflow
  • X++

Archives

  • May 2024
  • August 2023
  • June 2023
  • April 2023
  • May 2018
  • February 2018
  • January 2018
  • January 2016
  • October 2015
  • September 2015
  • August 2015
  • July 2015
  • June 2015
  • May 2015
  • April 2015
  • March 2015
  • February 2015
  • January 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Recent Posts

  • Electronic reporter: New line in a word template content control
  • AX/D365 SSRS Report: “: Error 1 : Format is invalid. “
  • Report not working “This report doesn’t exist just yet”
  • Powershell/GIT – Create PackageLocalDirectory Symlinks
  • Saving Company Logo to file (X++)

Archives

  • May 2024
  • August 2023
  • June 2023
  • April 2023
  • May 2018
  • February 2018
  • January 2018
  • January 2016
  • October 2015
  • September 2015
  • August 2015
  • July 2015
  • June 2015
  • May 2015
  • April 2015
  • March 2015
  • February 2015
  • January 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014

Categories

  • AIF
  • AX2012
  • Client
  • Dynamics AX
  • Environment Management
  • Further Reading
  • Integration
  • Jobs
  • Model Management
  • Quick Tips
  • Role Centers
  • Security
  • SQL Scripts
  • SSRS
  • Training
  • Uncategorized
  • Workflow
  • X++

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

About

Welcome to my blog, a place where I record my thoughts and discoveries as I explore the Dynamics AX landscape.

Online XPO Reader (Beta)

Online XPO Reader

Month: May 2018

Leave a comment Posted on May 15, 2018 AX2012, Dynamics AX, Quick Tips, X++

Saving Company Logo to file (X++)

How does one get a copy of your company logo saved to file? (if you forgot to archive it like you should have originally)

One mechanism is using X++ as follows:

Bitmap logo;
BinData data = new BinData();
changeCompany("[companydataarea]")
{
    logo = FormLetter::companyLogo();        
    data.setData(logo);
    data.saveFile("C:\\Users\\jonathan.halland\\Desktop\\logo.bmp");
}

 

Company Logo
Proudly powered by WordPress | Theme: Adaption by WordPress.com.