PDF Imbedded Title and Search Results

I am in the process of developing a intranet search and have come up against a problem with PDF files. The embedded title is delivered up as the link in the search results. Most of the PDFs we link to are created outside our department, so the embedded title is meaningless to our users.
Any ideas about how we can change the title? Thanks.

I have never seen anyone request this so no information from there. Also I cannot think of any way of doing it. The only solution might be to prefix topic titles or put the information on the first line of the content. However, that is going to take up space better used letting the user see the initial topic content.
See www.grainge.org for RoboHelp and Authoring tips
@petergrainge

Similar Messages

  • Use Sharepoint Item Title on Search Results

    Hello,
    I'm trying to use the property Title of files on a Document Library as the Title of search results. It seems that I have to map the crawled property "TermTitle" to the managed property "Title". 
    Notwithstanding, the crawled property "TermTitle" is not available on the list. I'm using Sharepoint Online, after-upgrade.
    Any tips?
    Thanks!

    Hello, Mr. Mahfoud, Thank you for your assistance! I looked for the crawled properties "Title of item in the list" and TermTitle but neither are available, take a look:
    cant post the link to the img directly, but you can see it here - http://social.msdn.microsoft.com/Forums/getfile/510784
    Maybe the name has changed?

  • Search form and search results page

    Hi! I really need some help with my search and search results page. I'm a newbie and am trying to get my site built. My search page will be the most important page and is quite complex. It will have 11 drop down boxes and 8 radio buttons. I have my form set up on the search page. When I try to run it now it returns all results. Because I have so many fields I didn't want to post it all but, here's what my code looks like for my first drop down box:
    <select name="area_search[]" multiple="multiple" id="area_search" form="search" >
                <option selected="selected" value="" <?php if (!(strcmp("", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Any</option>
                <option value="Downtown" <?php if (!(strcmp("Downtown", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Downtown</option>
                <option value="Jackson County East" <?php if (!(strcmp("Jackson County East", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Jackson County East</option>
                <option value="Johnson County" <?php if (!(strcmp("Johnson County", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Johnson County</option>
                <option value="Johnson County North" <?php if (!(strcmp("Johnson County North", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Johnson County North</option>
                <option value="Johnson County South" <?php if (!(strcmp("Johnson County South", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Johnson County South</option>
    <option value="Midtwon" <?php if (!(strcmp("Midtwon", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Midtown</option>
    <option value="North Kansas City" <?php if (!(strcmp("North Kansas City", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>North Kansas City</option>
    <option value="Northland" <?php if (!(strcmp("Northland", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Northland</option>
                <option value="Plaza" <?php if (!(strcmp("Plaza", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>Plaza</option>
                <option value="South Kansas City" <?php if (!(strcmp("South Kansas City", $row_rs_searchpropertyinfo['Area']))) {echo "selected=\"selected\"";} ?>>South Kansas City</option>
    </select>
    This is the code for a radio button:
    <input <?php if (!(strcmp($row_rs_searchpropertyinfo['Washer_dryer_in_unit'],"yes"))) {echo "checked=\"checked\"";} ?> name="radio_washerdryerinunit" type="radio" id="radio" form="search" value="yes"/>
    The searchresults.php page:
    <?php require_once('/Connections/Property_Info.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $var_area_search_rs_searchpropertyinfo = "%";
    if (isset($_POST['area_search'])) {
      $var_area_search_rs_searchpropertyinfo = $_POST['area_search'];
    mysql_select_db($database_Property_Info, $Property_Info);
    $query_rs_searchpropertyinfo = sprintf("SELECT property_info.Area FROM property_info WHERE property_info.Area LIKE %var_area_search%", GetSQLValueString($var_area_search_rs_searchpropertyinfo, "text"));
    $rs_searchpropertyinfo = mysql_query($query_rs_searchpropertyinfo, $Property_Info) or die(mysql_error());
    $row_rs_searchpropertyinfo = mysql_fetch_assoc($rs_searchpropertyinfo);
    $totalRows_rs_searchpropertyinfo = mysql_num_rows($rs_searchpropertyinfo);
    ?>
                      <?php
    $rs_searchpropertyinfo_endRow = 0;
    $rs_searchpropertyinfo_columns = 5; // number of columns
    $rs_searchpropertyinfo_hloopRow1 = 0; // first row flag
    do {
        if($rs_searchpropertyinfo_endRow == 0  && $rs_searchpropertyinfo_hloopRow1++ != 0) echo "<tr>";
       ?>
                      <td><table width="330px" border="0" cellspacing="7" cellpadding="2">
                        <tr>
                          <td width="300" height="275" bgcolor="#000000"><p><img src="../Properties/Thumbnail_image/<?php echo $row_rs_searchpropertyinfo['Images']; ?>" alt="" width="290" height="290" /></p></td>
                        </tr>
                        <tr style="text-align: center; font-size: 22px; color: #940000;">
                          <td width="300" height="75" bgcolor="#000000"><?php echo $row_rs_searchpropertyinfo['Area']; ?>
                            <p> </p>
                            <p><?php echo $row_rs_searchpropertyinfo['Property_Name']; ?></p>
                            </td>
                        </tr>
                        <tr bgcolor="#F7080C" style="text-align: center; font-size: 18px; color: #050505;">
                          <td height="45" bgcolor="#940000" style="font-size: 14px"><img src="/images/Detail button.jpg" alt="Property Details" onClick="MM_openBrWindow('<?php echo $row_rs_searchpropertyinfo['KCRC_detail_page']; ?>','detail','width=600,height=600')"/></td>
                        </tr>
                        <tr bgcolor="#F7080C" style="text-align: center; font-size: 18px; color: #FFFFFF;">
                          <td height="29" bgcolor="#940000" style="font-size: 14px"><a href="/checkavailability.php" target="new"><img src="/images/Check availability button.jpg" alt="Check availability" onClick="MM_openBrWindow('./checkavailability.php','availability','width=600,height=600') "/></a></td>
                        </tr>
                        <tr bgcolor="#F7080C" style="text-align: center; font-size: 18px; color: #FFFFFF;">
                          <td height="29" bgcolor="#940000" style="font-size: 14px"><a href="/scheduletour.php" target="new"><img src="/images/Schedule tour button.jpg" alt="Schedule tour" onClick="MM_openBrWindow('./scheduletour.php','schedule','width=600,height=600')"/></a></ td>
                        </tr>
                        <tr bgcolor="#F7080C" style="text-align: center; font-size: 18px; color: #FFFFFF;">
                          <td height="29" bgcolor="#940000" style="font-size: 14px"><a href="/contactus.php" target="new"><img src="http://www.kcrentalcentral.com/images/Contact agent button.jpg" alt="Contact a Rental Agent to answer any of your questions" onClick="MM_openBrWindow('./contactus.php','contact','width=600,height=600')"/></a></td>
                        </tr>
                      </table></td>
                      <?php  $rs_searchpropertyinfo_endRow++;
    if($rs_searchpropertyinfo_endRow >= $rs_searchpropertyinfo_columns) {
      ?>
                    </tr>
                    <?php
    $rs_searchpropertyinfo_endRow = 0;
    } while ($row_rs_searchpropertyinfo = mysql_fetch_assoc($rs_searchpropertyinfo));
    if($rs_searchpropertyinfo_endRow != 0) {
    while ($rs_searchpropertyinfo_endRow < $rs_browsepages_columns) {
        echo("<td> </td>");
        $rs_searchpropertyinfo_endRow++;
    echo("</tr>");
    }?>
    As I said, I'm a newbie. Any help or guidance would be very much appreciated. THanks in advance!

    Thanks for that example, but that is the design based on different technology than mine (ADF BC, and I am using ADF, EJB3/JPA). The link I provided above nowhere presents <methodIterator> nor <methodAction> and these are generated automatically in the page definition file by JDev when you drag-drop collections onto the page. So obviously that manual (online help) does not reflect the internals of current JDev 10.1.3.2 operation. As the matter of fact complete XML schema format seems to be different (although similar to certain extent) than the schema format created by JDev 10.1.3.2

  • Display pdf meta data in search results

    I'm using the built in search function of Sun One web server 6.1 to catalog a directory that contains a large number of scientific journal article in pdf format. In each pdf file the title of the journal article and the author name is contained in the document metadata. After a search is performed the Title field is listed on the search results page. Is there a way to make the Author field appear there as well? It seems that the html version of the file generated by htmlconv contains the information I want <meta name="author" content=" Author Name "></meta>, but I did not find enough information in the documentation to allow me to modify /opt/SUNWwbsvr/bin/https/webapps/search/index.jsp to display this information properly. Any suggestions would be appreciated.
    Doug

    Hi,
    You will need to create a new 'metadata property' through search and map it as below (though there is 1 OOTB property but you cannot use it) -
    1) Create metadata property, say 'Modified By User' (text)
    2) Map it to - ows_Modified_x0020_By(Text) , ows_ModifiedBy(Text) , Office:8(Text)
    3) Run a full crawl
    4) After this, you need to modify the search results XSLT to add 'Modified By' in the results page. You will find good articles on this on MSDN/Technet (check here - https://msdn.microsoft.com/en-us/library/office/ms560074(v=office.14).aspx)

  • Error when opening a pdf by clicking a search result. Link works fine when opened any other way. IE issue only.

    The issue:
    www.norwich.gov.uk
    When you carry out a search for "co-operative bank" and click the first result (which is a pdf), Adobe Reader is launched and the user sees this error: "There was an error opening this document, The filename, directory name or volume label syntax
    is incorrect"
    However, if you do any of these...
    right-click the link and choose to open it in a new tab
    right-click the link, copy the shortcut, paste it into the address bar and hit go
    open the file directly from the library
    open the file by clicking on a hyperlink
    ... you are prompted to Open or Save the file. On choosing 'Open' the file is opened in the browser window with no problems.  It is only when clicking on the link in the search results that the issue arises.  The issue only occurs with IE.
    Current settings:
    Client integration is disabled
    Browser file handling is set to permissive
    Default open behaviour for browser-enabled documents is set to open in the browser
    DOCICON.xml is configured to show <Mapping Key="pdf" Value="icpdf.png" EditText="Adobe Acrobat" OpenControl=""/>
    Disabling the Adobe Acrobat SharePoint Opendocuments add-on 'fixes' the issue, in that the user no longer sees the error, but instead sees the prompt. However, this doesn't help us as the site is public facing asn we cant control user's add-ons.
    Hope someone can help.

    I tried this from my laptop with IE8 and it worked fine.
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • PDFs Not Openning in Search Results?

    RH 8 on Windows XP Professional, publishing project to an Apache server
    We just upgraded to RH 8, and I love that PDF documents show up in the search results now.  However, if I click on a PDF in the results, I get a message saying that it's not found.
    I have a baggage file for all of the PDFs that I'm referring to, and the PDFs do open when linked from other pages or if entering their URLs in the address bar.  All I can think of is normally when I link to PDFs, I open them in a new window. Whereas, this search function is trying to open them in the main project window.  I don't think this should make a difference, but I thought I would mention it just in case.
    Please let me know if you have any suggestions for fixing this.

    Hi Betsy
    Sorry, no bright suggestions for fixing it or working around it. At least not yet.
    So this begs the question of why am I posting, huh?
    Well, it's to encourage you to consider reporting this to Adobe as a potential bug!
    Click here to report a bug.
    Cheers... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Search criteria region and search results regions

    I have a page where the user can enter some search values into some input boxes. Then once the search button is pressed I want the search results region displayed and not when the page is loaded. Eg I want the search result region to be hidden on page load until the search button is pressed. I though about a hidden item that is initialized to null and set after the search button is pressed.

    John - The hidden item's Source Type can be Static Assignment, the Source value should have no value and the Source Used attribute should be "Only...". Now the page will run in one of three ways:
    1) when you link to it and you want the search results region to be hidden you pass in the item and a null value (f?p=app:page:session::NO::P1_ITEM: or reset the page in the link: f?p=app:page_session::NO:1 assuming it's page 1)
    2) when the page branches back to itself after the search criteria are submitted, the branch passes P1_ITEM:xxxx or something
    3) when you branch or link to the page from somewhere else (including for pagination requests) and you want the previous search results to be retained/reused, don't pass anything in the link for P1_ITEM and don't reset the page.
    Scott

  • Bring Audio Preview to Artist/Album pages and search results!

    Note: This idea references features from the new Discover tab which may not have reached all users yet! If you have any feedback about discover, please head over to this ideas topic. 
    Summary
    One of the most useful features of the new discover tab is the ability to "Preview" recommendations.
    I think this feature would be very useful if rolled out to other pages, such as Artist/Album pages, as well as search results so you can easily preview content without interrupting what you are already listening to. Music discovery for me goes far beyond what the Discover tab suggests!
    Implementation
    The behind the scenes work to make this happen might stretch further than I am imagining, although it the new web based pages such as discover and artist pages run on the same platform, how hard can it be to migrate a feature! :) 
    Good news for the Spotify UI team is implementing this would require only minor changes, since it can be easily worked into the already available elements, just like on Discover. 
    For anyone who does know, here is what audio preview looks like in Discover:
    This could easily be added to other pages:
    Artist Pages
    Search Results
    And with a minor change, a track preview button would be epic!:
    Excuse my paint skills! 
    Conclusion
    This feature being rolled out would greatly add to my Spotify experience! Add your kudos if you agree! :) 
    Peter
    I do not work for, or am anway professionally connected to Spotify

    Updated: 2015-07-27Hello!
    Your idea has been submitted a while ago but unfortunately hasn't gathered enough kudos (25 per year). In order to keep an overview of the active ideas in this forum, we will close this idea for now. However this does not mean that your idea has been declined by Spotify.
    If you still feel strongly about your request, we encourage you to post your idea in a little different form again! Maybe now is the right time to receive the support of our community for your suggestion! ;)
    Do you have any further questions on how the idea exchange is managed? Just click here!

  • Error in opening .pdf files from the search results

    Hi All,
    When we do the search it displays the results, upon clikc the link of .pdf files it gives error "<b>File is damaged and cannot be repaired</b>". However, subsequent click on the same link it opens the .pdf file correctly.
    We are in EP50 SP50 - J2EE 6.20
    Any help would be greatly appreciated. Thanks.
    Best Regards,
    Ravi

    Hello Ravi,
    It seems that there might be an issue with the compression settings. Please have a look  at the note 554096 as a starting point.
    Moreover a look for new patches/hotfixes on the Service marketplace in
    Support Packages and Patches -> SAP NetWeaver -> SAP NetWeaver components ( < SAP NW 04 ) -> SAP ENTERPRISE PORTAL -> SAP ENTERPRISE PORTAL 5.0 -> Portal Server
    might point to a fix.
    Kind regards,
    Roland

  • PDF problem: copy and paste results in squares

    hello all,
    I have problem with my PDF's. I'm afraid the problem maybe is not related to the distiller, but I hope someone here can guide me in the right direction. I don't know exactly what the right starting point is for this case.
    The problem is that whenever I copy text from a document (reader 7.0 or Adobe Acrobat 9 pro on windows XP) that is created with the distiller server and I paste the clipboard in a word document, the result is a string of squares, one per character. It seems the font size is preserved, as the squares appear in different size.
    Can any of you guide me with this? The problem seems to be the postscript that I use as a starting point. When I distill it (distiller version seems to be not important, I use distiller server 4.05 for windows) the problem arises.
    What can be the cause of that? Can I change the distiller options to fix this or do I have to change the postscript? Do I have to upgrade the distiller? Has it something to do with the fonts?
    I have an example of a postscript that gives this problem here: http://pastebin.com/EbVGBhAL
    thanks in advance for helping me, Ruud

    OK, Bernd, now I see.
    So the encoding vector maps the character codes to character names; the charstrings map maps the character names to the characters.
    And the character _names_  are used during the copy to clipboard. That is you meant by 'the encoding is incorrect'. The character names in my postscript are like 'c01', 'c02' and so on; the copy to clipboard can't use them. Interesting.
    Bernd, can you tell me how you know that character \016 maps to a 6 in the font table? On the moment, that is my 'missing link'. If I only know how you did it, I could make the mapping myself. I would be very happy....
    thanks a lot, Ruud

  • Acrobat X: PDF to PS and back results in a "nice" PDF, but copy text from it is bad!

    We used this workflow (PDF -> PS -> PDF) to get very small filesizes in any cases.
    Before, we had problems with certain PDFs with many layers.
    But now we have problems with the text within these PDFs.
    Selecting text and copying it (to clipboard) and past it somewhere results in small rectangles (                ).
    Any ideas?
    Thanks
    Norbert

    Acrobat shows very normal text of this PDF:
    Select it with the select tool, ctrl-c, and paste it into e.g. find dialog shows rectangles:

  • Thumbnail titles and search options help

    Is the following  possible?  On the thumbnail sections, we have small thumbnail and  thumbnail title. Is there a way for the title to display in full rather  than only when we hover over. Right now I can only see one line of the  title. When we hover over, we see the rest of the title.
    Also is there a  way to change how the search works. By default, it searches everything  inside the powerpoint. Any way to have it just search a particular  section like title or notes. I know I can edit the XML manually but that would tedious to edit all the content.
    If its not possible yet, then I hope Adobe can come out with a patch. The first one should be easy to implement as it already practically done. The only difference now is I have to hover over to see the title in full. Why can't it just show the full title by default or at least show as much of title possible based on the space that the thumbnail creates. That's the biggest user complaint is they have to hover over to read the full title to determine if they want to look at that slide
    thanks

    I will be out of the office starting  01/04/2010 and will not return until
    12/04/2010.
    If your matter is urgent, then please contact Emma Dawson on ext. 15832.

  • No clickabel title shown when the search result containing .xlsx Office Excel 2010 file

    in sharepoint 2013 search, everything works fine. but there is no tiltle shown when the search result contains xlsx items. and no issue at all on both docx, pptx, and even xls extension, which is lower than office 2010, any ideas?

    Does the April 2015 CU fix that bug? I don't see it written in the CU's description. Regards
    We found out, that it does not fix the problem and so we digged into it a little deeper. First thing is that our
    documents from FileShares without set metadata are those without clickable titles in search results. So one solution might be to start setting metadata for all those documents correctly, but who would want to do that. We would expect the enginge
    to find something as title anyways, i.e. at least the documents name.
    For finding a valubale title out of the documents there is the "MetadataExtractorTitle" component as MappedProperty for the ManagedProperty "Title". Unfourtenatly this component seems to be a little bit bugy. It looks like that in some
    cases it does not correctly return that it couldn't find anything for the document to be used as title.
    Since this component is on pole position in the priority list of "Title" it leads to search results without clickable titles in such cases, where the extractor returns an empty result.
    So what we did is to move MetadataExtractorTitle to the end of the priority list, so the engine at first evaluates the documents properties the classic way. We had to do a IndexReset and a FullCrawl to completely
    apply this workaround. After this we did not get search results without clickable titles anymore. 
    I hope this also helps in your cases.
    You can also get some information about this issue in this blog post: http://consultant.tamjid.com/425/fixed-search-results-not-showing-document-titles/
    Regards

  • How to display the search result without reloading the whole page

    HI,
    I have separate fragments for Search Box to enter keyword and Search Result to display the result. Also I have different sections within the page to put these fragments. So how could I display the results without reloading the whole page.
    Also if I have next button in my search result area, how could I display the search results in next page without reloading all other sections present in our page. Please let me know if any service or idoc function present such that result could be shown in search result section without reloading whole page.
    Please let me know how to restrict page reload for every action within a page.
    Thanks,
    Ramesh
    Edited by: Ramesh_Est on May 27, 2010 3:14 AM
    Edited by: Ramesh_Est on May 27, 2010 8:39 PM

    This is default behaviour of the template of your space. You can create a new page template and than you can create a region for the search results.
    Or you can create a custom taskflow were you use the webcenter taskflows to search for the space.
    Take a look at this white paper:
    Extending webcenter spaces: http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf
    and this one:
    Customizing site templates: http://www.oracle.com/technology/products/webcenter/pdf/owcs_ps1_site_template_wp.pdf
    Edited by: Yannick.O on 13-Apr-2010 02:32

  • Search results not returning file names correctly

    Have an onsite SharePoint Server 2010 Enterprise that contains a number of documents in a document library all containing the word "south" in their title. When a search is run with the keyword "south" all 3 files are shown in the results but only one displays
    the correct title. The other 2 display alternate text (in this case the company name). The links all 3 results are correct, however the title of results is incorrect for 2 out of the 3.
    I have duplicated these results using Office 365 and another on site SharePoint 2010 server.
    I have duplicated these results converting the documents to DOCX format under Word 2007 and Word 2010.
    Obviously, this is an issue with the files, however any ideas where to start looking to uncover where the SharePoint Server is pulling the information from? 
    In the end I need all 3 results to display the current name of the files it finds, not simply some random text with the files from 2 out of 3 of the results.
    Thanks
    Robert Crane
    www.ciaops.com 

    Could it be because of this?
    Pasted from here:
    http://bpostutor.com/post/Hidden-SharePoint-2010-Feature-Changes-Document-Titles-in-Search-Results.aspx
    Hidden SharePoint 2010 Feature Changes Document Titles in Search Results
    SharePoint 2010 has a interesting feature which you may not know about.  It's called Optimistic Title.  It's part of the Office Search engine within SharePoint.  What it does is determine a new, hopefully more relevant title for your documents
    to be displayed in your search results based on document properties or the actual contents of the document (i.e. Text within the file).  As you might expect this is closely tied to the Office document formats such as Word, PowerPoint, Excel, OneNote,
    and Visio.  Your end users may report that the titles that they see for search results differ greatly from the file name or the actual title of the document.  This is particularly evident with PowerPoint files where the name of the first slide
    is often used. The behavior is not entirely predictable.  Different results can be expected from Office 2007 and Office 2010 created files and even those created in earlier versions of Microsoft Office. 
    If you want to change this functionality you need to actually go and edit the registry on your Search role server(s) within your SharePoint farm, restart the osearch14 service and then do a full crawl.  The key you want to modify is the EnableOptimisticTitleOverride.
    The default setting is 1. Change it to 0 to disable the feature.

Maybe you are looking for

  • Open and configure serial port

    Hi, when i use the function configured serial port, i can work with it. for which case i need the function open port. do i need both an in which order? thanks florian 

  • Bridge CS5 doesn't recognize my HTC Incredible 2 smartphone.

    When I configure my HTC Incredible 2 smartphone to connect to my Windows 7 OS as another drive and plug it into a USB port, it recognizes the drive as a camera or card reader but produces the error message: "Failed to obtain thumbnails from the devic

  • ERR-1002:unable to find item id for item page_id in  applicattion 103

    Hi all, I am a newbie to htmldb with ajax. My problem is this.. when my javscript calls an on demand process like ------ var get = new htmldb_Get(null,document.getElementById('pFlowId').value,'APPLICATION_PROCESS=pull_contents',0); -------var id_valu

  • Strange problem with importing music

    Well, I just recently installed iTunes on my PC. I had some music ripped from two CDs which were saved in the My Music folder. I keep all my music in a different folder, however. So I open up iTunes for the first time and go to my library. I see the

  • Hide Repeated Key Valuse is not useful in Broadcast Query

    Hi, I have a problem about the setting "Hide repeated key values" is not useful when broadcasting queries by format XML(MS Excel). Our server support package is SP19. Does anyone has the similar problem? Help. Thanks, Johnson