Chris, On Donnerstag, 31. Januar 2019 20:23:03 CET Chris Miller wrote:
> Hi Folks, > > I am transacting with my bank using OFX, something I have done for many years > and I see that KMyMoney can masquerade as Quicken, but only to 2014, which is > not sufficient. I have learned by advanced guessing that Quicken 2017 is > represented by application ID 2600 and I can use "(Expert)" to enter this, > but it is not clear what the string should be. Does it assume "QWIN"? Should > I put "QWIN:2600" or simply "2600", or something else entirely? Unfortunately, you did not mention the version of KMyMoney you are running. Here's the mapping straight from the source code: // Quicken m_appMap[i18n("Quicken Windows 2003")] = "QWIN:1200"; m_appMap[i18n("Quicken Windows 2004")] = "QWIN:1300"; m_appMap[i18n("Quicken Windows 2005")] = "QWIN:1400"; m_appMap[i18n("Quicken Windows 2006")] = "QWIN:1500"; m_appMap[i18n("Quicken Windows 2007")] = "QWIN:1600"; m_appMap[i18n("Quicken Windows 2008")] = "QWIN:1700"; // the following three added as found on // https://microsoftmoneyoffline.wordpress.com/appid-appver/ on 2013-02-28 m_appMap[i18n("Quicken Windows 2010")] = "QWIN:1800"; m_appMap[i18n("Quicken Windows 2011")] = "QWIN:1900"; m_appMap[i18n("Quicken Windows 2012")] = "QWIN:2100"; m_appMap[i18n("Quicken Windows 2013")] = "QWIN:2200"; m_appMap[i18n("Quicken Windows 2014")] = "QWIN:2300"; // following two added as found in previous URL on 2017-10-01 m_appMap[i18n("Quicken Windows 2015")] = "QWIN:2400"; m_appMap[i18n("Quicken Windows 2016")] = "QWIN:2500"; // following three added as logical consequence on 2018-12-12 m_appMap[i18n("Quicken Windows 2017")] = "QWIN:2600"; m_appMap[i18n("Quicken Windows 2018")] = "QWIN:2700"; m_appMap[i18n("Quicken Windows 2019")] = "QWIN:2800"; // the swiss army knife entry :) m_appMap[i18n("Quicken Windows (Expert)")] = "QWIN:"; Since the expert mode already has the QWIN: leadin, you only need to supply the number in the text field. Hope that helps. -- Regards Thomas Baumgart https://www.signal.org/ Signal, the better WhatsApp ------------------------------------------------------------- If you've got friends that have you thrown out of a plane in mid-air, you don't need enemies. (Sebas Kügler on http://vizzzion.org/blog/2010/06/jumped/) -------------------------------------------------------------
signature.asc
Description: This is a digitally signed message part.