Custom Desktop Icon

Using Notepad (or other text editor) go to: c:\chartfilter (if this is the directory you created when you executed the desktop_icon.exe file) and open the file "client-equity.jnlp". In Notepad or other text editors change the "files of Type" to "All" to see the jnlp file.

In the <argument>username</argument> tag change "username" to your Username. Save.

<?xml version="1.0" encoding="UTF-8"?>

<!--
To enable logging run javaws on its own and set the logging options:
File menu, Preferences. Advanced tab.
-->

<jnlp spec="1.0+" codebase="http://www.chartfilter.com/ap">
<information>
<title>ChartFilter Stock Tools 2.0b</title>
<vendor>MHP Systems Inc.</vendor>
<homepage href="http://www.chartfilter.com"/>
<description>Stock Market Analysis</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.4"/>
<jar href="client.jar"/>
</resources>
<!-- etc/MANIFEST.MF defines class with main() -->
<application-desc>
<argument>http://www.chartfilter.com/ap</argument>
<argument>CLIENT_EQUITY</argument>
<argument>username</argument>
</application-desc>
</jnlp>