12-19-2013, 07:32 AM
Hello Angelo,
You cannot set a value against a method where you are fetching a value. That contradicts the methods operation intention.
You can store the value obtained in a variable as such,
If this works, you may read the below for your General Knowledge. If it throws an error stating the method is not supported you may want to try the below,
What is the type of the table object? I am presuming it to be a swftable?
Hope it helps.
You cannot set a value against a method where you are fetching a value. That contradicts the methods operation intention.
You can store the value obtained in a variable as such,
Code:
myVal = mySwfTable.GetCellData (2 , 2)
msgbox myVal
If this works, you may read the below for your General Knowledge. If it throws an error stating the method is not supported you may want to try the below,
What is the type of the table object? I am presuming it to be a swftable?
Code:
SwfTable(...).ActivateCell([RowNumber],"Audit Action")
mytext= SwfTable(...).GetNAProperty.("ActiveCell.Text")
msgbox mytext
Hope it helps.
Basanth
Give a fish to a man and you feed him for a day..Teach a man how to fish and you feed him for life.
Give a fish to a man and you feed him for a day..Teach a man how to fish and you feed him for life.