Hi,
Does anybody knows if ASPOSE.Cells offers a equivalent method to this sintax?
I mean, manipulation of the QueryTables Collection?
Best Regards,
With ActiveSheet.QueryTables.Add(Connection:= _
"URL;http://acme.com/testTable.aspx", Destination:=Range( _
"$A$1"))
.Name = "test"
.FieldNames = True
.RowNumbers = False
.FillAdjacentFormulas = False
.PreserveFormatting = True
.RefreshOnFileOpen = False
.BackgroundQuery = True
.RefreshStyle = xlInsertDeleteCells
.SavePassword = False
.SaveData = True
.AdjustColumnWidth = True
.RefreshPeriod = 0
.WebSelectionType = xlAllTables
.WebFormatting = xlWebFormattingNone
.WebPreFormattedTextToColumns = True
.WebConsecutiveDelimitersAsOne = True
.WebSingleBlockTextImport = False
.WebDisableDateRecognition = False
.WebDisableRedirections = False
.Refresh BackgroundQuery:=False
End With
ChDir "C:\Users\geraldo\Documents\temp"