12-31-2008, 11:35 AM
How to get methods available for application which is opened by using createobject function...
e.g.
here I used some methods available for Excel,
How to get methods for different applications like, Access, Word, Outlook....etc?
e.g.
Code:
dim xl
set xl=createobject("excel.application")
xl.visible=true
xl.[b]workbooks[/b].add
'xl.[b]workbooks.[/b]open "path of the file"
xl.[b]sheets[/b]("[i]Sheetid[/i]").select
val=xl.[b]cells[/b](row,column).value
print val
xl.quit
set xl=nothing
here I used some methods available for Excel,
How to get methods for different applications like, Access, Word, Outlook....etc?