This example assumes that the data are delimited with '**'
FOR EACH customer.
run sr('**nombre**',customer.name).
run sr('**direccion**',customer.address).
END.
Procedure sr.
DEFINE INPUT PARAMETER busca AS CHAR.
DEFINE INPUT PARAMETER cambia AS CHAR...
The problem may be the shapes's name due the language. I use spanish
chWorkbook:ActiveSheet:Shapes:range("Gráfico 2"):TOP = 12.5 * (delta + 1).
chWorkbook:ActiveSheet:Shapes:range("Gráfico 2"):LEFT = 320.
chWorkbook:ActiveSheet:Shapes:range("Gráfico 2"):WIDTH = 250...
To save use one
chExcelApplication:activeWorkBook:SaveAs('c:\XDir\wrk.csv', 24,,,,,).
chExcelApplication:activeWorkBook:SaveAs('c:\XDir\wrk.xls', -4143 ,,,,,).
/* Full example */
DEFINE variable chExcelApplication AS COM-HANDLE.
DEFINE variable chWorkbook AS COM-HANDLE.
DEFINE variable chWorksheet AS COM-HANDLE.
DEFINE variable chChart AS COM-HANDLE.
CREATE "Excel.Application" chExcelApplication...
Hi
This trigger in the usuario table controls the 3rd character.
TRIGGER PROCEDURE FOR CREATE OF usuario.
IF NOT(SUBSTRING(idproy,3,1) >= 'A' and SUBSTRING(idproy,3,1) <= 'I) THEN
RETURN ERROR.
Hi.
1.- May be you have a normalization problem.
For this validation I use a table (proyect in this case and containing proyects) and the validation is
CAN-FIND(proyect OF usuario)
2.- The format of your field reduces your validation code.
You can use in the format field XXX-999999
If...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.