Difference between revisions of "LOAN IQ Technical - Add new menu item (into GUI client)"

From GUILLARD WIKI
Jump to navigation Jump to search
(Created page with "Go to your Loan Iq server on path C:/tomcat/client/ : <br>- Create new file named "ls2addin.ini" <syntaxhighlight lang="linux"> [Option Add-Ins] "In-House-YourText" = C:\prog1.bat "Calculator" = calc.exe </syntaxhighlight> - Create bat script named "prog1.bat" <syntaxhighlight lang="linux"> SET VAR_TEXT= -- Hello World -- START CMD /C "ECHO %VAR_TEXT%! && PAUSE" </syntaxhighlight>")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Go to your Loan Iq server on path C:/tomcat/client/  :  
Go to your Loan Iq server on path C:/serverLiq/clientLiq/  :  


<br>- Create new file named "ls2addin.ini"  
<br>- Create new file named "ls2addin.ini" into clientLiq path
<syntaxhighlight lang="linux">
<syntaxhighlight lang="linux">
[Option Add-Ins]
[Option Add-Ins]

Latest revision as of 09:03, 15 April 2022

Go to your Loan Iq server on path C:/serverLiq/clientLiq/  :


- Create new file named "ls2addin.ini" into clientLiq path

[Option Add-Ins]
"In-House-YourText" = C:\prog1.bat
"Calculator" = calc.exe

- Create bat script named "prog1.bat"

SET VAR_TEXT= -- Hello World -- 
START CMD /C "ECHO %VAR_TEXT%! && PAUSE"