Tell me Logic for search for duplicate words(or strings) in a large file.

Search for duplicate words (or strings) in a text file containing one word per line. For each word that occurs more than once in the flat file output should be as follows
<word> <number of occurrences> <line numbers in the file where the word occurs>
For example, if the word Hello occurs thrice in a file at lines 100, 178 and 3456 the output should read
Hello, 3, [100, 178, 3456]

Incidentally i wrote similar code some days back. You need to do some modifications to get the exact output you want, but i hope it will be of some help.
One more thing its written using JAVA5
public class Test
     private static final String COLLECTIONS_TEXT = "C:\\Documents and Settings\\amrainder\\Desktop\\Collections.txt";
     public static void main(String[] args) throws IOException
          findDuplicateWords();
     private static void findDuplicateWords() throws IOException
          Collection<String> words = new LinkedHashSet<String>();
          File file = new File(COLLECTIONS_TEXT);
          StreamTokenizer streamTokenizer = new StreamTokenizer(new FileReader(file));
          int token = streamTokenizer.nextToken();
          while(token != StreamTokenizer.TT_EOF)
               if(token == StreamTokenizer.TT_WORD)
                    words.add(streamTokenizer.sval);
               token = streamTokenizer.nextToken();
          System.out.println(words);
}Cheers,
Amrainder

