Hello,
I am trying to insert comoboxes in a excel sheet with this component. I found this component is capable to insert macros and visual components into a excel sheet created with XLSReadWrite. Is there a demo or src?
Thanks in advance
Fernando C
Mexico
Insert listbox in excel sheet
Hello,
I have found something in the help file.
This is what I do:
with XLS.Sheet[0].ControlsObjects.ComboBoxes.Add do begin
Left := 10;
Top := 10;
Width := 200;
Height := 40;
But in the excel sheet i get only the button of the listbox. I have tryed to set the control with some properties taken from the Macro made with the VB module in excel, but until now i get some errors.
Somebody can send me a clue about what i am doing wrong?
Best regards, and please forgive mistakes
Fernando C.
Mexico
I have found something in the help file.
This is what I do:
with XLS.Sheet[0].ControlsObjects.ComboBoxes.Add do begin
Left := 10;
Top := 10;
Width := 200;
Height := 40;
But in the excel sheet i get only the button of the listbox. I have tryed to set the control with some properties taken from the Macro made with the VB module in excel, but until now i get some errors.
Somebody can send me a clue about what i am doing wrong?
Best regards, and please forgive mistakes
Fernando C.
Mexico