Skip to Main Content
Spotfire Ideas Portal
Status Future Consideration
Product Spotfire
Created by Guest
Created on Jan 27, 2025

ability to open Spotfire.Dxp.Main.dll.config in text editor

Please add ability to open Spotfire.Dxp.Main.dll.config in text editor.


Sometimes we need to suggest our customers to modify this file to change some settings.


This file can be found in various locations, so it's difficult to figure out which one is used actually.


PS, below IronPython script can do the trick.


from System.Diagnostics import *

from System.IO import Directory, Path

path=Directory.GetCurrentDirectory()

file=Path.Combine(path,"Spotfire.Dxp.Main.dll.config")

print file

Document.Properties['config']=file

p = Process()

p.StartInfo.FileName = "C:/Windows/notepad.exe"

p.StartInfo.Arguments = file

p.Start()


  • Attach files
      Drop here to upload