Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Send data from Excel to another program
#1
Hello.

I wanted to know if I could be of help for a problem that I have. Need to copy data that are in each of the cells excel and transfer to a program. The problem that the program does not allow copying and pasting, so I have to save the data in the cell in a variable and then in the program where I need this information, only send for the variable.

Somebody know how can I do this????

Thanks!!!

Regards Wink
#2
Macro Macro2720
Code:
Copy      Help
run "notepad.exe"; 0.5
spe 10
ExcelSheet es.Init
ARRAY(str) a
es.CellsToArray(a)
int r c nCol=a.len(1)
for r 0 a.len
,key (a[0 r])
,for(c 1 nCol) key " | " (a[c r])
,key Y


Forum Jump:


Users browsing this thread: 1 Guest(s)