is there any way I could open an office document (Word, excel) with the cursor position at a specific string that is given as input ?
The requirement is part of a search and replace functionality and the client would like to open a document with the cursor positioned at the first occurrence of the search term. Highlighting it as well if possible. I have tried researching for this, but didn't find any helpful resources.
We are using Aspose and the Component Object Model (COM)
Help would be much appreciated!
It is possible to search text using Aspose.Words and Aspose.Cells. You can also highlight the searched term in the search results. For example you can search in an excel document using Worksheet.Cells.Find() method. Once cell is found, it could be highlighted with any color using Cell.SetStyle() method. Please visit the following links for details on how to search and highlight text using Aspose.Words and Aspose.Cells:
Aspose.Words: How to Find and Highlight Text
Aspose.Cells: Find or Search Data
Aspose.Cells: Setting Colors and Background Patterns
I work with Aspose as Developer evangelist.
Related
When I use ctrl+F to find WLR2~LW~VBD_MPN, it does not show up.
Using a simple example, ctrl+F finds words like cwfwf and qwdqw.
WLR2~LW~VBD_MPN can be found on other software—including other Office products—such as Microsoft Word.
I tried ticking/unticking options like match case and match entire cell contents as well as also other options (within/search/lookin).
What can be done to find a word like WLR2~LW~VBD_MPN?
Further clarification: WLR2~LW~VBD_MPN is not created by any formulas.
In my website i use the seajax pivot viewer to view a large amount of images. So to not search endlessly long for the picture i need i usually use the search box in the view to filter on a specific property of my collection. Now when i press enter it works perfectly and it filters my collection. I could however be possible that multiple properties have the same value so to further filter my search i use the filters beneath the search box. This also works fine.
Now for my question: Is it possible to open such a filterbox after i press enter, so that the specific values for a certain property are shown?
I already took a look at it and i belief that i need to do it in the pivot viewer js, however i cannot find the right way to do it. I could not find anything on stackoverflow about it.
Thank you in advance.
I want to add dictionary on powerpoint 2013.I searched and found "adding custom.dic files" for a solution but it is too pointless to create word files which includes all english words with their meaining in my native language.
Is there any ready to use way to do that ?
I want to have a dictionary like in mozilla firefox dictionary add-on (when you point a word with the mouse cursor,a pop-up box appears and shows the selected word with their meaning in your language like english to french translation)
Any help will be appreciated!
This functionality already exists (at least in PowerPoint 2010). Position your cursor in the middle of a word (or select it) and right click. Translate is one of the options. The following shows what I got when doing so while the curoosr is positioned in Walls:
I'm trying to find a way to make Google Spreadsheet wrap a link, and showing the content in many lines, just like microsoft excel works:
I've found nothing so far on how to implement this, which should be used very often I believe.
Here's how the same excel works imported to Google Spreadsheet:
In the google spreadsheet I selected "Wrap text" but it only wraps it, hiding the overflow of it, however I can't see the whole link.
Any help is greately appreciated.
If you don't mind modifying the contents of the cell in order to display wrapped text, you could use an additional column with a formula like this to insert spaces after certain characters so that the url can wrap:
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(B1,"&","& "),"/","/ "),"?","? "),"#","# ")
You should keep the original URL around though, since the resulting value will no longer be a valid URL.
Google Spreadsheets only wraps text where there is white space or hyphens. It will not wrap in the middle of a word the way Excel does. There's no way around this I'm afraid.
In my SharePoint site I have a list wich has a column that contains rich text in it. (i.e text with bold, color and italic style).
Now when user perform search, If the search key word match with the data in rich text column it will show that record as a search result which is perfect.
But the result in search result page show that text in plain format and my requirement is to show that result along with its formating i.e with bold and italic style.
Can any one tell me how to achieve this...!
Thanks
Sachin !
You need to implement custom search result page. Example here.