Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

particular line only

Status
Not open for further replies.

ram567

Programmer
Dec 28, 2007
123
US
Could you help me the below one. i dont know how to write it in EB CODE

the below code has copied everyhting in screen
but only copy the head line and contents only
could you guide me

iRows = sess.Screen.iRows
iCols = sess.Screen.iCols


for iCount = 1 to iRows
aline = sess.Screen.GetString(iCount, 1, iCols)
wb.WorkSheets("sheet1").Cells(iCount, 1).Value = aline
next iCount
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top