hi,
is there someone know how to insert table from oracle forms 6i to MS WORD using OLE2 ?
for example I want a table which has a column header.
please see some of my code :
hSelection OLE2.LIST_TYPE;
hArgs OLE2.LIST_TYPE;
hTables OLE2.OBJ_TYPE;
hTable OLE2.OBJ_TYPE;
hColumns OLE2.OBJ_TYPE;
hColumn OLE2.OBJ_TYPE;
hCells OLE2.OBJ_TYPE;
hCell OLE2.OBJ_TYPE;
Begin
hTables := OLE2.GET_OBJ_PROPERTYhselection,'Table');
hArgs := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(hArgs, hTables);
hTable := OLE2.INVOKE_OBJ(hTables,'Item',hArgs);
OLE2.DESTROY_ARGLIST(hArgs);
end;
It's not complete because I don't know what's next :c
Please help me ....
Thanks in advance!
is there someone know how to insert table from oracle forms 6i to MS WORD using OLE2 ?
for example I want a table which has a column header.
please see some of my code :
hSelection OLE2.LIST_TYPE;
hArgs OLE2.LIST_TYPE;
hTables OLE2.OBJ_TYPE;
hTable OLE2.OBJ_TYPE;
hColumns OLE2.OBJ_TYPE;
hColumn OLE2.OBJ_TYPE;
hCells OLE2.OBJ_TYPE;
hCell OLE2.OBJ_TYPE;
Begin
hTables := OLE2.GET_OBJ_PROPERTYhselection,'Table');
hArgs := OLE2.CREATE_ARGLIST;
OLE2.ADD_ARG(hArgs, hTables);
hTable := OLE2.INVOKE_OBJ(hTables,'Item',hArgs);
OLE2.DESTROY_ARGLIST(hArgs);
end;
It's not complete because I don't know what's next :c
Please help me ....
Thanks in advance!