; Script generated by the HM NIS Edit Script Wizard. ; HM NIS Edit Wizard helper defines !define PRODUCT_NAME "Radar" !define PRODUCT_VERSION "0.9" !define PRODUCT_PUBLISHER "SoftCapital" !define PRODUCT_WEB_SITE "http://www.softcapital.com" !define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\AppMainExe.exe" !define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}" !define PRODUCT_UNINST_ROOT_KEY "HKLM" ; MUI 1.67 compatible ------ !include "MUI.nsh" !include "Sections.nsh" ; MUI Settings !define MUI_ABORTWARNING !define MUI_ICON "${NSISDIR}\Contrib\Graphics\Icons\modern-install.ico" !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" ; Language Selection Dialog Settings !define MUI_LANGDLL_REGISTRY_ROOT "${PRODUCT_UNINST_ROOT_KEY}" !define MUI_LANGDLL_REGISTRY_KEY "${PRODUCT_UNINST_KEY}" !define MUI_LANGDLL_REGISTRY_VALUENAME "NSIS:Language" ; Welcome page !insertmacro MUI_PAGE_WELCOME ; License page !insertmacro MUI_PAGE_LICENSE "license.txt" ; Directory page !insertmacro MUI_PAGE_DIRECTORY ; Components page !insertmacro MUI_PAGE_COMPONENTS ; Instfiles page !insertmacro MUI_PAGE_INSTFILES ; Finish page ;!define MUI_FINISHPAGE_RUN "$INSTDIR\radar_client.exe" !insertmacro MUI_PAGE_FINISH ; Uninstaller pages !insertmacro MUI_UNPAGE_INSTFILES ; Language files !insertmacro MUI_LANGUAGE "Danish" !insertmacro MUI_LANGUAGE "English" !insertmacro MUI_LANGUAGE "Finnish" !insertmacro MUI_LANGUAGE "French" !insertmacro MUI_LANGUAGE "German" !insertmacro MUI_LANGUAGE "Spanish" !insertmacro MUI_LANGUAGE "Swedish" !insertmacro MUI_LANGUAGE "Russian" ; MUI end ------ Name "${PRODUCT_NAME} ${PRODUCT_VERSION}" OutFile "Setup.exe" InstallDir "$PROGRAMFILES\SoftCapital\Radar" InstallDirRegKey HKLM "${PRODUCT_DIR_REGKEY}" "" ShowInstDetails show ShowUnInstDetails show ;Function .onInit ; !insertmacro MUI_LANGDLL_DISPLAY ;FunctionEnd Section "MainSection" SEC01 SectionIn RO SetOutPath "$INSTDIR" SetOverwrite ifnewer CreateDirectory "$SMPROGRAMS\Radar" CreateShortCut "$SMPROGRAMS\Radar\Radar.lnk" "$INSTDIR\radar_client.exe" CreateShortCut "$DESKTOP\Radar.lnk" "$INSTDIR\radar_client.exe" SetOverwrite try File "..\SoftCapital\Release\ace.dll" File "..\SoftCapital\Release\YGateSchema.xml" ; Install the defaults registry settings for Radar ExecWait 'Regedit.exe /S "radar.reg"' SetOutPath "$INSTDIR" ;Register ActiveX?s and DLL?s UnRegDLL "$INSTDIR\teechart5.ocx" Sleep 1000 RegDLL "$INSTDIR\teechart5.ocx" Sleep 1000 SectionEnd Section "USA settings" SEC02 SetOutPath "$INSTDIR\settings\desks" SetOverwrite on File "..\SoftCapital\_User groups USA\Default.DSK" SetOutPath "$INSTDIR\Internal_DATA" SetOverwrite on File "..\SoftCapital\_User groups USA\USER_GROUPS.xml" SectionEnd Section /o "UK settings" SEC03 SetOutPath "$INSTDIR\settings\desks" SetOverwrite on File "..\SoftCapital\_User groups England\Default.DSK" SetOutPath "$INSTDIR\Internal_DATA" SetOverwrite on File "..\SoftCapital\_User groups England\USER_GROUPS.xml" SectionEnd Section /o "Denmark settings" SEC04 SetOutPath "$INSTDIR\settings\desks" SetOverwrite on File "..\SoftCapital\_User groups Denmark\Default.DSK" SetOutPath "$INSTDIR\Internal_DATA" SetOverwrite on File "..\SoftCapital\_User groups Denmark\USER_GROUPS.xml" SectionEnd Section /o "Sweden settings" SEC05 SetOutPath "$INSTDIR\settings\desks" SetOverwrite on File "..\SoftCapital\_User groups Sweden\Default.DSK" SetOutPath "$INSTDIR\Internal_DATA" SetOverwrite on File "..\SoftCapital\_User groups Sweden\USER_GROUPS.xml" SectionEnd Section /o "Germany settings" SEC06 SetOutPath "$INSTDIR\settings\desks" SetOverwrite on File "..\SoftCapital\_User groups Germany\Default.DSK" SetOutPath "$INSTDIR\Internal_DATA" SetOverwrite on File "..\SoftCapital\_User groups Germany\USER_GROUPS.xml" SectionEnd Section /o "France settiings" SEC07 SetOutPath "$INSTDIR\settings\desks" SetOverwrite on File "..\SoftCapital\_User groups France\Default.DSK" SetOutPath "$INSTDIR\Internal_DATA" SetOverwrite on File "..\SoftCapital\_User groups France\USER_GROUPS.xml" SectionEnd ; Functions ; $1 stores the status of group 1 Function .onInit StrCpy $1 ${SEC03} ; Group 1 - Option 1 is selected by default !insertmacro MUI_LANGDLL_DISPLAY FunctionEnd Function .onSelChange !insertmacro StartRadioButtons $1 !insertmacro RadioButton ${SEC02} !insertmacro RadioButton ${SEC03} !insertmacro RadioButton ${SEC04} !insertmacro RadioButton ${SEC05} !insertmacro RadioButton ${SEC06} !insertmacro RadioButton ${SEC07} !insertmacro EndRadioButtons FunctionEnd Section -AdditionalIcons WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" "${PRODUCT_WEB_SITE}" CreateShortCut "$SMPROGRAMS\Radar\Website.lnk" "$INSTDIR\${PRODUCT_NAME}.url" CreateShortCut "$SMPROGRAMS\Radar\Uninstall.lnk" "$INSTDIR\uninst.exe" CreateShortCut "$SMPROGRAMS\Radar\dde.lnk" "$INSTDIR\dde.xls" SectionEnd Section -Post WriteUninstaller "$INSTDIR\uninst.exe" WriteRegStr HKLM "${PRODUCT_DIR_REGKEY}" "" "$INSTDIR\AppMainExe.exe" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayName" "$(^Name)" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninst.exe" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\AppMainExe.exe" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "DisplayVersion" "${PRODUCT_VERSION}" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}" WriteRegStr ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" "Publisher" "${PRODUCT_PUBLISHER}" SectionEnd Function un.onUninstSuccess HideWindow MessageBox MB_ICONINFORMATION|MB_OK "$(^Name) was successfully removed from your computer." FunctionEnd Function un.onInit !insertmacro MUI_UNGETLANGUAGE MessageBox MB_ICONQUESTION|MB_YESNO|MB_DEFBUTTON2 "Are you sure you want to completely remove $(^Name) and all of its components?" IDYES +2 Abort FunctionEnd Section Uninstall Delete "$INSTDIR\${PRODUCT_NAME}.url" Delete "$INSTDIR\uninst.exe" Delete "$INSTDIR\USER_GROUPS.xml" Delete "$INSTDIR\Default.DSK" Delete "$INSTDIR\USER_GROUPS.xml" Delete "$INSTDIR\Default.DSK" Delete "$INSTDIR\USER_GROUPS.xml" Delete "$INSTDIR\Default.DSK" Delete "$INSTDIR\USER_GROUPS.xml" Delete "$INSTDIR\Default.DSK" Delete "$INSTDIR\USER_GROUPS.xml" Delete "$INSTDIR\Default.DSK" Delete "$INSTDIR\USER_GROUPS.xml" Delete "$INSTDIR\Default.DSK" Delete "$INSTDIR\YGateSchema.xml" Delete "$INSTDIR\YGate.ini" Delete "$INSTDIR\YGate.dll" Delete "$INSTDIR\UserDefinedCols.xml" Delete "$INSTDIR\updater.exe" Delete "$INSTDIR\updateinfo.xml" Delete "$INSTDIR\TotGateSchema.xml" Delete "$INSTDIR\TOTGate.ini" Delete "$INSTDIR\TOTGate.dll" Delete "$INSTDIR\TESTGate.ini" Delete "$INSTDIR\TESTGate.dll" Delete "$INSTDIR\TeeChart5.ocx" Delete "$INSTDIR\settings.ini" Delete "$INSTDIR\dde.xls" Delete "$INSTDIR\Settings\UnderlyingLoaderPopup\Default.VIEW" Delete "$INSTDIR\Settings\UnderlyingLoaderPopup\Default.SPL" Delete "$INSTDIR\Settings\UnderlyingLoader\Default.SPL" Delete "$INSTDIR\Settings\TOT\TAS\Default.COL" Delete "$INSTDIR\Settings\TOT\SymbolOverview\Default.COL" Delete "$INSTDIR\Settings\TOT\ProviderNews\Default.COL" Delete "$INSTDIR\Settings\TOT\MarketPage\SSW\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\SSE\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\Other.COL" Delete "$INSTDIR\Settings\TOT\MarketPage\OSS\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\NYS\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\Index.COL" Delete "$INSTDIR\Settings\TOT\MarketPage\HSS\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\ENB\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\ENA\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\Default.COL" Delete "$INSTDIR\Settings\TOT\MarketPage\CSU\My.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\CSS\STOCK.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\CSS\OTHER.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\CSS\Index.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\CSS\Default.ROW" Delete "$INSTDIR\Settings\TOT\MarketPage\1.COL" Delete "$INSTDIR\Settings\TOT\History\Default.LT" Delete "$INSTDIR\Settings\TOT\History\Default.HLT" Delete "$INSTDIR\Settings\TOT\History\Default.COL" Delete "$INSTDIR\Settings\TOT\Depth\NKT\Default.COL" Delete "$INSTDIR\Settings\TOT\Depth\Default.ROW" Delete "$INSTDIR\Settings\TOT\Depth\Default.COL" Delete "$INSTDIR\Settings\TOT\Depth\AURI B\Default.COL" Delete "$INSTDIR\Settings\TAS\YFeed\Default.COL" Delete "$INSTDIR\Settings\TAS\TEST\Default.COL" Delete "$INSTDIR\Settings\TAS\IQFeed\Default.COL" Delete "$INSTDIR\Settings\TAS\INFRONT\Default.COL" Delete "$INSTDIR\Settings\TAS\IBE\Default.COL" Delete "$INSTDIR\Settings\TAS\IB\Default.COL" Delete "$INSTDIR\Settings\TAS\Default.VIEW" Delete "$INSTDIR\Settings\TAS\Default.TEE" Delete "$INSTDIR\Settings\TAS\Default.HLT" Delete "$INSTDIR\Settings\TAS\Default.COL" Delete "$INSTDIR\Settings\TAS\Black.TEE" Delete "$INSTDIR\Settings\TAS\2.TEE" Delete "$INSTDIR\Settings\TAS\1.TEE" Delete "$INSTDIR\Settings\TAS\1.HLT" Delete "$INSTDIR\Settings\SymbolOverview\Default.VIEW" Delete "$INSTDIR\Settings\SymbolOverview\Default.TEE" Delete "$INSTDIR\Settings\SymbolOverview\Default.SPL" Delete "$INSTDIR\Settings\SymbolOverview\Default.ROW" Delete "$INSTDIR\Settings\SymbolOverview\Default.HLT" Delete "$INSTDIR\Settings\SymbolOverview\Default.DLG" Delete "$INSTDIR\Settings\SymbolOverview\Default.COL" Delete "$INSTDIR\Settings\SymbolLookupEx\Default.SPL" Delete "$INSTDIR\Settings\SymbolLookup\Default.VIEW" Delete "$INSTDIR\Settings\SymbolLookup\Default.SPL" Delete "$INSTDIR\Settings\ProviderNews\Default.VIEW" Delete "$INSTDIR\Settings\ProviderNews\Default.COL" Delete "$INSTDIR\Settings\ProviderNews\1.VIEW" Delete "$INSTDIR\Settings\ProviderNews\1.COL" Delete "$INSTDIR\Settings\OptionWindowPopup\Default.VIEW" Delete "$INSTDIR\Settings\OptionWindowPopup\Default.COL" Delete "$INSTDIR\Settings\OptionWindow1\Default.VIEW" Delete "$INSTDIR\Settings\OptionWindow1\Default.COL" Delete "$INSTDIR\Settings\OptionWindow\small.VIEW" Delete "$INSTDIR\Settings\OptionWindow\Price.COL" Delete "$INSTDIR\Settings\OptionWindow\Full.COL" Delete "$INSTDIR\Settings\OptionWindow\Default.VIEW" Delete "$INSTDIR\Settings\OptionWindow\Default.COL" Delete "$INSTDIR\Settings\OptionWindow\BIG.COL" Delete "$INSTDIR\Settings\OptionWindow\1.VIEW" Delete "$INSTDIR\Settings\ObjectTracer\Default.VIEW" Delete "$INSTDIR\Settings\Object Tracer\Default.VIEW" Delete "$INSTDIR\Settings\MDE\Providers.txt" Delete "$INSTDIR\Settings\MDE\Exchanges.txt" Delete "$INSTDIR\Settings\MDE\Default.VIEW" Delete "$INSTDIR\Settings\MarketPage\TOT\CSS\1.ROW" Delete "$INSTDIR\Settings\MarketPage\TEST\TEST MP\STOCKS.ROW" Delete "$INSTDIR\Settings\MarketPage\TEST\TEST MP\INDEX.ROW" Delete "$INSTDIR\Settings\MarketPage\TEST\TEST MP\1.ROW" Delete "$INSTDIR\Settings\MarketPage\TEST\Default.COL" Delete "$INSTDIR\Settings\MarketPage\Small.VIEW" Delete "$INSTDIR\Settings\MarketPage\MICEX\MICEX\tmp.ROW" Delete "$INSTDIR\Settings\MarketPage\MICEX\MICEX\Oil.ROW" Delete "$INSTDIR\Settings\MarketPage\MICEX\MICEX\NEWS_IJP.RQ" Delete "$INSTDIR\Settings\MarketPage\MICEX\MICEX\NEWS_CPW.RQ" Delete "$INSTDIR\Settings\MarketPage\MICEX\MICEX\Default.ROW" Delete "$INSTDIR\Settings\MarketPage\MICEX\Default.COL" Delete "$INSTDIR\Settings\MarketPage\Loser.VIEW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\WFX\NEWS_SSI.RQ" Delete "$INSTDIR\Settings\MarketPage\INFRONT\WFX\NEWS_BOR.RQ" Delete "$INSTDIR\Settings\MarketPage\INFRONT\WFX\NEWS_BLT.RQ" Delete "$INSTDIR\Settings\MarketPage\INFRONT\SSE\STOCKS.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\SSE\OMXC20.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\SSE\INDEX.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\ENB\STOCKS.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\Default.COL" Delete "$INSTDIR\Settings\MarketPage\INFRONT\CSS\MAERSK.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\CSS\INDEX.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\CSS\edgegt.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\CSB\Nykredit.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\CSB\Nordea.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\CSB\NEWS_IJP.RQ" Delete "$INSTDIR\Settings\MarketPage\INFRONT\CSB\default.ROW" Delete "$INSTDIR\Settings\MarketPage\INFRONT\CSB\Bench.ROW" Delete "$INSTDIR\Settings\MarketPage\dfg.ROW" Delete "$INSTDIR\Settings\MarketPage\Default.VIEW" Delete "$INSTDIR\Settings\MarketPage\Default.COL" Delete "$INSTDIR\Settings\MarketPage\Currency.COL" Delete "$INSTDIR\Settings\MarketPage\Black.VIEW" Delete "$INSTDIR\Settings\MarketPage\Arial.VIEW" Delete "$INSTDIR\Settings\MarketPage\1.VIEW" Delete "$INSTDIR\Settings\Log ControlBar\MSFT.TAS_RT" Delete "$INSTDIR\Settings\Log ControlBar\Default.VIEW" Delete "$INSTDIR\Settings\LoadUnderlyingsEx\Default.SPL" Delete "$INSTDIR\Settings\LoadDerivativesEx\Default.VIEW" Delete "$INSTDIR\Settings\LoadDerivativesEx\Default.SPL" Delete "$INSTDIR\Settings\HistoryTrends\YFeed\^SSMI.LINE" Delete "$INSTDIR\Settings\HistoryTrends\YFeed\CAR.CO.LINE" Delete "$INSTDIR\Settings\HistoryTrends\YFeed\AAPL.LINE" Delete "$INSTDIR\Settings\HistoryGrid\YFeed\Default.COL" Delete "$INSTDIR\Settings\HistoryGrid\TEST\Default.COL" Delete "$INSTDIR\Settings\HistoryGrid\IQFeed\Default.COL" Delete "$INSTDIR\Settings\HistoryGrid\INFRONT\Default.COL" Delete "$INSTDIR\Settings\HistoryGrid\IBE\Default.COL" Delete "$INSTDIR\Settings\HistoryGrid\Default.VIEW" Delete "$INSTDIR\Settings\HistoryGrid\Default.TEE" Delete "$INSTDIR\Settings\HistoryGrid\Default.HLT" Delete "$INSTDIR\Settings\HistoryGrid\Default.COL" Delete "$INSTDIR\Settings\HistoryGrid\90 days.HLT" Delete "$INSTDIR\Settings\HistoryGrid\70 wdays.HLT" Delete "$INSTDIR\Settings\HistoryGrid\55.HLT" Delete "$INSTDIR\Settings\HistoryChart\YFeed\Default.COL" Delete "$INSTDIR\Settings\HistoryChart\TEST\g.LINE" Delete "$INSTDIR\Settings\HistoryChart\TEST\EGHH.LINE" Delete "$INSTDIR\Settings\HistoryChart\TEST\Default.COL" Delete "$INSTDIR\Settings\HistoryChart\Parrot.TEE" Delete "$INSTDIR\Settings\HistoryChart\IQFeed\Default.COL" Delete "$INSTDIR\Settings\HistoryChart\INFRONT\SSE_ERIC B.LINE" Delete "$INSTDIR\Settings\HistoryChart\INFRONT\Default.COL" Delete "$INSTDIR\Settings\HistoryChart\Default2.TEE" Delete "$INSTDIR\Settings\HistoryChart\Default.VIEW" Delete "$INSTDIR\Settings\HistoryChart\Default.TEE" Delete "$INSTDIR\Settings\HistoryChart\Default.HLT" Delete "$INSTDIR\Settings\HistoryChart\Default.COL" Delete "$INSTDIR\Settings\HistoryChart\Black.TEE" Delete "$INSTDIR\Settings\HistoryChart\90 days.HLT" Delete "$INSTDIR\Settings\HistoryChart\70 wdays.HLT" Delete "$INSTDIR\Settings\HistoryChart\55.HLT" Delete "$INSTDIR\Settings\History\YFeed\Default.COL" Delete "$INSTDIR\Settings\History\TEST\e.LINE" Delete "$INSTDIR\Settings\History\TEST\Default.COL" Delete "$INSTDIR\Settings\History\TAS_WISE.RQ" Delete "$INSTDIR\Settings\History\Parrot.TEE" Delete "$INSTDIR\Settings\History\IQFeed\IBM09.LINE" Delete "$INSTDIR\Settings\History\IQFeed\Default.COL" Delete "$INSTDIR\Settings\History\INFRONT\SSE_ERIC B.LINE" Delete "$INSTDIR\Settings\History\INFRONT\Default.COL" Delete "$INSTDIR\Settings\History\IBE\Default.COL" Delete "$INSTDIR\Settings\History\IB\Default.COL" Delete "$INSTDIR\Settings\History\Default2.TEE" Delete "$INSTDIR\Settings\History\Default.VIEW" Delete "$INSTDIR\Settings\History\Default.TEE" Delete "$INSTDIR\Settings\History\Default.HLT" Delete "$INSTDIR\Settings\History\Default.COL" Delete "$INSTDIR\Settings\History\Black.TEE" Delete "$INSTDIR\Settings\History\90 days.HLT" Delete "$INSTDIR\Settings\History\70 wdays.HLT" Delete "$INSTDIR\Settings\History\55.HLT" Delete "$INSTDIR\Settings\Gate Manager\Default.VIEW" Delete "$INSTDIR\Settings\Forex\YFeed\Yahoo forex\Default.ROW" Delete "$INSTDIR\Settings\Forex\YFeed\Yahoo forex\Default.COL" Delete "$INSTDIR\Settings\Forex\INFRONT\WFX\Default.ROW" Delete "$INSTDIR\Settings\Forex\INFRONT\WFX\Default.COL" Delete "$INSTDIR\Settings\Forex\INFRONT\WDE\Default.ROW" Delete "$INSTDIR\Settings\Forex\INFRONT\WDE\Default.COL" Delete "$INSTDIR\Settings\Forex\INFRONT\USD\NEWS_CSN.RQ" Delete "$INSTDIR\Settings\Forex\INFRONT\USD\Default.ROW" Delete "$INSTDIR\Settings\Forex\INFRONT\USD\Default.COL" Delete "$INSTDIR\Settings\Forex\IBE\IB forex matrix\Default.ROW" Delete "$INSTDIR\Settings\Forex\IBE\IB forex matrix\Default.COL" Delete "$INSTDIR\Settings\Forex\Default.VIEW" Delete "$INSTDIR\Settings\Forex\Default.ROW" Delete "$INSTDIR\Settings\Forex\Default.COL" Delete "$INSTDIR\Settings\FORCE\MarketPage\Default.ROW" Delete "$INSTDIR\Settings\FORCE\MarketPage\Default.COL" Delete "$INSTDIR\Settings\FastSymbolLookup\Default.VIEW" Delete "$INSTDIR\Settings\DetailsSymbolLookup\Default.VIEW" Delete "$INSTDIR\Settings\Desks\Settings\MDE\Default.VIEW" Delete "$INSTDIR\Settings\Desks\Settings\Log ControlBar\Default.VIEW" Delete "$INSTDIR\Settings\Desks\Settings\Gate Manager\Default.VIEW" Delete "$INSTDIR\Settings\Desks\Settings\Desks\Default.DSK" Delete "$INSTDIR\Settings\Desks\Providers.txt" Delete "$INSTDIR\Settings\Desks\Exchanges.txt" Delete "$INSTDIR\Settings\Desks\Default.old" Delete "$INSTDIR\Settings\Desks\Default.DSK" Delete "$INSTDIR\Settings\DerivativeLoaderPopup\Default.VIEW" Delete "$INSTDIR\Settings\DerivativeLoaderPopup\Default.SPL" Delete "$INSTDIR\Settings\Depth\YFeed\Default.COL" Delete "$INSTDIR\Settings\Depth\TEST\Default.COL" Delete "$INSTDIR\Settings\Depth\Small Font.VIEW" Delete "$INSTDIR\Settings\Depth\MICEX\Default.COL" Delete "$INSTDIR\Settings\Depth\IQFeed\Default.COL" Delete "$INSTDIR\Settings\Depth\INFRONT\Default.COL" Delete "$INSTDIR\Settings\Depth\IBE\Default.COL" Delete "$INSTDIR\Settings\Depth\IB\Default.COL" Delete "$INSTDIR\Settings\Depth\Error.VIEW" Delete "$INSTDIR\Settings\Depth\Default.VIEW" Delete "$INSTDIR\Settings\Depth\Default.ROW" Delete "$INSTDIR\Settings\Depth\Default.COL" Delete "$INSTDIR\Settings\DDE_PROP\DDE_PROP.DDE" Delete "$INSTDIR\Settings\CompositePage\USD_FOREX.ROW" Delete "$INSTDIR\Settings\CompositePage\SWEDEN.ROW" Delete "$INSTDIR\Settings\CompositePage\Providers.txt" Delete "$INSTDIR\Settings\CompositePage\Exchanges.txt" Delete "$INSTDIR\Settings\CompositePage\DENMARK.ROW" Delete "$INSTDIR\Settings\CompositePage\Default.VIEW" Delete "$INSTDIR\Settings\CompositePage\Default.COL" Delete "$INSTDIR\Settings\CompositePage\Currency.COL" Delete "$INSTDIR\Settings\CompositePage\black.VIEW" Delete "$INSTDIR\Settings\CompositePage\AMERICAN.ROW" Delete "$INSTDIR\RSS_DATA\NEWS_PROVIDERS.xml" Delete "$INSTDIR\RSSGateSchema.xml" Delete "$INSTDIR\RSSGate.ini" Delete "$INSTDIR\RSSGate.dll" Delete "$INSTDIR\Resource\Themes\Zonar.css" Delete "$INSTDIR\Resource\Themes\REUTERS.css" Delete "$INSTDIR\Resource\Themes\Official.css" Delete "$INSTDIR\Resource\Themes\Nature.css" Delete "$INSTDIR\Resource\Themes\Nature Bkgrd.jpg" Delete "$INSTDIR\Resource\Themes\Monster.gif" Delete "$INSTDIR\Resource\Themes\Military.jpg" Delete "$INSTDIR\Resource\Themes\Military.css" Delete "$INSTDIR\Resource\Themes\Default.css" Delete "$INSTDIR\Resource\Themes\back1.gif" Delete "$INSTDIR\Resource\Themes\back.gif" Delete "$INSTDIR\Resource\Templates\Unknown.htm" Delete "$INSTDIR\Resource\Templates\TOT_STOCK.htm" Delete "$INSTDIR\Resource\Templates\TOT_INDEX.htm" Delete "$INSTDIR\Resource\Templates\TOT_Default.htm" Delete "$INSTDIR\Resource\Templates\TEST_News.htm" Delete "$INSTDIR\Resource\Templates\TEST_DNA.htm" Delete "$INSTDIR\Resource\Templates\TEST_96.htm" Delete "$INSTDIR\Resource\Templates\TEST_152.htm" Delete "$INSTDIR\Resource\Templates\TEST_151.htm" Delete "$INSTDIR\Resource\Templates\TEST_132.htm" Delete "$INSTDIR\Resource\Templates\TEST_125.htm" Delete "$INSTDIR\Resource\Templates\TEST_116.htm" Delete "$INSTDIR\Resource\Templates\TEST_108.htm" Delete "$INSTDIR\Resource\Templates\Scripts\XMLHelper.vbs" Delete "$INSTDIR\Resource\Templates\Scripts\RDRUProc.vbs" Delete "$INSTDIR\Resource\Templates\Scripts\RDRCommon.vbs" Delete "$INSTDIR\Resource\Templates\Scripts\RDRChains.vbs" Delete "$INSTDIR\Resource\Templates\Loading.htm" Delete "$INSTDIR\Resource\Templates\DEFAULT1.htm" Delete "$INSTDIR\Resource\Templates\DEFAULT.htm" Delete "$INSTDIR\ReadNews.TXT" Delete "$INSTDIR\RDRWin.dll" Delete "$INSTDIR\RDRTradeComponents.dll" Delete "$INSTDIR\RDRTableExport.dll" Delete "$INSTDIR\RDRSrv.dll" Delete "$INSTDIR\RDRObjectInspector.dll" Delete "$INSTDIR\RDRMTComponents.dll" Delete "$INSTDIR\RDRmf.dll" Delete "$INSTDIR\RDRMarketUI.dll" Delete "$INSTDIR\RDRComponents.dll" Delete "$INSTDIR\RDRbaseEx.dll" Delete "$INSTDIR\RDRbase.dll" Delete "$INSTDIR\RADAR_CLIENT.ini" Delete "$INSTDIR\RADAR_CLIENT.exe" Delete "$INSTDIR\Radar.reg" Delete "$INSTDIR\PM_DATA\PKID_TABLE.xml" Delete "$INSTDIR\PM_DATA\FEEDS.xml" Delete "$INSTDIR\PM_DATA\EXPIRATIONS.xml" Delete "$INSTDIR\PM_DATA\DIVIDENDS.xml" Delete "$INSTDIR\PM_DATA\CONTRACTS.xml" Delete "$INSTDIR\PM_DATA\ASSETS.xml" Delete "$INSTDIR\PMGateUISchema.xml" Delete "$INSTDIR\PMGateUI.dll" Delete "$INSTDIR\PMGateSchema.xml" Delete "$INSTDIR\PMGate.ini" Delete "$INSTDIR\PMGate.dll" Delete "$INSTDIR\ParsingRules.ini" Delete "$INSTDIR\MTEbase.dll" Delete "$INSTDIR\IqGateSchema.xml" Delete "$INSTDIR\IqGate.ini" Delete "$INSTDIR\IqGate.dll" Delete "$INSTDIR\iqconnect.exe" Delete "$INSTDIR\IQ32.dll" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Wld Indices.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Sthlm. Stocks.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_SP-100.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Oslo Stocks.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_OSEBX.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_OMXC20.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_O. Index.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Nyse Int..xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Nyse Int-100.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_NSQ-100.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Nsq 100.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_NL Midcap.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Indices.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Index.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Holland.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_FTSE.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_FTSE-100.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Dow.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Dow. Trans.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_DJ-Utilities.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_DJ Util.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_DJ Trans..xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_DJ Comp.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_DJ Comp..xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_DJ Avg..xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Danske Aktier.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUP_Attract40.xml" Delete "$INSTDIR\Internal_DATA\USER_GROUPS.xml" Delete "$INSTDIR\InternalGateSchema.xml" Delete "$INSTDIR\InternalGate.ini" Delete "$INSTDIR\InternalGate.dll" Delete "$INSTDIR\InfrontDS.est" Delete "$INSTDIR\infrontds.err" Delete "$INSTDIR\InfrontDS.dll" Delete "$INSTDIR\IbGateSchema.xml" Delete "$INSTDIR\IbGateExSchema.xml" Delete "$INSTDIR\IbGateEx.ini" Delete "$INSTDIR\IBGateEx.dll" Delete "$INSTDIR\CommonGateSchemaNew.xml" Delete "$INSTDIR\CommonGateSchema.xml" Delete "$INSTDIR\Calculator.dll" Delete "$INSTDIR\BCGCBPRO651.dll" Delete "$INSTDIR\ACEXML_Parser.dll" Delete "$INSTDIR\ACEXML.dll" Delete "$INSTDIR\ace.dll" Delete "$INSTDIR\Example.file" Delete "$INSTDIR\AppMainExe.exe" Delete "$SMPROGRAMS\Radar\Uninstall.lnk" Delete "$SMPROGRAMS\Radar\Website.lnk" Delete "$SMPROGRAMS\Radar\dde.lnk" Delete "$STARTMENU.lnk" Delete "$STARTMENU.lnk" Delete "$DESKTOP\Radar.lnk" Delete "$SMPROGRAMS\Radar\Radar.lnk" RMDir "$SMPROGRAMS\Radar" RMDir "$INSTDIR\Settings\UnderlyingLoaderPopup" RMDir "$INSTDIR\Settings\UnderlyingLoader" RMDir "$INSTDIR\Settings\TOT\TAS" RMDir "$INSTDIR\Settings\TOT\SymbolOverview" RMDir "$INSTDIR\Settings\TOT\ProviderNews" RMDir "$INSTDIR\Settings\TOT\MarketPage\SSW" RMDir "$INSTDIR\Settings\TOT\MarketPage\SSE" RMDir "$INSTDIR\Settings\TOT\MarketPage\OSS" RMDir "$INSTDIR\Settings\TOT\MarketPage\NYS" RMDir "$INSTDIR\Settings\TOT\MarketPage\HSS" RMDir "$INSTDIR\Settings\TOT\MarketPage\ENB" RMDir "$INSTDIR\Settings\TOT\MarketPage\ENA" RMDir "$INSTDIR\Settings\TOT\MarketPage\CSU" RMDir "$INSTDIR\Settings\TOT\MarketPage\CSS" RMDir "$INSTDIR\Settings\TOT\MarketPage" RMDir "$INSTDIR\Settings\TOT\History" RMDir "$INSTDIR\Settings\TOT\Depth\NKT" RMDir "$INSTDIR\Settings\TOT\Depth\AURI B" RMDir "$INSTDIR\Settings\TOT\Depth" RMDir "$INSTDIR\Settings\TAS\YFeed" RMDir "$INSTDIR\Settings\TAS\TEST" RMDir "$INSTDIR\Settings\TAS\IQFeed" RMDir "$INSTDIR\Settings\TAS\INFRONT" RMDir "$INSTDIR\Settings\TAS\IBE" RMDir "$INSTDIR\Settings\TAS\IB" RMDir "$INSTDIR\Settings\TAS" RMDir "$INSTDIR\Settings\SymbolOverview" RMDir "$INSTDIR\Settings\SymbolLookupEx" RMDir "$INSTDIR\Settings\SymbolLookup" RMDir "$INSTDIR\Settings\ProviderNews" RMDir "$INSTDIR\Settings\OptionWindowPopup" RMDir "$INSTDIR\Settings\OptionWindow1" RMDir "$INSTDIR\Settings\OptionWindow" RMDir "$INSTDIR\Settings\ObjectTracer" RMDir "$INSTDIR\Settings\Object Tracer" RMDir "$INSTDIR\Settings\MDE" RMDir "$INSTDIR\Settings\MarketPage\TOT\CSS" RMDir "$INSTDIR\Settings\MarketPage\TEST\TEST MP" RMDir "$INSTDIR\Settings\MarketPage\TEST" RMDir "$INSTDIR\Settings\MarketPage\MICEX\MICEX" RMDir "$INSTDIR\Settings\MarketPage\MICEX" RMDir "$INSTDIR\Settings\MarketPage\INFRONT\WFX" RMDir "$INSTDIR\Settings\MarketPage\INFRONT\SSE" RMDir "$INSTDIR\Settings\MarketPage\INFRONT\ENB" RMDir "$INSTDIR\Settings\MarketPage\INFRONT\CSS" RMDir "$INSTDIR\Settings\MarketPage\INFRONT\CSB" RMDir "$INSTDIR\Settings\MarketPage\INFRONT" RMDir "$INSTDIR\Settings\MarketPage" RMDir "$INSTDIR\Settings\Log ControlBar" RMDir "$INSTDIR\Settings\LoadUnderlyingsEx" RMDir "$INSTDIR\Settings\LoadDerivativesEx" RMDir "$INSTDIR\Settings\HistoryTrends\YFeed" RMDir "$INSTDIR\Settings\HistoryGrid\YFeed" RMDir "$INSTDIR\Settings\HistoryGrid\TEST" RMDir "$INSTDIR\Settings\HistoryGrid\IQFeed" RMDir "$INSTDIR\Settings\HistoryGrid\INFRONT" RMDir "$INSTDIR\Settings\HistoryGrid\IBE" RMDir "$INSTDIR\Settings\HistoryGrid" RMDir "$INSTDIR\Settings\HistoryChart\YFeed" RMDir "$INSTDIR\Settings\HistoryChart\TEST" RMDir "$INSTDIR\Settings\HistoryChart\IQFeed" RMDir "$INSTDIR\Settings\HistoryChart\INFRONT" RMDir "$INSTDIR\Settings\HistoryChart" RMDir "$INSTDIR\Settings\History\YFeed" RMDir "$INSTDIR\Settings\History\TEST" RMDir "$INSTDIR\Settings\History\IQFeed" RMDir "$INSTDIR\Settings\History\INFRONT" RMDir "$INSTDIR\Settings\History\IBE" RMDir "$INSTDIR\Settings\History\IB" RMDir "$INSTDIR\Settings\History" RMDir "$INSTDIR\Settings\Gate Manager" RMDir "$INSTDIR\Settings\Forex\YFeed\Yahoo forex" RMDir "$INSTDIR\Settings\Forex\INFRONT\WFX" RMDir "$INSTDIR\Settings\Forex\INFRONT\WDE" RMDir "$INSTDIR\Settings\Forex\INFRONT\USD" RMDir "$INSTDIR\Settings\Forex\IBE\IB forex matrix" RMDir "$INSTDIR\Settings\Forex" RMDir "$INSTDIR\Settings\FORCE\MarketPage" RMDir "$INSTDIR\Settings\FastSymbolLookup" RMDir "$INSTDIR\Settings\DetailsSymbolLookup" RMDir "$INSTDIR\Settings\Desks\Settings\MDE" RMDir "$INSTDIR\Settings\Desks\Settings\Log ControlBar" RMDir "$INSTDIR\Settings\Desks\Settings\Gate Manager" RMDir "$INSTDIR\Settings\Desks\Settings\Desks" RMDir "$INSTDIR\Settings\Desks" RMDir "$INSTDIR\Settings\DerivativeLoaderPopup" RMDir "$INSTDIR\Settings\Depth\YFeed" RMDir "$INSTDIR\Settings\Depth\TEST" RMDir "$INSTDIR\Settings\Depth\MICEX" RMDir "$INSTDIR\Settings\Depth\IQFeed" RMDir "$INSTDIR\Settings\Depth\INFRONT" RMDir "$INSTDIR\Settings\Depth\IBE" RMDir "$INSTDIR\Settings\Depth\IB" RMDir "$INSTDIR\Settings\Depth" RMDir "$INSTDIR\Settings\DDE_PROP" RMDir "$INSTDIR\Settings\CompositePage" RMDir "$INSTDIR\RSS_DATA" RMDir "$INSTDIR\Resource\Themes" RMDir "$INSTDIR\Resource\Templates\Scripts" RMDir "$INSTDIR\Resource\Templates" RMDir "$INSTDIR\PM_DATA" RMDir "$INSTDIR\Internal_DATA" RMDir "$INSTDIR" RMDir "" DeleteRegKey ${PRODUCT_UNINST_ROOT_KEY} "${PRODUCT_UNINST_KEY}" DeleteRegKey HKLM "${PRODUCT_DIR_REGKEY}" SetAutoClose true SectionEnd