Modal Text Search / Find Dialog

Hi,
I'm using CR 2008 SP2 .NET SDK.
Is there anyway to set the Find Dialog of the CR Viewer to be a mdi child?
Currently it is modal but it makes the usability of this find really horrible.
In CRXI this form was not modal.

What version of .NET?
Using .NET 2008, I get a nice mdi child form and I am able to drag it all over the place. I don't recall there ever being a change with this in CR 2008... Are you clicking on the binocular button of the DHTML viewer?
Ludek

Similar Messages

  • Grep Search / Text Search + Past Searches

    Is there a way to clear out previous GREP searches / Text Searches (Find/Change) from the "Find what" and "Change to" boxes? Is this document specific or an ID Preference issue?

    Hi Eugene,
    Thanks for the info, but I am not looking to make shortcuts. I want to delete all the pre-filled text that appears from previous searches. For example in the original image this is represented as
    http
    and the dropdown box is blue indicating that there is stored data. Having cleared ALL ID Preferences fixes the problem, however, I don't want to be forced to delete ALL preferences to delete this data. See pic below

  • How to execute a search by a click on a custom button (without the find dialog)

    Hello.
    Yesterday I've tried to create a custom search-dialog in a tabbed palette for Adobe Bridge.
    I need this custom dialog in a tabbed palette because I use Bridge as an image-database where I often need to search for keyword-combinations.
    It is not efficient for me to open the find dialog for each search and add a search-criteria for every keyword.
    So I want to create my easy custom search.
    In this custom dialog I have my keyword-list where I can select the keywords I want to search for and the search-option "match all of the keywords" or "match one of them".
    The creation and selection of the keywords and search-option works.
    Now I want to click on a button in my tabbed palette (like clicking "find" in the find dialog), give the data to the Bridge search and execute it. But I don't know how.
    It seems to me that I need the function getBridgeUriForSearch from the ExtensionHandler. But I don't understand how to do this (I didn't create the dialog as an extension) and I think there must be an easier way.
    I use only information which you can insert in the normal find dialog - there are no new or unknown information for the Bridge search. So there must be a way that I can call the Bridge search with this information.
    I would be very happy if somebody could help me...
    Thank's Susi

    Hm looks like I have to give up...
    If the kewyords in the filters would be presented in a hirarchical structure - that would also be ok, but it seems that this is not possible, too.
    I think I will source this search out to a lokal web-script. It won't be so fast as bridge but I think this is the only solution to get the images by selecting keywords in a hirarchical structure...
    I hope Adobe will implement more interfaces for JavaScript to access Bridge in later versions...
    Thank you for your efforts and sorry if I wasted your time.

  • Search/ find Text function not working in Adobe Reader

    I am having problem with text search in Adobe reader latest version 9.3.
    One pdf file generated through a pdf printer inside a word processing program and has around 100 pages. So there is no issue of having a scanned document which is not searchable.
    In this document, when I try to search the text inside the pdf file using Adobe Reader 9.0, it is working alright and it is recognising the text searched for.
    However, When the same pdf file is searched using Adobe Reader 9.3 and 9.4 etc it is not searching the text which is present at more than five places in the document.
    Please advise.

    Scanned PDFs that have not had OCR performed will just contain an image of text, so they cannot be searched. Other files may have messed up fonts. Without looking at eachc particular document, it's hard to say what's wrong.

  • Full text search in Chinese Language not finding results

    We are translating one of our Webhelp projects into
    simplified chinese, and everything is working fine except full text
    search. We can type chinese characters into the search box but no
    results appear even though we have already translated a lot of the
    webhelp into chinese. Note that we have breadcrumbs, TOC and Index
    functioning correctly in chinese.
    The FAQ for Robohelp claims that FTS is supported in other
    languages but I am stuck - I can't figure out how to make it work.
    Any help would be greatly appreciated.

    There was some language stuff in those patches that I hoped
    would fix your problem, obviously not.
    I am not familiar with working with languages. Have you tried
    changing the language in Project Settings? Have you tried importing
    a couple of topics into a new project?
    Beyond that, hopefully someone with more relevant knowledge
    can help you.

  • Original application file Text search

    Hi DMS Gurus,
    we Have a common requirement of finding the DIR by using the word or sentence present inside the Original application file.
    can any one please let me know the complete requirement for this, is this feature inbuilt in standard DMS system using Content Server.
    I have did the basic configuration in  transaction code SKPR07).
    Enter the document class : DMS_PCD1.
    Select: Edit / Administration.
    A dialog box appears where the following data is preset,
    Document Area :  DMS
    Administration table: DMS1DIDSTA
    Class can be indexed:  X
    Set the indicator: Setup indexing.
    and MIME text type is already present for Word, Excel, Pdf, PPT file type in Standard.
    the Text search with original window appeared in CV04N but entering any text inside the Original it is unable to find the original.
    is there any other setting i have to make please let me know.
    Does this necessiates really installation of
    1) A new Trex server for this  process.
    2) can this Trex server be installed inside Content server
    points Awaiting .
    Thanks in Advance
    Kumar K

    Hi DMS Gurus and SAPIENS,
    Welcome to New Year 2009, Wish you all and your family a Very Happy Prosperous, Peacefull, and sucessfull New Year 2009.
    Like we all know any Word document in a PC or System can also be searched by giving the known Words in the file as the search criteria.
    why there is any 3rd Party software required to avail this feature, that too in DMS which mainly deals with external Documents.
    will be more happy if this can be achived with SAP-DMS standard funtionality or configuration.
    if Like the TREX server has to be Integrated with DMS Server as a stand alone server?
    will this be Completely Taken care by Basis or Functional involvement is required.
    Please Clarify.

  • Can't find Dialog in javascript (by code corner example)

    Hello,
    I've recently found an Code Corner OTN Harvest 09/2011 article with "Launching popup dialogs maximized".
    http://www.oracle.com/technetwork/developer-tools/adf/learnmore/sept2011-otn-harvest-508189.pdf
    The code is:function openPopup(popupId, panelWindowId){
      return function(event){
       var agent = AdfAgent.AGENT;
    var windowWidth = agent.getWindowWidth();
    var windowHeight = agent.getWindowHeight();
    var popup = AdfPage.PAGE.findComponentByAbsoluteId(popupId); // found
    var panelWindow = popup.findComponent(panelWindowId); // null here
    panelWindow.setContentWidth(Math.max(100, windowWidth-60));
       panelWindow.setContentHeight(Math.max(100, windowHeight-80));
       if(popup != null)
         popup.show();    
    }I've tried the same in my application and it didn't work.
    <af:commandButton text="Search" id="cb3" partialSubmit="true">
                       <af:clientListener type="action"
                       method="openPopup('p_search','d7')"/>
                    </af:commandButton>
    <af:popup id="p_search">
            <af:dialog id="d7" resize="on"
                       dialogListener="#{backingBeanScope.Page1ManagedBean.toContentSearchResult}"
                       contentWidth="800" contentHeight="600"
                       stretchChildren="first">
              <af:panelStretchLayout id="psl4" topHeight="auto">
    ...I have found out that this code can't find panelWindow (dialog) component.
    I've also tried AdfPage.PAGE.findComponentByAbsoluteId to find the dialog, but still no luck.
    Any ideas?
    Thanks.
    ADF 11.1.1.4

    Hi,
    maybe you are not setting the approapriate componentId..
    have a look here
    Problem Finding component on A Page
    Regards,
    Dimitris.

  • Old contacts showing up in siri and text search results but not in contacts list.

    So what I did was this. I had mobile me, and iphone ocntacts as well as contacts on phone. After updating to IOS5, i had tripples of almost all my contacts (but not all). I converted my mobile me to icloud to discover i couldnt use that email under my new official icloud accoutn as my @me.com adress. So what i did was this. I deleted my old mobile me (now icloud account) compleatly from my phone, my iPad and my computer so there is no trace of it. I then went to my new iCloud account (that i will now use as my only icloud account. going to let the old mobile me one just die so i have 1 central spot for all my stuff).  Now all my contacts are gone. So to start fresh and just be done with the confusion, i go to www.icloud.com and manually (by hand) re type in all my contacts. I updated some info and changed some names (like nicknames and stuff like that to real names). Basiclly compleatly organizing my contacts and such to the way i want them. Getting rid of poeple i no longer talk to and such.  I did it, it syned and all was well. However now here is hte problem.
    If i go to spotlight search, or text search, or search with siri, or any type of search function, all of my old contacts are still there and viewable. All the ones i wanted to get rid of are all still there. However, if i go to contacts and look for thoes old contacts, they are not in the contact list (yes iv checked every "group" and also "all contacts" in groups).  What i want is to figure out how to get all of these old contacts compleatly deleated so they dont show up anywere on my phone. Especially with siri its making searches and auto calling more difficult because its finding two contacts sometimes that are the same person and asks me to distinguish instead of jsut calling.  CAn anybody help?
    Sorry for the wall of text, wanted to make sure to give as much info on the specifics as possible so hopefully i can get this resolved.  Is this a bug or something i did wrong? can i fix it or do i just have to wait for an update?
    P.S.
    Iv since upgraded to iphone 4S and still happening. Also this does NOT happen on my iPad. Only my iPhone.

    Talked to AppleCare for about an hour. After trying many steps: deleting contacts, re downloading from cloud, disabling Siri and re enabling, even Reset all Settings. Nothing worked. Ended up having to restore the phone via Erase All Content and Settings. That of course fixed it.
    Not sure what the issue was. I did have a Mobile Me account before the iCloud migration. For some reason, my contacts would appear in Contacts on the phone and in the cloud only once, but when using Siri it would list 2 or 3 duplicate contacts. Also after we deleted all the contacts on the phone, did an iPhone reset (Home and On/off buttons), my contacts list would show empty. Then I would click on Groups and poof all of a sudden duplicate or triplicate contacts would be in the contacts list.
    Very strange.

  • Full-Text search is not working with PDF files - SQL Server 2012 64 bit

    Hi,
    We are in the process of storing PDF files in SQL Server 2012 with Full-Text search capability.
    I followed the steps as below and it works fine with word document but not for PDF files. I tried with PDF ifiler 11 & 9 and both are unsuccessful.
    Server/DB Level Settings:
    1)
    Enable FileStream
    2)
    Install Full-Text
    then restart
    3)
    Use [specific db]
    alter
    database [db name]
    add
    filegroup Files
    contains filestream;
    alter
    database [db name]
    add
    file (
    name = N'Files',
    filename =
    N'D:\SQL\DATA') to
    filegroup [Files];
    3)
    Database level
    Settings:
    FileStream:
    FileStream
    Directory name:
    [Set the name]
    FileStream
    non-transacted
    Access: [set Appropriate]
    3a)
    Add a
    datafile to DB
    with filestreamdata
    filetype.
    4)
    Share D:\SQL\DATA
    directory and
    add specific accounts
    with read/write
    access
    5)
    Give bulkadmin
    access to those
    specific accounts
    at server
    level
    6)
    From the
    page (link)
    download and
    install the *.pdf
    IFilter for
    FTS. Link:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    7)
    To the
    PATH global system
    variable add
    path to the
    catalog,
    where you installed
    the plugin.
    Default for
    this version is:
    C:\Program
    Files\Adobe\Adobe
    PDF iFilter 9
    for 64-bit
    platforms\bin
    8)
    From the
    page (link)
    download a
    FilterPackx64.exe
    and install
    it. Link:
    http://www.microsoft.com/en-us/download/confirmation.aspx?id=20109
    9)
    Now from
    SSMS execute the following
    procedures:
    -sp_fulltext_service
    'load_os_resources',1
    -sp_fulltext_service
    'verify_signature', 0
    EXEC
    sp_fulltext_service
    'update_languages';
    -- update language list
    EXEC
    sp_fulltext_service
    'restart_all_fdhosts';
    -- restart daemon
    reconfigure
    with override;
    10)
    Restart the
    server
    11)
    select document_type,
    path from
    sys.fulltext_document_types
    where document_type
    = '.pdf'
    -select
    document_type,
    path from sys.fulltext_document_types
    where document_type
    = '.docx'
    12) Results are OK.
    Following is my Table /Index/ catalog script:
    CREATE
    TABLE dbo.DocumentFilesTest
    DocumentId  INT
    IDENTITY(1,1)
    NOT NULL
    PRIMARY KEY,
    AddDate datetime
    NOT NULL,
    Name nvarchar(50)
    NOT NULL,
    Extension nvarchar(10)
    NOT NULL,
    Description nvarchar(1000)
    NULL,
    FileStream_Id UNIQUEIDENTIFIER
    ROWGUIDCOL NOT
    NULL UNIQUE DEFAULT
    NEWSEQUENTIALID(),
    FileSource varbinary(MAX)
    FILESTREAM DEFAULT(0x)
    go
    --Add default add date for document   
    ALTER
    TABLE dbo.DocumentFilesTest
    ADD CONSTRAINT
    DF_DocumentFilesTest_AddDate
    DEFAULT sysdatetime()
    FOR AddDate
    EXEC
    sp_fulltext_database
    'enable'
    GO
    IF
    NOT EXISTS
    (SELECT
    TOP 1 1 FROM sys.fulltext_catalogs
    WHERE name
    = 'Ducuments_Catalog_test')
    BEGIN
    EXEC sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'create',
    'D:\SQL\PDFBlob';
    END
    --EXEC sp_fulltext_catalog 'Ducuments_Catalog_test', 'drop'
    DECLARE
    @indexName nvarchar(255)
    = (SELECT
    Top 1 i.Name
    from sys.indexes
    i
    Join sys.tables
    t on 
    i.object_id
    = t.object_id
    WHERE t.Name
    = 'DocumentFilesTest'
    AND i.type_desc
    = 'CLUSTERED')
    PRINT @indexName
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'create',
    'Ducuments_Catalog_test', 
    @indexName
    EXEC
    sp_fulltext_column
    'DocumentFilesTest',
    'FileSource',
    'add', 0,
    'Extension'
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'activate'
    EXEC
    sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'start_full'
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    ENABLE
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    SET CHANGE_TRACKING
    = AUTO
    ALTER
    FULLTEXT CATALOG
    Ducuments_Catalog_test REBUILD
    WITH ACCENT_SENSITIVITY=OFF;
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'pdf'
    'BOL12006553.pdf'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\BOL12006553.pdf',
    SINGLE_BLOB)
    AS BLOB;
    GO
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'docx'
    'test.docx'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\test.docx',
    SINGLE_BLOB)
    AS Document;
    GO
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'BILL')
    Returns nothing. it should come from PDF file
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'TEST')
    Returns from word document as follows:
    2           2014-06-04 10:11:41.393            test.docx docx           
    NULL   [BINARY Value]  [Binary Value]
    Any help is appreciated. Its been a long wait.
    Thanks,
    Vel
    Vel Thavasi

    Hello,
    Did you check the fulltext log files for more details about the errors. If the filter isn’t working, there should be errors in the error log file.
    The following thread is about similar issue, please refer to:
    http://social.msdn.microsoft.com/forums/sqlserver/en-US/69535dbc-c7ef-402d-a347-d3d3e4860d72/sql-server-2008-64bit-fulltext-indexing-pdf-not-working-cant-find-ifilter
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Interactive Report - Include Non-selected Column in Row Text Search

    Hi,
    We have an interactive report that contains many columns. NAME VARCHAR2(30), TYPE VARCHAR2(30) etc and DESCRIPTION VARCHAR2(4000).
    Normally the DECRIPTION column would not be shown (avalilable for dispaly via 'Select Columns' but not selected), however we need the default Row Text Search (ie direct entry into the search field instead of creating a column filter) to search the DESCRIPTION field wether it is selected for display or not.
    This will allow the user to enter a term that may be contained in the DESCRIPTION to find records without trying to display a 4000 character field in the report - which just looks horrible.
    We are using ApEx 4.1.1.
    Thanks,
    Martin Figg

    Hi Ray,
    As I expected this has got us very close. We went with the code:
    select
    facility_id,
    facility_name,
    '<span title="' || facility_desc|| '">'||substr(facility_desc,0,50)||decode(sign(length( facility_desc)-50),1,' (More...)',NULL)||'</span>' facility_desc,
    equipment_id,
    equipment_name,
    '<span title="' || equipment_desc|| '">'||substr(equipment_desc,0,50)||decode(sign(length( equipment_desc)-50),1,' (More...)',NULL)||'</span>' equipment_desc,
    from
    rf_full_item_list_vwhich works well. The only issue is that when you download to csv you get the html tags etc as well. Put I am a lot closer to a solution than we were.
    Thanks again.
    Martin

  • How can I get the text search to work in my Robohelp 7 .chm?

    The text search used to work but has stopped working.
    The compile says it is "Generating full-text search data..." and I'm getting no errors.
    This .chm is part of a merged .chm. The other merged .chms still have seaching ability.
    I'm wondering if perhaps I'm running out of space.  The .chm is 5,327 KB

    I gave up and repaired Robohelp 7. Now the text search works again.  One possibility is that I damaged Robohelp 7 when I installed a trial copy of Robohelp 9 and then uninstalled the trial copy.   Don't know for sure and I'm not willing to try it again just to find out. I'm just happy that I've got it working again.

  • How can I get CTRL-F to open the find dialog?

    I am using Firefox V36.0.4 and when I am on the catalog site of mydoitbest.com and I press the CTRL+F to open the find dialog and it doesn't work. I contacted the authors of the site and they said:
    "This is a quirk in Firefox actually, not our site. You need to either click at the top of the browser (in some blank area, like below the address bar) before pressing Ctrl+F or press Ctrl+F twice for the search bar to come up in the lower left corner. We updated our Firefox to your recent version and had the same result. If you click the top of the browser first or press Ctrl+F twice that will bring the search bar up."
    I'm not sure I believe them... This is the only site that has the problem. I have tried Firefox in Safe Mode, it still doesn't work. I believe they are doing something to capture the <CTRL> key because when I press CTRL+Left Mouse Click on a link it should open a the link on a new <TAB>, but instead just opens the link in the same <TAB>.
    Has anybody else reported a problem with Firefox? Any other ideas or any way for me to check the source for the page to see if they are doing something wrong?
    Thanks, Keith

    Hi, thanks for the reply.
    No, that doesn't fix the problem.
    I've done some programming and have been checking out their site. They are trapping the keys so the first time I press <CTRL-F> it puts a lower case "f" in their search box. If I press <CTRL-F> again the search dialog box does open. If I click on their search box first with the mouse, then press <CTRL-F> it works as it should.
    I guess I'll have to live with it, because they don't seem interested in correcting their problem.
    Thanks, Keith

  • Text search stopped working in Adobe Reader X

    We create a weekly report that is posted in a shared network directory for multiple user access.   These pdf files can be accessed by Adobe reader or full Adobe as needed.  The reports are created in the same manner each week by printing an electronic file to the Adobe PDF printer.  The reports generated after the 10th of January are no longer searchable.  Any report before that date can be opened and when a search is performed the occurrances are highlighted as needed and can be jumped to by clicking on the search list created.  Any report created after  January 10, yields no results.  This despite the visible presence of the search word or words in the visible document.  The search mechanism is looking at the file and all of its pages but producing no results.  I have looked at the document properties and can find no difference in their properties or behavior.  Anyone have any ideas as to what might contribute to this change?  As these are public record reports, I can send copies for analysis if needed. Thanks for any help.

    Ok,
    First -In context of your post above this one it might be a good thing to slick those files sooner rather than later.
    While present in the account they are available to the "world" through the links.
    The two pre-Jan 10 PDFs have content mastered in a word processing application.
    I'd say it was MS Word as the PDFs were produced via printing with Adobe Distiller 9 (installed by Acrobat 9 Standard or Pro).
    A File > Print > Adobe Printer selected.
    The Distiller job option used had PDF version 1.5 (associated with release of Acrobat 6) selected; so, that's the version of the two PDFs.
    These PDFs both have renderable text rather than hidden text associated with OCR output.
    Both PDFs, as outputs of Adobe's 'Acrobat' product are ISO 32000-1 (ISO's PDF standard) compliant.
    Consequently, Acrobat's Catalog index / Search feature encounters a "well-formed" (Standards compliant) PDF.
    The post-Jan10 PDFs were also sourced from a word processing application (again, I'd say MS Word).
    However, the free PrimoPDF application developed the PDF output.
    The PDFs contain renderable and hidden text. It is as if the initial output PDF was and image and that was sent through an OCR process that replaced recognized characters with a renderable character and left unrecognized characters as hidden text.
    Consequence: What Catalog index / Search / Find can 'grab' is not the same as what you 'see'.
    In sum, post Jan 10 the way the PDFs were produced changed. That is the crux of it.
    Be well...

  • Using Oracle Text to find attribute values in a XML document

    Can anybody help me? I created a index on a URIType column,
    create index my_index on uri_tab(docurl) indextype is ctxsys.context parameters ('SECTION GROUP my_sections').
    Before index creation I executed these two functions, which prepare Oracle on text search in attribute sections: ctx_ddl.create_section_group('my_sections','XML_SECTION_GROUP') and exec ctx_ddl.add_attr_section('my_sections','machinetype','MachineType@text')
    After index build I looking for an attribute value.
    SELECT e.docName FROM uri_tab e WHERE CONTAINS(e.docurl,'SM_52 WITHIN machinetype') > 0;

    An advise to read Oracle documentation is great but I have done it already and didn't find a way to check a syntax of an attribute retrived from LDAP server.
    I haven't find anything new in $ORACLE_HOME/RDBMS/admin/dbmsldap.sql as well.
    Let's take an example. I have taken some attribute from LDAP server by dbms_ldap.first_attribute and would like to know if the values of this attribute are strings or some binary staff.
    How can I do it?

  • How to configure what is displayed in srfDocSnippet (Oracle Text Search)?

    I am using UCM 10gR3 with SiteStudio 10gR4. I installed the Oracle Text Search component and it is working well. One of the requirements for a search results page is the specific layout of the data displayed. srfDocSnippet returns a really ugly display if the search result return is just metadata. I didn't find any documentation in UCM on how to configure this display.
    How to you configure what is displayed in srfDocSnippet?
    Thank you,
    Ken

    How To get the Summary from CIS on Document Objects (Doc ID 837740.1)
    What is the Closest Equivalant toVdksummary option In Oracle Full Text Search (Doc ID 787173.1)
    those notes on MOS may help.

Maybe you are looking for

  • Material Stock is not Updated in T.Code MC.9

    I am running Material stock report in T.code MB5B it is showing the correct stock report but when i execute T.code MC.9 (Material Analysis) it is showing difference of Rs 96015 This difference is whatever  transaction we have made in Movement type 12

  • OTM - At the time of issue handling status is updated each time

    Hello, While handling the issue till the time it get fixed, each time the status gets updated but not maintaining the status history along with the description and solution. We need to figure out the status history .

  • When using BW Bex query analyzer users cannot change reporting queries ....

    Issue: When using BW Bex query analyzer users cannot change reporting queries. Any attempt to change queries results in errors. Error: BEx Query Designer: Run-time error '-2147221499 (80040005) Fatal Error - Terminating Impact: Business reporting is

  • Weblogic Suite - OEM Diagnostics Pack for Fusion Middleware

    Hi All, we are lookng at of migrating the BEA licenses we have with oracle licenses. With Oracle licensing terms, we are told we need to get the Weblogic Suite which includes an OEM - Diagnostic pack for fusion middleware. Has any one used this let k

  • Dropping signal on both Wired PCs WRT54G.........Help!!!!!

    Ok Im lost here.............Ive got a WRT54G V8.......I have two wired computers and both are having issues dropping signal. One PC is Vista and the other is XP. If I disconnect the router and run one PC on the dsl modem it runs fine with no issues o