08-06-2013, 11:41 PM
How can we Highlight the found text in Word document and notepad file by using WORD.APPLICATION or FSO.
|
Highlight the Found text in Word/notepad
|
|
08-06-2013, 11:41 PM
How can we Highlight the found text in Word document and notepad file by using WORD.APPLICATION or FSO.
10-09-2013, 09:00 PM
How to find which value is having link and which are all not having in Web table.
10-21-2013, 06:31 PM
Hi,
You can try the following code, Code: Set obj=Browser("creationtime:=0").page("title:=.*").WebTable(oWT).childobjects
cnt=obj.count
For i=0 to cnt-1
If obj(i).getroproperty("micclass")="Link" Then
msgbox "The foll object has link:- "obj(i).getroproperty("Name")
else
msgbox "The foll object does not has link:- "obj(i).getroproperty("Name")
End If
Next |
|
« Next Oldest | Next Newest »
|
| Possibly Related Threads… | |||||
| Thread | Author | Replies | Views | Last Post | |
| Check the word and get no. of times that word in the webpage | Sandeep.san229 | 0 | 1,925 |
10-31-2018, 06:42 PM Last Post: Sandeep.san229 |
|
| "Action was not found" error. What to do? | ttralor | 2 | 6,800 |
05-04-2017, 03:54 PM Last Post: Ankur |
|
| pageDown in word.application | wannel | 0 | 2,108 |
11-25-2016, 10:06 PM Last Post: wannel |
|
| Automating Word Docs | bart02 | 0 | 3,166 |
07-18-2014, 03:25 AM Last Post: bart02 |
|
| Can any of the line in notepad file be appended/updated/modified via QTP(VBScript)? | rookie_automator | 1 | 2,987 |
08-22-2013, 07:13 AM Last Post: basanth27 |
|