Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Excel AutoFilter
#10
Or can be used IDispatch. Then you can omit all arguments. Excel and VBScript also use this, because variable type there is not specified, and then the default type for interface pointers is IDispatch.

Code:
Copy      Help
IDispatch a._getactive("Excel.Application")
a.ActiveSheet.Range("A1").AutoFilter

or

Code:
Copy      Help
ExcelSheet a.Init
IDispatch r=a.ws.Range("A1")
r.AutoFilter


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)