Similar Messages

  • I need autocomplete  for search for words in a txt. file

    i am not so good in java.
    I have a running code for search in text with a txt. file (from user bluefox815).
    But I need a solution with autocomplete for search for words in a txt. file.
    test_file.txt (Teil des Inhaltes):
    Roboter robots
    Mechatronik mechatronics
    and so on
    Can you help me please.
    Here is the code:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    * this program searches for a string in a text file and
    * says which line it found the string on
    public class SearchText implements ActionListener {
    private String filename = "test_file.txt";
    private JFrame frame;
    private JTextField searchField;
    private JButton searchButton;
    private JLabel lineLabel;
    private String searchFor;
    private BufferedReader in;
    public SearchText() {
    frame = new JFrame("SearchText");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    searchField = new JTextField(80);
    searchButton = new JButton("Search");
    // this is used later in our actionPerformed method
    searchButton.setActionCommand("search");
    // this sets the action listener for searchButton, which is the current class
    // because this class implements ActionListener
    searchButton.addActionListener(this);
    lineLabel = new JLabel("nach dem Fachbegriff suchen");
    public void createGUI() {
    JPanel topPanel = new JPanel();
    topPanel.setLayout(new BoxLayout(topPanel, BoxLayout.X_AXIS));
    JPanel bottomPanel = new JPanel();
    JPanel mainPanel = new JPanel();
    mainPanel.setLayout(new BoxLayout(mainPanel, BoxLayout.Y_AXIS));
    topPanel.add(searchField);
    topPanel.add(searchButton);
    bottomPanel.add(lineLabel);
    mainPanel.add(topPanel);
    mainPanel.add(bottomPanel);
    frame.getContentPane().add(mainPanel);
    frame.pack();
    frame.setVisible(true);
    public void actionPerformed(ActionEvent e) {
    // now we get the action command and if it is search, then it is the button
    if ("search".equals(e.getActionCommand())) {
    searchFor = searchField.getText();
    searchTheText();
    private void searchTheText() {
    // I initialize the buffered reader here so that every time the user searches
    // then the reader will start at the beginning, instead of where it left off last time
    try {
    in = new BufferedReader(new FileReader(new File(filename)));
    } catch (IOException e) {
    String lineContent = null;
    int currentLine = 0;
    // this will be set to true if the string was found
    boolean foundString = false;
    while (true) {
    currentLine++;
    // get a line of text from the file
    try {
    lineContent = in.readLine();
    } catch (IOException e) {
    break;
    // checks to see if the file ended (in.readLine() returns null if the end is reached)
    if (lineContent == null) {
    break;
    if (lineContent.indexOf(searchFor) == -1) {
    continue;
    } else {
    lineLabel.setText(String.valueOf(lineContent));
    foundString = true;
    break;
    if (!foundString)
    lineLabel.setText("Es kann kein Fachbegriff gefunden werden.");
    try {
    in.close();
    } catch (IOException ioe) {
    public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    new SearchText().createGUI();
    }

    Markus1 wrote:
    But I need a solution with autocomplete for search for words in a txt. file.What is your question? What have you tried so far? What are you having difficulty with?
    Mel

  • JSP/Servlet code for searching for Domain availability

    Hi Guys
    I am giving a service on my homesite which will search for the domain availability. Users will enter the domain name and the code should check whether the domain is already taken or it is available for registration
    Please help me out.

    Nah, I don't have one myself. WHOIS can work but only for .org, .net and .com (and a few others here and there.) In that case, all you'd have to do is run the command, and look for the text which says it isn't registered..
    trejkaz@carroll:~> whois gnifodgjidfo.com
    [whois.crsnic.net]
    Whois Server Version 1.3
    Domain names in the .com, .net, and .org domains can now be registered
    with many different competing registrars. Go to http://www.internic.net
    for detailed information.
    No match for "GNIFODGJIDFO.COM".
    Last update of whois database: Sun, 25 Nov 2001 16:58:31 EST <<<The Registry database contains ONLY .COM, .NET, .ORG, .EDU domains and
    Registrars.

  • Utility VI for searching for the occurance of a string in all files in a directory

    Is anyone aware of a utility VI that can search for a string(s) in all
    file types such as doc, xls, ppt etc in a specified directory?

    Greetings,
    I'm having an issue (using 8.5) with a directory read in. I've attached my elementary VI. Basically I want to read in mutliple files (they will be the same array size), and analyze each file. I am confident I will be able to analyze the data as necessary, I'm just having a problem parsing the data. Verbally I know exactly what I need to do just doesn't seem to be working in labview. Reading in the directory isn't the hard part, but breaking up the 2D data into the number of files I have apparently is for me. 
    1. Read in (user defined) directory
    2. List the file names | # of files in the directory
    3. Perform MAX value and % analysis of data on AMP array 
    Any help would be greatly appreciated. Even if it's just verbally pointing me in the right direction. I've attached the VI and 3 example data files I read in.
    Thanks in advance...I really feel like I should know this one, but I usually deal in individual files, this is my first directory read.
    Best Regards,
    Chazzzmd 
    Attachments:
    labview text upload.zip ‏33 KB

  • Search does not find text string in a PDF file

    Some of the PDFs on my company's website have text that does not come up in a search of the PDF. You can see the text on the page, but it's ignored in a search. When I open the PDF and use the Select tool to copy the six-character string, then paste it into the Search field of the open PDF, the string pastes into the Search window as open boxes. While that might explain why the string is not found in the search, I'm confused about why the characters are correct on the PDF page, but not after they are copied and pasted.
    Here is an example: Search for this word in the attached PDF file:
    control
    The search will miss the first occurrence of Control in the first bullet on the page.

    Most of the fonts are embedded (except 1), but that does not mean you can search them as mentioned. The simplest way to avoid the problem is to go back to more standard fonts, like Arial, Courier, Times New Roman, and such. You may still have a problem with MAC users where they have Helvetical and Times Roman as standard. However, most of the common fonts have the same character associations and it is likely not a problem.

  • Looking for search engine-like word matching

    I wonder if there's any package that can do word matching along the lines of search engines.
    Let's say I have two ArrayLists of Strings:
    'keywords' containing the Strings to search: "one", "two" and "three"
    'match' containing the search criteria.
    If 'match' contained "one" then the method would return 'true'. If 'match' contained "seven", the method would return 'false'.
    Not really difficult, but the search engine syntax specifies the following:
    Keywords that begin with "+" are mandatory
    Keywords that begin with "-" must not be found
    Keywords without prefix may be found
    E.g. "+one", "+two" would return 'true', but "+one", "+four" would return 'false'. "+one", "four" would return 'true', since "four" doesn't have to be found. "+one", "+four" would return 'false', since "one" was found, but "four" was not. "-four" would return 'true', since "four" isn't part of the Strings to search. etc. etc. etc.
    Does anyone know where to find a package that does this?
    Regards,
    Eric

    Well, why write something if someone else has already done it? :-)
    As for the searching of "four": Keywords that have a "+" or no prefix must be matched, so it returns 'false'. So it only returns 'true' if the list contains "four".
    The whole point of the "+" is that if you have several keywords, the ones with "+" are mandatory, the ones without aren't.
    So "+one", "+two" means "one" AND "two", whereas "one", "two" means "one" OR "two".

  • Acrobat pdfmaker com addin for word 2010 crashes when processing large files

    I am trying to use the pdfmaker com addin for word 2010 to create a PDF document. Whenever I try and create the document, the acrobat addin crashes word.
    I attempted to perform this on both an x86 and x64 machine and it failed both times at around the approximately same point (during/immediately after determining the bookmarks).
    The document is large (862 pages, 2425 bookmarks, 311 300dpi graphics, for a total file size of 49.2MiB)
    I can generate the PDF by just printing, but the whole point of using the pdfmaker is so that we don't have to perform 2.5K of manual cross-links.
    Machine information:
    Windows 7 (x64) SP1
    Office 2010 (x64) 14.0.6112.5000
    Acrobat X Pro (x86) 10.1.3
    Crash Report:
    Version=1
    EventType=APPCRASH
    EventTime=129853934132967189
    ReportType=2
    Consent=1
    UploadTime=129853934134215189
    ReportIdentifier=4e4f5b16-c16a-11e1-ae3f-5c260a5c33cf
    IntegratorReportIdentifier=4e4f5b15-c16a-11e1-ae3f-5c260a5c33cf
    Response.BucketId=41559749
    Response.BucketTable=4
    Response.type=4
    Sig[0].Name=Application Name
    Sig[0].Value=WINWORD.EXE
    Sig[1].Name=Application Version
    Sig[1].Value=14.0.6024.1000
    Sig[2].Name=Application Timestamp
    Sig[2].Value=4d83e2f6
    Sig[3].Name=Fault Module Name
    Sig[3].Value=wwlib.dll
    Sig[4].Name=Fault Module Version
    Sig[4].Value=14.0.6024.1000
    Sig[5].Name=Fault Module Timestamp
    Sig[5].Value=4d83e39e
    Sig[6].Name=Exception Code
    Sig[6].Value=c0000005
    Sig[7].Name=Exception Offset
    Sig[7].Value=000000000031b4aa
    DynamicSig[1].Name=OS Version
    DynamicSig[1].Value=6.1.7601.2.1.0.256.48
    DynamicSig[2].Name=Locale ID
    DynamicSig[2].Value=1033
    UI[2]=C:\Program Files\Microsoft Office\Office14\WINWORD.EXE
    UI[3]=Microsoft Word has stopped working
    UI[4]=Windows can check online for a solution to the problem and try to recover your information and restart the program.
    UI[5]=Check online for a solution and restart the program
    UI[6]=Check online for a solution later and close the program
    UI[7]=Close the program
    LoadedModule[0]=C:\Program Files\Microsoft Office\Office14\WINWORD.EXE
    LoadedModule[1]=C:\Windows\SYSTEM32\ntdll.dll
    LoadedModule[2]=C:\Windows\system32\kernel32.dll
    LoadedModule[3]=C:\Windows\system32\KERNELBASE.dll
    LoadedModule[4]=C:\Windows\system32\ADVAPI32.dll
    LoadedModule[5]=C:\Windows\system32\msvcrt.dll
    LoadedModule[6]=C:\Windows\SYSTEM32\sechost.dll
    LoadedModule[7]=C:\Windows\system32\RPCRT4.dll
    LoadedModule[8]=C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.6161 _none_08e61857a83bc251\MSVCR90.dll
    LoadedModule[9]=C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df _5.82.7601.17514_none_a4d6a923711520a9\Comctl32.dll
    LoadedModule[10]=C:\Windows\system32\GDI32.dll
    LoadedModule[11]=C:\Windows\system32\USER32.dll
    LoadedModule[12]=C:\Windows\system32\LPK.dll
    LoadedModule[13]=C:\Windows\system32\USP10.dll
    LoadedModule[14]=C:\Windows\system32\IMM32.DLL
    LoadedModule[15]=C:\Windows\system32\MSCTF.dll
    LoadedModule[16]=C:\Windows\system32\nvinitx.dll
    LoadedModule[17]=C:\Program Files\NVIDIA Corporation\CoProcManager\_etoured.dll
    LoadedModule[18]=C:\Program Files\NVIDIA Corporation\CoProcManager\nvd3d9wrapx.dll
    LoadedModule[19]=C:\Windows\system32\SETUPAPI.dll
    LoadedModule[20]=C:\Windows\system32\CFGMGR32.dll
    LoadedModule[21]=C:\Windows\system32\OLEAUT32.dll
    LoadedModule[22]=C:\Windows\system32\ole32.dll
    LoadedModule[23]=C:\Windows\system32\DEVOBJ.dll
    LoadedModule[24]=C:\Program Files\NVIDIA Corporation\CoProcManager\nvdxgiwrapx.dll
    LoadedModule[25]=C:\Program Files\Microsoft Office\Office14\wwlib.dll
    LoadedModule[26]=C:\Program Files\Microsoft Office\Office14\gfx.dll
    LoadedModule[27]=C:\Windows\system32\WTSAPI32.dll
    LoadedModule[28]=C:\Windows\system32\MSIMG32.dll
    LoadedModule[29]=C:\Program Files\Microsoft Office\Office14\oart.dll
    LoadedModule[30]=C:\Program Files\Common Files\Microsoft Shared\office14\mso.dll
    LoadedModule[31]=C:\Windows\system32\msi.dll
    LoadedModule[32]=C:\Windows\system32\SHLWAPI.dll
    LoadedModule[33]=C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1d f_6.0.7601.17514_none_fa396087175ac9ac\Comctl32.dll
    LoadedModule[34]=C:\Program Files\Common Files\Microsoft Shared\office14\Cultures\office.odf
    LoadedModule[35]=C:\Windows\system32\VERSION.DLL
    LoadedModule[36]=C:\Windows\system32\uxtheme.dll
    LoadedModule[37]=C:\Windows\system32\dwmapi.dll
    LoadedModule[38]=C:\Windows\system32\CRYPTBASE.dll
    LoadedModule[39]=C:\Windows\system32\CLBCatQ.DLL
    LoadedModule[40]=C:\Program Files\Microsoft Office\Office14\1033\wwintl.dll
    LoadedModule[41]=C:\Program Files\Common Files\Microsoft Shared\office14\1033\MSOINTL.DLL
    LoadedModule[42]=C:\Program Files\Common Files\Microsoft Shared\office14\MSORES.DLL
    LoadedModule[43]=C:\Program Files\Common Files\Microsoft Shared\OFFICE14\MSPTLS.DLL
    LoadedModule[44]=C:\Program Files\Common Files\Microsoft Shared\office14\riched20.dll
    LoadedModule[45]=C:\Windows\system32\mscoree.dll
    LoadedModule[46]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll
    LoadedModule[47]=C:\Program Files\Common Files\Microsoft Shared\OfficeSoftwareProtectionPlatform\OSPPC.DLL
    LoadedModule[48]=C:\Windows\system32\Winspool.DRV
    LoadedModule[49]=C:\Windows\system32\SHELL32.DLL
    LoadedModule[50]=C:\Windows\system32\propsys.dll
    LoadedModule[51]=C:\Windows\system32\ntmarta.dll
    LoadedModule[52]=C:\Windows\system32\WLDAP32.dll
    LoadedModule[53]=C:\Windows\system32\CRYPTSP.dll
    LoadedModule[54]=C:\Windows\system32\rsaenh.dll
    LoadedModule[55]=C:\Windows\system32\RpcRtRemote.dll
    LoadedModule[56]=C:\Windows\System32\msxml6.dll
    LoadedModule[57]=C:\Windows\system32\profapi.dll
    LoadedModule[58]=C:\Windows\system32\SXS.DLL
    LoadedModule[59]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorwks.dll
    LoadedModule[60]=C:\Windows\WinSxS\amd64_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.619 5_none_88e41e092fab0294\MSVCR80.dll
    LoadedModule[61]=C:\Windows\assembly\NativeImages_v2.0.50727_64\mscorlib\f73f0a9c9a83dcd3f f428be509a7992f\mscorlib.ni.dll
    LoadedModule[62]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorsec.dll
    LoadedModule[63]=C:\Windows\system32\WINTRUST.dll
    LoadedModule[64]=C:\Windows\system32\CRYPT32.dll
    LoadedModule[65]=C:\Windows\system32\MSASN1.dll
    LoadedModule[66]=C:\Windows\system32\imagehlp.dll
    LoadedModule[67]=C:\Windows\system32\ncrypt.dll
    LoadedModule[68]=C:\Windows\system32\bcrypt.dll
    LoadedModule[69]=C:\Windows\system32\bcryptprimitives.dll
    LoadedModule[70]=C:\Windows\system32\USERENV.dll
    LoadedModule[71]=C:\Windows\system32\GPAPI.dll
    LoadedModule[72]=C:\Windows\system32\cryptnet.dll
    LoadedModule[73]=C:\Windows\system32\SensApi.dll
    LoadedModule[74]=C:\Program Files\Microsoft Mathematics Add-in\2.0\Word\Microsoft.Education.Word.MathExtension.dll
    LoadedModule[75]=C:\Windows\assembly\GAC\Extensibility\7.0.3300.0__b03f5f7f11d50a3a\Extens ibility.dll
    LoadedModule[76]=C:\Windows\assembly\GAC_MSIL\office\14.0.0.0__71e9bce111e9429c\office.dll
    LoadedModule[77]=C:\Windows\Microsoft.NET\Framework64\v2.0.50727\mscorjit.dll
    LoadedModule[78]=C:\Program Files\Microsoft Mathematics Add-in\2.0\Word\Microsoft.Education.Mathematics.Common.dll
    LoadedModule[79]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System\c40ec0f4cd203c88029 8f94c0427dd54\System.ni.dll
    LoadedModule[80]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System.Drawing\222eb8aa336 953a6b0216db2b0c4770d\System.Drawing.ni.dll
    LoadedModule[81]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System.Windows.Forms\dc5bb 74eefdbf954cdfb70dd534d5564\System.Windows.Forms.ni.dll
    LoadedModule[82]=C:\Windows\assembly\GAC_MSIL\Microsoft.Office.Interop.Word\14.0.0.0__71e9 bce111e9429c\Microsoft.Office.Interop.Word.dll
    LoadedModule[83]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System.Configuration\193d0 3ca60573c92f92d9b07fa5bc243\System.Configuration.ni.dll
    LoadedModule[84]=C:\Windows\assembly\NativeImages_v2.0.50727_64\System.Xml\24d1b7ccbedaa36 02bae6a6acea9929e\System.Xml.ni.dll
    LoadedModule[85]=C:\Program Files\Microsoft Mathematics Add-in\2.0\Word\MathControls.dll
    LoadedModule[86]=C:\Program Files\Microsoft Mathematics Add-in\2.0\Word\MathEngine.dll
    LoadedModule[87]=C:\Program Files\Microsoft Mathematics Add-in\2.0\Shared\sqmapi.dll
    LoadedModule[88]=C:\Windows\system32\shfolder.dll
    LoadedModule[89]=C:\Program Files\Microsoft Mathematics Add-in\2.0\Shared\MathRichEditNative.Dll
    LoadedModule[90]=C:\Program Files\Microsoft Mathematics Add-in\2.0\Shared\mathenginen.dll
    LoadedModule[91]=C:\Program Files\Microsoft Mathematics Add-in\2.0\Word\MathResources.dll
    LoadedModule[92]=c:\Program Files\Common Files\Microsoft Shared\VSTO\vstoee.dll
    LoadedModule[93]=C:\Windows\system32\urlmon.dll
    LoadedModule[94]=C:\Windows\system32\iertutil.dll
    LoadedModule[95]=C:\Windows\system32\WININET.dll
    LoadedModule[96]=C:\Windows\system32\Normaliz.dll
    LoadedModule[97]=c:\Program Files\Common Files\Microsoft Shared\VSTO\10.0\VSTOLoader.dll
    LoadedModule[98]=C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.616 1_none_08e61857a83bc251\MSVCP90.dll
    LoadedModule[99]=C:\Windows\system32\oledlg.dll
    LoadedModule[100]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll
    LoadedModule[101]=C:\Windows\system32\MSVCR110_CLR0400.dll
    LoadedModule[102]=C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\ec4aeb1a93320223 07604cba8284778b\mscorlib.ni.dll
    LoadedModule[103]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System\52974bd8d9753cf71a 27181621dcf4eb\System.ni.dll
    LoadedModule[104]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Core\a4252f50e54a5 d2987e41709da9a117a\System.Core.ni.dll
    LoadedModule[105]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.V28a60cc2#\f165 482199ea49be235ec53ad93e6889\Microsoft.VisualStudio.Tools.Office.Runtime.ni.dll
    LoadedModule[106]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.O5949707a#\6d99 2851fc846eac2e388d2348711376\Microsoft.Office.Tools.ni.dll
    LoadedModule[107]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.V883708cb#\bc02 fe4c18b7e176e9bee4c72ff4cb32\Microsoft.VisualStudio.Tools.Applications.Runtime.ni.dll
    LoadedModule[108]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.V1955d7fd#\cc04 39da7e5347e89d6586ce262c1f69\Microsoft.VisualStudio.Tools.Applications.ServerDocument.ni.d ll
    LoadedModule[109]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.Vf9a08577#\86f6 f20538156d2008fff97542e09765\Microsoft.VisualStudio.Tools.Applications.Hosting.ni.dll
    LoadedModule[110]=C:\Windows\system32\Secur32.dll
    LoadedModule[111]=C:\Windows\system32\SSPICLI.DLL
    LoadedModule[112]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Drawing\1204d7ae7e 0e637669e244a02b97983b\System.Drawing.ni.dll
    LoadedModule[113]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Windows.Forms\d7d8 56d242ddc80d696aa425195e5252\System.Windows.Forms.ni.dll
    LoadedModule[114]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\nlssorting.dll
    LoadedModule[115]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Deployment\475303e 370c565f47cd7d159485f24d9\System.Deployment.ni.dll
    LoadedModule[116]=C:\Windows\system32\dfshim.dll
    LoadedModule[117]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Configuration\0523 c17527d811bdc9606a0c62145f3d\System.Configuration.ni.dll
    LoadedModule[118]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml\771d4e20776373 ee95d2058b4d3f20a8\System.Xml.ni.dll
    LoadedModule[119]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Security\819aca5f3 26d35ce5f478c20366d0f5c\System.Security.ni.dll
    LoadedModule[120]=C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml.Linq\76b84571f 4497227f40c72e246939ac0\System.Xml.Linq.ni.dll
    LoadedModule[121]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.Oab3f8ec6#\0a3a f5db2975c482e98e96c99bb938af\Microsoft.Office.Tools.Word.Implementation.ni.dll
    LoadedModule[122]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.O4a946565#\a550 db8b700051717681470a0b2b07d3\Microsoft.Office.Tools.Common.Implementation.ni.dll
    LoadedModule[123]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.O854200f9#\a3df 0bec1a202ce176b839f788d40f44\Microsoft.Office.Tools.Common.ni.dll
    LoadedModule[124]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.Oeab01fba#\9d47 6070258253869ff6ca2201f33b54\Microsoft.Office.Tools.Word.ni.dll
    LoadedModule[125]=C:\Windows\assembly\NativeImages_v4.0.30319_64\Microsoft.O2eb0cc9a#\3994 dd35eb969eb2221f1886598f08cc\Microsoft.Office.Tools.v4.0.Framework.ni.dll
    LoadedModule[126]=C:\Users\kking\AppData\Local\assembly\dl3\D5O6KVBP.4TZ\YDKV3YJ1.QPK\2fd1 b7b3\d265be4b_e524cd01\PCREFindAddIn.DLL
    LoadedModule[127]=C:\Users\kking\AppData\Local\assembly\dl3\D5O6KVBP.4TZ\YDKV3YJ1.QPK\21e1 fe8e\00b3e430_67b7cb01\Microsoft.Office.Tools.Common.v4.0.Utilities.DLL
    LoadedModule[128]=C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll
    LoadedModule[129]=C:\Program Files (x86)\Adobe\Acrobat 10.0\PDFMaker\Office\x64\PDFMOfficeAddin.dll
    LoadedModule[130]=C:\Program Files (x86)\Microsoft Visual Studio 10.0\Visual Studio Tools for Office\x64\VSTOWordAdaptor.dll
    LoadedModule[131]=C:\Windows\system32\MSVCR100.dll
    LoadedModule[132]=C:\Program Files (x86)\Microsoft Visual Studio 11.0\Visual Studio Tools for Office\x64\VSTOWordAdaptor.dll
    LoadedModule[133]=C:\Windows\system32\MSVCR110.dll
    LoadedModule[134]=C:\Program Files\Common Files\Microsoft Shared\OFFICE14\USP10.DLL
    LoadedModule[135]=C:\PROGRA~1\COMMON~1\MICROS~1\VBA\VBA7\VBE7.DLL
    LoadedModule[136]=C:\PROGRA~1\COMMON~1\MICROS~1\VBA\VBA7\1033\VBE7INTL.DLL
    LoadedModule[137]=C:\Windows\assembly\NativeImages_v2.0.50727_64\stdole\be0906e176cf1f8ed8 1084df7042ee1c\stdole.ni.dll
    LoadedModule[138]=C:\Windows\system32\explorerframe.dll
    LoadedModule[139]=C:\Windows\system32\DUser.dll
    LoadedModule[140]=C:\Windows\system32\DUI70.dll
    LoadedModule[141]=C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.7 601.17825_none_2b253c8271ec7765\GdiPlus.dll
    LoadedModule[142]=C:\Program Files\Microsoft Office\Office14\msproof7.dll
    LoadedModule[143]=C:\Program Files\Microsoft Office\Office14\MSOHEV.DLL
    LoadedModule[144]=C:\Program Files\Microsoft Office\OFFICE14\PROOF\1033\MSGR3EN.DLL
    LoadedModule[145]=C:\Windows\system32\MPR.dll
    LoadedModule[146]=C:\Windows\System32\drprov.dll
    LoadedModule[147]=C:\Windows\System32\WINSTA.dll
    LoadedModule[148]=C:\Windows\System32\ntlanman.dll
    LoadedModule[149]=C:\Windows\System32\davclnt.dll
    LoadedModule[150]=C:\Windows\System32\DAVHLPR.dll
    LoadedModule[151]=C:\Windows\system32\wkscli.dll
    LoadedModule[152]=C:\Windows\system32\cscapi.dll
    LoadedModule[153]=C:\Windows\system32\netutils.dll
    LoadedModule[154]=C:\Windows\system32\SFC.DLL
    LoadedModule[155]=C:\Windows\system32\sfc_os.DLL
    LoadedModule[156]=C:\Program Files\Common Files\Microsoft Shared\OFFICE14\Csi.dll
    LoadedModule[157]=C:\Windows\system32\WINHTTP.dll
    LoadedModule[158]=C:\Windows\system32\webio.dll
    LoadedModule[159]=C:\Windows\system32\PSAPI.DLL
    LoadedModule[160]=C:\Windows\system32\WS2_32.dll
    LoadedModule[161]=C:\Windows\system32\NSI.dll
    LoadedModule[162]=C:\Windows\System32\netprofm.dll
    LoadedModule[163]=C:\Windows\System32\nlaapi.dll
    LoadedModule[164]=C:\Windows\system32\srvcli.dll
    LoadedModule[165]=C:\Windows\System32\npmproxy.dll
    LoadedModule[166]=C:\Windows\system32\HLINK.DLL
    LoadedModule[167]=C:\Windows\system32\WindowsCodecs.dll
    LoadedModule[168]=C:\Windows\system32\WINMM.dll
    LoadedModule[169]=C:\Program Files\Microsoft Office\OFFICE14\PROOF\MSSP7EN.DLL
    LoadedModule[170]=C:\Program Files\Microsoft Office\Office14\mscss7en.dll
    LoadedModule[171]=C:\Program Files\Microsoft Office\Office14\css7Data0009.dll
    LoadedModule[172]=C:\Program Files (x86)\Adobe\Acrobat 10.0\PDFMaker\Office\x64\PDFMWord.dll
    LoadedModule[173]=C:\PROGRA~2\Adobe\ACROBA~1.0\PDFMaker\Common\X64\ADOBEP~1.DLL
    LoadedModule[174]=C:\Windows\system32\COMDLG32.dll
    LoadedModule[175]=C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll
    LoadedModule[176]=C:\Windows\system32\apphelp.dll
    LoadedModule[177]=C:\Windows\system32\NetworkExplorer.dll
    LoadedModule[178]=C:\Windows\system32\EhStorShell.dll
    LoadedModule[179]=C:\Program Files (x86)\Google\Drive\googledrivesync64.dll
    LoadedModule[180]=C:\PROGRA~1\MICROS~1\Office14\GROOVEEX.DLL
    LoadedModule[181]=C:\Windows\WinSxS\amd64_microsoft.vc90.atl_1fc8b3b9a1e18e3b_9.0.30729.61 61_none_0a1fd3a3a768b895\ATL90.DLL
    LoadedModule[182]=C:\PROGRA~1\MICROS~1\Office14\1033\GrooveIntlResource.dll
    LoadedModule[183]=C:\Windows\System32\cscui.dll
    LoadedModule[184]=C:\Windows\System32\CSCDLL.dll
    LoadedModule[185]=C:\Windows\system32\ntshrui.dll
    LoadedModule[186]=C:\Windows\system32\slc.dll
    LoadedModule[187]=C:\Windows\System32\StructuredQuery.dll
    LoadedModule[188]=C:\Windows\system32\actxprxy.dll
    LoadedModule[189]=C:\Program Files\Internet Explorer\ieproxy.dll
    LoadedModule[190]=C:\Windows\system32\thumbcache.dll
    LoadedModule[191]=C:\Windows\system32\SHDOCVW.dll
    LoadedModule[192]=C:\Windows\system32\ieframe.DLL
    LoadedModule[193]=C:\Windows\system32\OLEACC.dll
    LoadedModule[194]=C:\Windows\system32\SearchFolder.dll
    LoadedModule[195]=C:\Windows\System32\cscobj.dll
    LoadedModule[196]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\ACE.DLL
    LoadedModule[197]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\AGM.DLL
    LoadedModule[198]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\BIB.DLL
    LoadedModule[199]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\BIBUtils.DLL
    LoadedModule[200]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\Cooltype.DLL
    LoadedModule[201]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\JP2KLib.DLL
    LoadedModule[202]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\ARE.DLL
    LoadedModule[203]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\AdobePDFL.dll
    LoadedModule[204]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\AdobeXMP.dll
    LoadedModule[205]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\AXE8SharedExpat.dll
    LoadedModule[206]=C:\Program Files (x86)\Adobe\Acrobat 10.0\PDFMaker\Office\x64\PDFMEngine.dll
    LoadedModule[207]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\pdfsettings.dll
    LoadedModule[208]=C:\Program Files (x86)\Adobe\Acrobat 10.0\Acrobat\x64\MPS.dll
    LoadedModule[209]=C:\Program Files (x86)\Adobe\Acrobat 10.0\PDFMaker\Office\x64\PDFPort.dll
    Sec[0].Key=LCID
    Sec[0].Value=1033
    Sec[1].Key=skulcid
    Sec[1].Value=1033
    State[0].Key=Transport.DoneStage1
    State[0].Value=1
    State[1].Key=DataRequest
    State[1].Value=Bucket=41559749/nBucketTable=4/nResponse=1/n
    FriendlyEventName=Stopped working
    ConsentKey=APPCRASH
    AppName=Microsoft Word
    AppPath=C:\Program Files\Microsoft Office\Office14\WINWORD.EXE

    I recently ran into this with a bitmap in a 265 page document. I copied the bitmap to IrfanView and then back (I think that was the step -- I am already forgetting) and the copied it back. The problem went away. My student may look a bit more at the file -- I asked so I could give a more definitive comment here.
    The result I had suggests that it is a problem in WORD or the bitmap that WORD was using. Why WORD can deal with it and not Acrobat, I am not sure. However, when printing to the Adobe PDF printer there was not a problem, just with PDF Maker.

  • Inbox Search - Remove "Due date" for search for date

    Dear experts
    We'd like to remove the value "due date" from the dropdown box "Date type" in the agent inbox search.
    How could we achieve that?
    Thanks in advance
    Stephanie

    Thanks Raj.
    When I display the page AuiSearch.htm, I can see the coding for this dropdownbox:
            <crmic:dropdownListBox id                = "DlbDateType"
                                   table             = "<%= controller->G_Datetype_DD %>"
                                   nameOfKeyColumn   = "valpos"
                                   nameOfValueColumn = "ddtext"
                                   selection         = "//SearchAuiItems/DATETYPE"
                                   width             = "100%" />
    However, I don't want to remove it. Currently the dropdownbox contains 2 values:
    "Created Date" and "Due Date".
    I would like to have only "Created Date".
    Thanks in advance
    Stephanie

  • Fix for "Search for Sensor"

    For the 2nd gen iPod nano verson 1.1.1 will work with nike+ipod sport kit. When you begin your workout it will ask you to walk around and so it can detect the sensor but what you have to do is hold it in your hand and kind of lightly shake the sensor while each few shake push the sleep button (just a quick tap, don't hold it in for 3 secs) and it should work after that...
    I was getting pretty ****** off until i finally did that

    Thanks for this; I was getting ready for a very cranky visit to the local Apple store. It took a few times shaking it--about one minute of shaking/clicking/shaking/clicking--but then it worked like a charm. For me, this was a first-time-use-only thing. I wanted to make sure I didn't have to go through this ritual every time I put the sensor to sleep (I guess you don't really have to put it to sleep, but I think it might save battery life). I checked by putting it to sleep, then just waking it up normally (i.e., one quick push with a paperclip, no shaking it around), and it works great each time, right on cue.

  • Fix for "Searching for Sensor"

    For the 2nd gen iPod nano verson 1.1.1 will work with nike+ipod sport kit because the version 1.2 is referring to the 1st gen ipod nano only. When you begin your workout it will ask you to walk around and so it can detect the sensor but what you have to do is hold it in your hand and kind of lightly shake the sensor while each few shake push the sleep button (just a quick tap, don't hold it in for 3 secs) and it should work after that...
    I was getting pretty ****** off until i finally did that

    You might have a defective sensor.
    When I begin my workout, if I get the "walk around" message, all I have to do is take a couple of steps (with the sensor in my shoe) and it activates.
    If I had to take it out of my shoe and shake it, I probably would be pretty honked off, too!

  • How to search for perticular substring in given string.

    Hi, Can any one tell me how to search for perticular substring in given string.
    example:
    I have to search for CA in given Order type it may be CA10 or CA15. Please Do the needful.

    Hi Aniruddha,
    check this...
    Data var string,
    var = 'India'.
    search var for 'Ind'.
    if sy-subrc = 0.    " var having ind
    Message 'Ind found' type 'I'.
    else  .            "var not having ind
    Message 'Ind not Found' type 'I'.
    endif.
    thanx
    bgan.

  • Search for links

    Hi,
    I have a quick question for searching links in text Edm.String 
    I have thousands of documents and I want to return results when people search for http://youtube.com or http://linkedin.com etc
    Searching for http will work but http:// will not.
    Also searching for www will work but not www. 
    Also searching or C# won't return accurate results either.
    Any ideas on what's going on? Do I need to encode the search terms in a special way or change how I'm indexing those documents?
    Thanks

    What's happening is that during word breaking many characters such as : and / are causing URLs to break apart, so we end up indexing fragments and not the whole thing, making results have poor ranking at best and probably look just plain inaccurate in other
    cases.
    A simple approach to this -if you know that : and / don't show up in other places that could cause confusion- is to simply replace them with an empty string, which will turn for example
    http://youtube.com into httpyoutube.com. It's important that you do this both during indexing time and query time, so both are consistent. If your URLs have other characters such as & and ? you'll have to process those
    as well. Dots are fine (at least assuming you use the default language setting).
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • 'Search for a contact' function, please ..

     Hello,
    I'm trying to search for a friend on Skype, but I can't find anywhere where I can find her. I've tried typing in her name and where she lives, but I don't get any results. I read a page that said something about a search button in the top left corner of the hime page, but every time I go to look for it, it's not there. Could you please tell me how to search for people on Skype? 
    Thank you,
    Amanda

    https://support.skype.com/en/faq/FA12289/adding-contacts-in-skype-for-android-phones should show you how to search for and add people on Android. 

  • "Search for Jobs" link not working in E-Recruitment

    Hi,
    Whenever Employee/External Candidate clicks on the link "Search for Jobs" on the start page, list of jobs are not getting displayed despite after data is available.

    Hi ,
      Go to SPRO-personnel management-Employee self services-homepage framework - resources-edit resources
    select the resource for Search for job .... and check if the URL path is given.
    Thanks
    Sunitha

  • BAPI to search for customer

    dear all
    Iam search for a BAPI  to be used in search for particular customer using one of its attribute wich is stored  in kna1 table
    and also search in its details stored in ADRC taple if possible.       
    and also  BAPI for search for  equipment  using one of its attribute like serial number or sold to party .
    thank you

    Hi lamey,
    the function module BAPI_HELPVALUES_GET has exceptionally good documentation.
    Please read it an makle use of the IMPORTING and TABLES parameters to get what you want:
    *"  IMPORTING
    *"     VALUE(OBJTYPE) LIKE  BAPIF4A-OBJTYPE DEFAULT SPACE
    *"     VALUE(OBJNAME) LIKE  BAPIF4A-OBJNAME DEFAULT SPACE
    *"     VALUE(METHOD) LIKE  BAPIF4A-METHOD
    *"     VALUE(PARAMETER) LIKE  BAPIF4A-PARAM
    *"     VALUE(FIELD) LIKE  BAPIF4A-FIELD OPTIONAL
    *"     VALUE(EXPLICIT_SHLP) LIKE  BAPISHLP STRUCTURE  BAPISHLP OPTIONAL
    *"     VALUE(MAX_OF_ROWS) LIKE  BAPIF4A-MAX_ROWS DEFAULT 0
    *"     VALUE(DESCRIPTIONONLY) LIKE  BAPIF4A-DESCRIP DEFAULT SPACE
    *"  EXPORTING
    *"     VALUE(RETURN) LIKE  BAPIRETURN STRUCTURE  BAPIRETURN
    *"  TABLES
    *"      SELECTION_FOR_HELPVALUES STRUCTURE  BAPIF4B OPTIONAL
    *"      HELPVALUES STRUCTURE  BAPIF4C
    *"      VALUES_FOR_FIELD STRUCTURE  BAPIF4D
    *"      DESCRIPTION_FOR_HELPVALUES STRUCTURE  BAPIF4E
    EXPLICIT_SHLP can be used to specify the search help
    SELECTION_FOR_HELPVALUES can be used to specify complex selection criteria.
    Read the genreal documentaion and the parameter documentation, it has many hints for you.
    Let us know if successful, Thank you.
    Regards,
    Clemens

Maybe you are looking for