Skip to main content

Posts

Showing posts from 2017

Extracting the yellow highlighted text from Microsoft Word file using VBA

Function CS_ExtractHighlightedWords ( ) As Boolean Dim CS_objRange As Range Dim CS_NewDoc_Obj As Document Dim CS_CollectionObj As New Collection Set CS_objRange = Application . ActiveDocument . Range With CS_objRange . Find . Highlight = True Do While . Execute If CS_objRange . HighlightColorIndex = wdYellow Then On Error Resume Next CS_CollectionObj . Add CS_objRange . Text , CStr ( CS_objRange . Text ) 'Here we are avoiding the duplicate values to be stored in the collection using the key 'If any of the extracted word is being stored as duplicate key then program will through 457 error. On Error GoTo 0 End If Loop End With On Error Resume Next Set CS_NewDoc_Obj = Documents . Open ( FileName : = "F:\log.docx" , AddToRecentFiles : = ...

Kiddle: The Best Secure Search Engine for your kids

TechCS 1:   Smart kids are accessing Internet and parents are worrying about their Internet uses. Implementing parenting controls for internet uses couldn't satisfy them. Because they know, while browsing the internet some unwanted things may appears on the screen or in the search result which are not good for kid's age. Here,  Kiddle  have a solution for safe search. It is a kid safe visual search engine. Just set the  http://www.kiddle.co/  as homepage of the kid's computer. kiddle provides different search options including the usual  web, images, news and videos. Since Kiddle results are either handpicked and checked by Kiddle editors or filtered by Google safe search. You will get kid-oriented results without any explicit content. The search results are not as cluttered, and come well-spaced with a bigger font, easier for kids to read. In case some bad words are present in a search keyword, Kiddle's guard robot will block the ...