Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.



Mofi wrote:I'm really wondering that you need more than 50 templates. Do you really have 50 multi-line templates?

rhapdog wrote:You might wish to try gbCodeLib. It's free for non-commercial use, and only $30 to register for commercial use.
http://www.garybeene.com/gbware/gbcodelib.htm
I was just trying it out today, and it is a fair multi-language solution.

//PROC EXPORT alt ^X
var nameoffile = UltraEdit.activeDocument.path;
var DocName =(nameoffile.substring(nameoffile.lastIndexOf("\\")+1,nameoffile.lastIndexOf("\.")));
var proc = "PROC EXPORT DATA=";
var linefeed = " \r\n";
var line1 = proc+DocName+linefeed;
var line2 = " OUTFILE='"+DocName+".XLS' \r\n"
UltraEdit.activeDocument.write(line1);
UltraEdit.activeDocument.write(line2);
UltraEdit.activeDocument.write(" DBMS=excel REPLACE; \r\n")
UltraEdit.activeDocument.write(" run;")
//PROC EXPORT DATA=export
// OUTFILE='export.XLS'
// DBMS=excel REPLACE;
// run;