Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~11.5K People Reached
Favorite Forums

2 Posted Topics

Member Avatar for SeekAnswers

I use VBscript: [code=VBScript]<script language="VBScript" type="text/vbscript" > Sub ToExcel strCopy = MyTable.InnerHTML document.parentwindow.clipboardData.SetData "text", strCopy Set objExcel = CreateObject("Excel.Application") objExcel.Visible = True Set objWorkbook = objExcel.Workbooks.Add() Set objWorksheet = objWorkbook.Worksheets(1) objWorksheet.Paste objWorksheet.Rows(1).delete objWorksheet.Cells.ColumnWidth = 20 objWorksheet.Cells.EntireColumn.AutoFit objWorksheet.Cells.AutoFilter objWorksheet.Cells.EntireRow.AutoFit objWorksheet.Cells(1, 1).Select Hyperlinks.Delete For i=1 to 1000 objWorksheet.Cells(1, i).Select Selection.Hyperlinks.Delete objWorksheet.Range(4, i).Select …

Member Avatar for tughralkhan
0
11K
Member Avatar for sesame

Hi Everyone, Any help on this issue would be greatly appreciated. I have an ASP page with Javascript that obtains input from the web page. For example: [url]www.google.com/?test[/url] would result in test as the search string. I then populate an ASP textbox with this string and either click a button …

Member Avatar for agrothe
0
90

The End.