Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

modifying Relationships\msq66002.xml

Status
Not open for further replies.

colinh

Programmer
Jun 11, 2001
10
AU
When running MSQ660 under the view option I would like to added another drop down to start an excel connector.

The values on the drop down are controlled by the entries in the \Program Files\Mincom\Ellipse\WinView\Data\Relationships\msq66002.xml

I've added the following lines in the msq66002.xml

</Call>
<Call Nam="projectcommentary.xls" Arg="" Cap="Project Commentary" PopFlds="" OnMenu="True" MSOActn="XMIT-NORETURN">
</Call>

but it's not giving me the expected results.
The caption Project Commentary appears, but when I click the option it aborts.
What is the correct command to start an excel spreadsheet from the Relationships\msq66002.xml

Which manual contains documentation to modify the relationship entries ?

thanks
Colin
 
This is the answer :


<Call Nam="WIN32" Arg="LINK:I:\Program Files\Mincom\Ellipse\WinView\Data\Relationships\CRT_COMMENTARY.xls" Cap="Project Commentary" PopFlds="" OnMenu="True" MSOActn="XMIT-NORETURN">
</Call>

Also this is how to add a menu item to View menu item on the screen, here I have added the Work Order app to the screen.

</Call>
<Call Nam="WorkOrder" Arg="DetailObjectNew" Cap="Create Work Order" PopFlds="" OnMenu="True">
</Call>

regards
Colin
 
Status
Not open for further replies.

Similar threads

Part and Inventory Search

Sponsor

Back
Top