<P>Alessandro <BR>excelent thanks a lot, i try with the code in a bat file:</P>
<P><FONT color=#0000ff>C:<BR>cd "C:\Archivos de programa\PCGrADS\win32e"<BR>Grads -lc prueba.gs</FONT></P>
<P>in VBasic:<BR><FONT color=#0033cc>b = ShellExecute(Me.hwnd, "Open", "C:\Archivos de programa\PCGrADS\win32e\Grads.exe", "-lc prueba", "C:\Archivos de programa\PCGrADS\win32e\", 2)</FONT></P>
<P>and its works!!!</P>
<P>I have a new question, the script Prueba.gs has a function who takes a <FONT style="BACKGROUND-COLOR: #99ff00">parameter</FONT>, <BR>how i can rewrite the code, in my case i have a function who open a file and the name of the file is the parameter.<BR>i try adding the parameter like this <BR><FONT color=#0033cc>Grads -lc prueba.gs 22</FONT><BR>where 22.ctl is a file <BR>but it doesnt work.</P>
<P>sorry about the gramatical errors but the english is not my language!</P>
<P>i paste the code of the script Prueba.gs</P>
<P><FONT color=#ff0000>function prueba(args)<BR>* Only argument is the name of the file to open<BR>&nbsp; if (args!='') <BR>&nbsp;&nbsp;&nbsp; openfile=subwrd(args,1)<BR>&nbsp; endif<BR>* Add ".ctl" to the filename if it's not already there<BR>&nbsp; len&nbsp; = math_strlen(openfile)<BR>&nbsp; if (len &gt;= 4)<BR>&nbsp;&nbsp;&nbsp; tail = substr(openfile,len-3,4)<BR>&nbsp; else <BR>&nbsp;&nbsp;&nbsp; tail = openfile<BR>&nbsp; endif<BR>&nbsp; if (tail != '.ctl')<BR>&nbsp;&nbsp;&nbsp; openfile = openfile%'.ctl'<BR>&nbsp; endif<BR>&nbsp; 'open 'openfile<BR>&nbsp; 'set lat 97 211'<BR>&nbsp; 'set lon 82 100'<BR>&nbsp; 'set fwrite -le Fabiana.txt'<BR>&nbsp; 'set gxout fwrite'<BR>&nbsp; 'd prec'<BR>&nbsp; 'disable fwrite'</FONT></P>
<P>&nbsp;</P>