Hi folks,
Having some troubles with ActiveX controls. I tried with many of them as the "Spreadsheet" or the "Listview".. I add them to a form, go into VBA on a "form_load()" sub and try to use them. Problem is when I type their name and then use the "." to get their properties, I don't have properties related to the "class".
For example, for a spreadsheet, I should have stuff like "Cells" or "Columns", etc.. But nop, nothing that looks like that. What am I doing wrong? I used those ActiveX controls alot in Excel and never had any problems but it sounds like Access doesnt' like me. :banghead:
Thanks for your help.
Having some troubles with ActiveX controls. I tried with many of them as the "Spreadsheet" or the "Listview".. I add them to a form, go into VBA on a "form_load()" sub and try to use them. Problem is when I type their name and then use the "." to get their properties, I don't have properties related to the "class".
For example, for a spreadsheet, I should have stuff like "Cells" or "Columns", etc.. But nop, nothing that looks like that. What am I doing wrong? I used those ActiveX controls alot in Excel and never had any problems but it sounds like Access doesnt' like me. :banghead:
Code:
Private Sub Form_Load()
Me.Spreadsheet6....
End Sub
Thanks for your help.