SSRS Action URL via javascript:void(window.open doesn't work in IE

Hi,
I am using the following code to open "google.com.au"
in a pop-up window through SSRS Report -> Action -> URL 
="javascript:void(window.open('"+
"http://www.google.com.au/" +
"','_blank','scrollbars=true,status=true'))"
The script work fine in Chrome and FireFox but not IE ( we are using IE 11.0 ), any idea what's going wrong?
( When we click on it ; Nothing appear in IE )
Thanks.

Hi Yu,
1. We are using SQL Server SSRS 2008 R2 in IE 11.0.9600.17501 environment ( Means we already have the latest IE 11 Patch )
2. Did you try put in Javascript in SSRS Cell -> Placeholder Properties -> Action -> URL?     
    i.e. ="javascript:void(window.open('"+ "http://www.google.com.au/" + "','_blank','scrollbars=true,status=true'))" 
3. All reports are having the same phenomenon.
4. I used F12 and tried IE7, IE8, IE9, IE10 all same ( ALL couldn't  POP UP window ).
5. Please refer to attachment, I found out that when I go to Cell -> Right click -> Inspect Element & change
target="_top" to
target="_self" then the problem gone.
    BUT... how to set target="_self" in SSRS? 
Regards,
Frank

Similar Messages

  • Window.opener doesn't work

    I have a website that seems to have just broken with the 18 or 18.0.1 release. The specific code that is breaking is a call to window.opener.
    The error I see in the console says: TypeError: window.opener.Assignments is undefined
    I checked this with IE and FF on our test servers as well as our comparison server (runs last releases version of the code) and they all have the same problem so it's not something that changed in our codebase.
    Can anyone tell me why there are javascript errors on calls to window.opener with the latest release and how I can work around this?

    I think I found the answer to my own question. In case anyone stumbles on this and it's useful.
    I think the problem was that the code was calling window.opener.form when it appears in firefox you have to call window.opener.document.form. Since both work in FF and IE and since it seems there are only a few places in the code where we aren't calling window.opener.document I'll just update the code to do that.

  • netui:form how do i create Action URL in JavaScript

    hi,
    i want to submit the <netui:form> along with action form data to JPF from the
    java script,
    i can call the action method from the java script but actionForm is not passing
    to JPF....
    pls guide me....
    vijay

    The javascript that you suggested is similar to what we're using. When the onChange
    message is fired, both bits of javascript produce the following url;
    http://localhost:7001/mpsportal/getVersion.do?product_id=1
    This works fine in the weblogic browser but not in portal. If you use an anchor
    to fire the action, portal creates the following url;
    http://localhost:7001/mpsportal/mpsportal.portal?_nfpb=true&portlet_1_1_actionOverride=/portlets/task/getVersion
    So I've tried to put the 'extra bits', namely 'mpsportal.portal?_nfpb=true&portlet_1_1_actionOverride=/portlets/task/'
    into the javascript as below;
    javascript:window.location='mpsportal.portal?_nfpb=true&portlet_1_1_actionOverride=/portlets/task/getVersion.do?product_id='+document.forms[0][getNetuiTagName('product_id')].value;
    When this is run in portal it produces exactly the same url that portal produces
    except it has the parameter tagged onto the end;
    http://localhost:7001/mpsportal/mpsportal.portal?_nfpb=true&portlet_1_1_actionOverride=/portlets/task/getVersion.do?product_id=1
    Unfortunately portal doesn't like the parameter on the end and gives an error
    message 'Unable to find action getVersion.do?product_id=1'. The problem is that
    the value on the form, the product id in this case is not stored when the javascript
    jumps back to the server so it has to be sent in the url.
    If we can find a way of sending these values through in the url without portal
    complaining OR forcing the form to submit its values then its problem solved.
    Thomas Cook <[email protected]> wrote:
    Does this work?
    onChange="javascript:window.location='getVersion.do?product_id='+document.getElementById(getNetuiTagName('product_id',
    this)).value;"
    When you say the problem is in the onChange() method in the NetUI tag,
    can you elaborate on what you think might be happening?
    Thomas
    Steve Hicks wrote:
    Thomas
    We want to get java script to work with a netui:select tag so that whenthe user
    selects it, we populate a different netui:select tag (this requiresa call back
    to weblogic). Nothing to do with forms in Vijay's post!
    Here is a portion of our JSP:
    <td>
    <netui:select dataSource="{actionForm.product_id}"
    optionsDataSource="{pageFlow.taskProduct.taskProductSL}" nullable="false"multiple="false"
    onChange="javascript:window.location='getVersion.do?product_id='+document.forms[0][getNetuiTagName('product_id')].value;"
    tagId="product_id"></netui:select>
    </td>
    This works in the workshop debugger but NOT when we use it via portal(where nothing
    happens). The problem is in the javascript 'onChange' method in thenetui tag...
    Regards
    Steve H
    Thomas Cook <[email protected]> wrote:
    Getting back to Vijay's original post - something like the following
    should work (I can't confirm this code works since I'm in the middle
    of
    a build), but I have done this before. Does this not work? It should
    submit the form from javascript, as Vijay requests, passing the field
    value to the JPF via the action form.
    <netui:form tagId="myForm" action="doSomething">
    <netui:textBox dataSource="{actionForm.doSomethingValue}"/>
    <netui:button value="Submit" onClick="return doSubmit()"/>
    <script language="javascript">
    function doSubmit()
    var form = document.getElementById( getNetuiTagName( "myForm",
    this ) );
    form.method = "post";
    form.submit();
    return true;
    </script>
    </netui:form>
    Steve Hicks wrote:
    We have this problem and it seems quite sad that you can not perform
    this (typical)
    function using portal. Anyone from BEA watching? Could they do something
    about
    this in sp3?
    "Anant Kadiyala" <[email protected]> wrote:
    Beware that it is not entirely good idea to have action url in the
    Javascript.
    I had some problems with it. It works fine when you test it at the
    pageflow
    level.
    But when you pull the pageflow into a portlet, it starts acting strange.
    The urls
    that the portal generates behind the scenes dynamically, get messed
    up
    and you
    will notice that the new acion opens in a new browser window and
    will
    not have
    the context of the portal.
    Although the docs say we could use action urls in Javascript, youmight
    want to
    make sure it works in the portal context.
    Anant
    "julie" <[email protected]> wrote:
    do you still need help making an action url in javascript?
    "vijay patel" <[email protected]> wrote:
    hi,
    i want to submit the <netui:form> along with action form data to
    JPF
    from the
    java script,
    i can call the action method from the java script but actionForm
    is
    not
    passing
    to JPF....
    pls guide me....
    vijay
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
    <title></title>
    </head>
    <body>
    Getting back to Vijay's original post - something like the following
    should work (I can't confirm this code works since I'm in the middle
    of
    a build), but I have done this before. Does this not work?
    It should
    submit the form from javascript, as Vijay requests, passing the field
    value to the JPF via the action form.<br>
    <br>
    <tt><nobr><netui:form tagId="myForm" action="doSomething"></nobr><br>
    <nobr> <netui:textBox
    dataSource="{actionForm.doSomethingValue}"/></nobr></tt><br>
    <tt><nobr> <</nobr><nobr>netui:button value="Submit"
    onClick="return doSubmit()"/></nobr><br>
    <nobr> <script language="javascript"></nobr><br>
    <nobr> function </nobr></tt><tt><nobr>doSubmit</nobr></tt><nobr></nobr><tt><nobr>()</nobr><br>
    <nobr> {</nobr><br>
    <nobr> var form = document.getElementById(
    getNetuiTagName(
    "myForm", this ) );<br>
    form.method = "post";<br>
    form.submit();</nobr><nobr></nobr></tt><tt><nobr></nobr><br>
    <nobr> return true;</nobr><br>
    <nobr> }</nobr><br>
    <nobr> </script></nobr><br>
    <nobr></netui:form></nobr></tt><br>
    <br>
    Steve Hicks wrote:<br>
    <blockquote cite="[email protected]" type="cite">
    <pre wrap="">We have this problem and it seems quite sad that youcan
    not perform this (typical)
    function using portal. Anyone from BEA watching? Could they do something
    about
    this in sp3?
    "Anant Kadiyala" <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a>
    wrote:
    </pre>
    <blockquote type="cite">
    <pre wrap="">Beware that it is not entirely good idea to have action
    url in the Javascript.
    I had some problems with it. It works fine when you test it at thepageflow
    level.
    But when you pull the pageflow into a portlet, it starts acting strange.
    The urls
    that the portal generates behind the scenes dynamically, get messedup
    and you
    will notice that the new acion opens in a new browser window and will
    not have
    the context of the portal.
    Although the docs say we could use action urls in Javascript, you might
    want to
    make sure it works in the portal context.
    Anant
    "julie" <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a>
    wrote:
    </pre>
    <blockquote type="cite">
    <pre wrap="">do you still need help making an action url in javascript?
    "vijay patel" <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a>
    wrote:
    </pre>
    <blockquote type="cite">
    <pre wrap="">hi,
    i want to submit the <netui:form> along with action form data to
    JPF
    </pre>
    </blockquote>
    <pre wrap="">>from the
    </pre>
    <blockquote type="cite">
    <pre wrap="">java script,
    i can call the action method from the java script but actionForm is
    </pre>
    </blockquote>
    <pre wrap="">not
    </pre>
    <blockquote type="cite">
    <pre wrap="">passing
    to JPF....
    pls guide me....
    vijay
    </pre>
    </blockquote>
    </blockquote>
    </blockquote>
    <pre wrap=""><!---->
    </pre>
    </blockquote>
    </body>
    </html>

  • After Upgrading Acrobat Reader XI to Acrobat XI Pro the previewer in Outlook and Windows Explorer doesn't work.  I have to set the default program for .pdf's to Acrobat Reader inorder for the previewer to work.

    After Upgrading Acrobat Reader XI to Acrobat XI Pro the previewer in Outlook and Windows Explorer doesn't work.  I have to set the default program for .pdf's to Acrobat Reader in order for the previewer to work.
    Can anyone recommend a solution?

    If I set the default program for viewing PDF as Acrobat XI Pro the a PDF file will open with Acrobat XI Pro, but in Outlook I will get a white screen and the information bubble "This file cannot be previewed because there is no previewer installed for it" and in Windows Explorer I get a white screen in the preview pane.
    My Acrobat version is 11.0.10
    I am running Windows 7 Professional with Service Pack 1
    My Internet Explorer is Version 11.0.9600.17691
    Update Versions 11.0.17 (KB3032359)
    I am running Microsoft Office 2013

  • GPO don't run specified windows applications doesn't work to in win 8.1. any ideas why?

    GPO "don't run specified windows applications" doesn't work to in win 8.1. any ideas why?  it is enabled and list of progs is entered however I can still run all progs on list.  This is a local machine not on a domain.  I must
    have this work to disable games, IE, MSpaint, etc.  Computer has been restarted since enabling the GPO and also have enforced the GPO via CMD prompt.  worked fine on windows 8 and 7.

    Any success ?
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • Question '''OS Win2000''' using '''FireFox 5.01 - portable''' Problem: '''Plug-in for Windows-Mediaplayer doesn't work

    '''OS Win2000'''
    using '''FireFox 5.01 - portable'''
    Problem:
    '''Plug-in for Windows-Mediaplayer doesn't work '''
    cause: presumably - Win2000 only copes with WMP 9.0
    Your FF 5.01-portable works only for WMP 12 (??)
    I have no problems with WMP when I use my regular FF 3.6 on this old Win2000. - WMP - Plug-in of FF3.6 works perfectly on my Win2000
    '''question:'''
    What can I do to get WMP running on my Win2000 using FF5.01-portable ?''''''

    See the Portable Firefox support forum for help with that. <br />
    http://portableapps.com/forums/support/firefox_portable

  • JavaScript III - window.open()

    Hi,
    Can somebody share a sample program for the following scenario -
    Pass values and display values in a new window, basically using the function window.open(); Appreciate it.
    Regards,
    V M.

    here is some details for the web scripting:
    DataQuery getQueryObject()
    Obtains a reference to the underlying query object that supplies data to the applet. Once a reference is obtained, its properties can be manipulated.
    void refresh()
    Updates the query to the current time and redraws the applet.
    void setPropertyValue(String propertyName, String newValue)
    Sets a named value that can be accessed by any applet during the browser session. Once the browser is closed, the value is no longer available. This can be used to create properties that can be passed between Web pages. For example, if you select a batch on one Web page, a new Web page with a detailed list of the materials consumed in the batch could appear. The batch number could be placed in a session parameter on the main page and picked up by the dialog box. These properties can also be used to pass values to SAP xApp Manufacturing Integration and Intelligence (SAP xMII) reports.
    String getPropertyValue(String propertyName)
    Gets a named value that was set using the setPropertyValue method. This value can be used to set the applet.
    void showDetail()
    Displays an HTML page in which the raw data associated with the current applet is displayed in a table.
    void showHelp()
    Displays the applet help.
    void saveAsCSVFile()
    Initiates a transfer of the raw data associated with the current chart to a local CSV file.
    void showXMLDetail()
    Displays an HTML page that contains an XML view of the raw data associated with the current applet.
    void showDetailUsingGet()
    Displays an HTML page in which the raw data associated with the current applet using HTML Get is displayed in a table.
    String saveImage()
    Gets the URL reference to the GIF representation of the image displayed by the applet; it is only supported by iGrid, iChart, and iSPCChart.
    void showStatistics()
    Displays an HTML page that contains the statistical metrics associated with the chart. It is only available when the underlying query is from a Tag connector.
    void showCurrent()
    Displays an HTML page that contains the values associated with the chart. It is only available when the underlying query is from a Tag connector.
    boolean getSelectionEventEnabled()
    void setSelectionEventEnabled(boolean newValue)
    Gets and sets the property that enables a selection event on an applet. This method enables or disables the event through Web page scripting.
    boolean getUpdateEventEnabled()
    void setUpdateEventEnabled(boolean newValue)
    Gets and sets the property that enables an update event on an applet. This method enables or disables the event through Web page scripting. You can use it to synchronize the scrolling of multiple applets.
    Object createColor(String strColor)
    Controls colors at runtime. The value of the strColor parameter can be a color name or an HTML color string in the format #RRGGBB. The returned color object can be assigned to a color property in an applet.
    String colorToString(Color cColor)
    Controls colors at runtime. A color property of an applet property can be converted to a string and used in HTML.
    String encodeURLItem(String strItem)
    Takes a string as an input and the URL encodes the string so it can be passed over the URL command line. The returned string has spaces and other unrecognized attributes replaced with URL codes.
    String formatDate(String strDate, String fromFormat, String toFormat)
    Reformats date/time strings. The parameters include the incoming date/time string, the incoming format (so the string can be properly parsed), and the outgoing format. The resulting date/time string is returned.
    String formatNumber(double dValue, String sFormat)
    Returns a string for the value in the specified format.

  • Why doesn't the replace option of JavaScript's window.open method work with FireFox 3 or 4?

    The photo html files on the Fanac Fan History project's website are now setup to be displayed properly when JavaScript is disabled and reformatted by a php script when JavaScript is enabled. The reformatting adds some features and positions each photo's caption and credits based on the width of the photo and the browser's page width. This worked well except that when a photo page was accessed the browser's back button wouldn't work properly. This was because I had failed to include the replace option in my windows.open statement. The statement now reads fileWindow = window.open(fileURL, "_self", "", true); and this has cured the problem with IE and the other browsers but it still doesn't work with FireFox.
    PS: You need to add "Always" to "This happened".

    We're sorry to hear that your Firefox seems to be crashing when you open it. Please perform the following steps to give us a crash report ID that helps us find out more about the cause of the crash.
    #Press the following shortcut to get a Run window: [Windows] + [R]. This should bring up a window that contains a text field.
    #In that text field, enter %APPDATA% and press Enter. An explorer window should open.
    #From that explorer window, double-click on the ''Mozilla'' folder, then double-click on ''Firefox'' and then on ''Crash reports''. Double-click on ''submitted''.
    #Now, you should see a list of files that contain reports. Go to ''View'' > ''Arrange Icons by'' > ''Modified'' to get the most recent files at the top of the window.
    #Open the most recent 5 files with a text editor and copy the IDs.
    #Paste each ID with '''bp-''' into the reply window on the forums.
    Thanks in advance!
    You can find more information and troubleshooting steps in the [[Firefox crashes]] article.

  • Struts portlet: generating rewritten action URL inside javascript

    I'm migrating a standalone struts application written for WL 8.1 to WL 10.3 portal environment. The idea is to make a portlet out of the struts app. I've got the application almost working, url rewriting works beautifully by using *<html:link action=...>* in jsps with the weblogic struts-adapter taglibs. But now I have a problem with the incorporated javascripts... For example I'm using a script to submit a html:form and in the script I'm trying to call an action like so:
    *function submit() {*
    document.myForm.action = "action_string";
    document.myForm.submit();
    return true;
    The problem is that I can't use the struts action name as usual (action.do) since that would lead to a standalone page instead of the portal desktop view. WL portal has a rewriter that translates the individual application action URLs to portal URLs so that the uniform view remains as the user interact with the applications. Now my question is: Is there a way to invoke this URL rewriter somehow to do the rewriting for action for me or alternatively, is there a way to get all the URL blocks so I can build the line myself?
    The trick is that I need to get this URL dynamically, so that if I rename the struts module or the portlet, I don't have to update all my javascripts as well. The portal URI that I need is of form (dynamic parts with bold):
    / contextPath / portalDescriptionFile.portal ?_nfpb=true& _windowLabel= portlet_x & portlet_x _actionOverride=%2F moduleName %2FactionName& portlet_x method=methodName
    So far I've been able to get the portlet label (portlet_x) with a scriptlet:
    *<%*
    PortletPresentationContext portletPresentationContext = PortletPresentationContext.getPortletPresentationContext(request);
    portletPresentationContext.getInstanceLabel();
    *%>*
    I can also get the moduleName and contextPath, but not the the rest. So at minimum I would need a way to dynamically get the "+path+" before the "+query+" as in "+/contextPath/path?query+". The "+query+" I can construct with the info I have if necessary.
    Can anyone help me with this?
    If someone knows a good API page for WL 10.3 portal/portlets where I could look for more internal objects (like PortletPresentationContext) containing the data I need, that would also be a great help!
    Edited by: karikko84 on 28.8.2009 3:44

    When constructing links, you have to use the pdk-specific struts tags, for example:
    <pdk-struts-html:link href="/portal/menuPage.do">Also, you need to use the pdk struts tag library:
    <%@ taglib uri="/WEB-INF/pdk-struts-html.tld" prefix="pdk-struts-html" %>Peter

  • If i run program via Runtime.getRuntime().exec, UrlConnection doesn't work.

    I have two pograms.
    One GUI which allow us directly runs server application and display output.
    Two server application which operates with http.
    Under Windows XP operation system everything works fine. If i run server application via comand like " java -jar **** " , everything works fine. But if i run server application via GUI under Win2000, server application doesn't work. Application freeze if try to get output stream from Url connection.
    Can you help me please?
    url = new URL("http://neco");
    connection = (HttpURLConnection)url.openConnection();
    connection.setRequestMethod("POST");
    connection.setDoInput(true);
    connection.setDoOutput(true);
    connection.setAllowUserInteraction(true);
    connection.setReadTimeout(10);
    connection.setUseCaches(false);
    // Right There !!!
    output = new DataOutputStream(connection.getOutputStream());

    It is probably because the getOutputStream() or getErrorStream() of Process is blocked waiting for you to read from those streams.
    See http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.htmlIn short read from getOutputStream() from its own thread and also read from getErrorStream in another thread. If you are using 1.5 you can use ProcessBuilder and combine the OutputStream and ErrorStream into one stream and then you just need one thread. For you information, in 1.5 Runtime.exec() just call through to ProcessBuilder.

  • Javascript created in fireworks doesn't work with touch ipad and mobile devices.

    My website was created in DreamWeaver.
    Navigation is a popup/dropdown menu run by javascript created in FireWorks
    Website: www.woodstockchamber.com
    Problem:
    The mouse over doesn't work on iPads and mobile devices.
    The menu opens up and the category highlights, but that is where the action stops.
    It doesn't complete the action and link.
    It has worked well for years on desk tops and laptops.
    This is a serious issue for me as iPads and mobile devices are so popular and used a lot in this tourist town.
    Thanks,
    Norm

    http://www.smashingmagazine.com/2010/05/28/web-development-for-the-iphone-and-ipad-getting -started/
    http://www.inspiredm.com/2010/02/09/ipad-design/
    http://blogs.sitepoint.com/2010/06/23/develop-for-ipad-with-html5-trial-and-error/

  • AnyConnect Client profile: group-url in server-list with OGS doesn't work propertly

    Cisco Adaptive Security Appliance Software Version 8.4(4)1
    Device Manager Version 7.0(2)
    Hardware:   ASA5510, 1024 MB RAM, CPU Pentium 4 Celeron 1600 MHz
    #show webvpn anyconnect
    1.disk0:/anyconnect-win-3.1.00495-k9.pkg 1 dyn-regex=/Windows NT/
       CISCO STC win2k+
       3,1,00495
       Hostscan Version 3.1.00495
    Profile in atthach-file. After this profile is uploaded to client Optimal Gateway Selection doesn't work propertly:
    When 'vpn1.mydomain.com/mygroup' (it best TTL server) is unreachable, then OGS try to be connected to other servers, but without group-url, for example 'vpn2.mydomain.com' (instead of 'vpn2.mydomain.com/mygroup')

    Anton,
    It MIGHT be cosmetic:
    http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtz92140
    If not please open up a TAC case and provide DART for such a connection.
    M.

  • HT4061 Drag and drop function in Windows 8 doesn't work with iTunes.

    How to import music files from Windows 8 to iTunes 11.0.3 x64? Drag and drop function doesn't work. Thank you!

    > Straight drag and drop to PS produced a warning message so, when I then tried to drag on to the PS task bar button, I got the Ø cursor but on moving into the PS window and releasing the mouse button there, the file opened.
    That's the strangest behavior that I would imagine. Are you using the default vista aero theme or you have turned down or using custom theme and visual effects?
    > it needs to be pointed out that this is a really bad habit that will smack you in the face one day...
    I don't understand what you mean. If you are concerned about viruses, in my understanding copying and opening a file from the internet which is what "Save image as" does, is less safe than coping and pasting pixels. Copying and pasting pixels is the same as coping and pasting text from your web browser, it can't execute hidden code. If that was possible everybody will get viruses at the moment text or pixels are displayed on your browser.
    By the way when you view a page from the internet, image files are already downloaded in the temp folder of your computer but only the browser uses them unless you open them from there and use in another program. So if you have a virus protection the images are already scanned.

  • Flashing in Windows Modes doesn't work

    I'm running Windows Vista Business, and when I try to update my BIOS in windows mode, it fails.
    I'm using MSI Live Monitor 3. After finding the bios (1.5), I use "windows mode" to flash.
    A command-line window comes up, and I can see everything getting flashed. However, after it's done it reboots automatically. After both the initial splash-scrren and the SATA-screen showing my drives, I get an CMOS checksum failed error, and I can either start fiddleing with the setting themselves, or just use defaults.
    I've tried both.
    And after both times, after I get back to windows again, Live Monitor 3 says it has an update for me - bios 1.5. So I can only conclude it wasn't installed, somehow.
    Before doing the install, I closed ALL programs, except windows itself. (I'm saying this, because Live Monitor 3 wishes me to close it..........)
    I cannot flash via a floppy-drive because I don't have one.
    Another problem is that DigiCell keeps telling med: "Failed to load driver". I have no idea what it even IS, but I'd just like to see what free software I get. :P
    Thirdly, has anyone heard of problems with external USB drives and MSI mobo's? I have a 500gb My Book drive that throws I/O errors in Vista, but not in XP on another PC...
    My PC is:
    MSI P965 Platinum,
    2.13ghz Core 2 Duo,
    2048mb DDR2 RAM, 533 Mhz
    Regards,
    Søren Andersen

    Thank you Jack!
    It is indeed updated to 1.5 - I just didn't notice, since I had the full-logo thing on.
    I also updated the drivers, but unfortunately that didn't help. :-(
    I've been trying since friday to fix this both on the WD forum (http://websupport.wdc.com/forum/topic.asp?TOPIC_ID=5948) and on Microsoft's tech forum (http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.windows.vista.hardware_devices&tid=dc8d09ab-0d98-452c-b2d3-a0948f756dda&cat=en_us_9F280F8D-E6BF-F78C-234A-416CF09D5DC5&lang=en&cr=US&sloc=en-us&m=1&p=1)
    but we've still been unable to fix it...
    To be honest, I don't think it has anything to do with hardware. The drive doesn't work properly on this PC (MSI / Vista) but does on my laptop (Dell / XP), but it has to be checked...
    Basically, it keeps throwing 0x8007045D I/O errors, but I can see noone in here has had similar problems.
    So, thank you for your extremely swift replies and very great help!
    Regards,
    Søren

  • X11 forwarding from mac to windows laptop doesn't work

    Hi,
    I ssh into my mac computer from my windows laptop. However, the x11 forwarding is not working (ie, the x window is not forwarded to my laptop). I'm pretty sure this is a problem with the mac and not my laptop, because if I ssh into a unix machine the x window forwarding to my laptop works fine. Does anyone know how to get the x11 forwarding to work?
    thanks
    Beth

    beth23 wrote:
    I'm trying to forward the windows from xemacs and gnuplot.
    What happens when you try to run them? Do you get any kind of error message? Have you tried just xterm?
    Is it possible you have DISPLAY set to something on the Mac side?
    Currently I am using putty to connect to the mac via ssh (and have the enable X windows forwarding box checked), and I have Xming running on my laptop to display the x windows. This setup works fine for connecting to unix machines, but it doesn't work for connecting to the mac.
    Does the Mac have the firewall turned on?

Maybe you are looking for

  • Create pdf using Adobe acrobat sdk

    Hello, I'm new to this concept of using adobe sdk to convert a html into pdf.I would like to know few details regarding this.. I went thorugh the documentation but I did not get any help about the vector image support in the pdf and I aslo want to kn

  • How to Increase the length of Material Code (MATNR)

    Hi all, I have the requirement to increase the size of Material code (from 18 characters to 30 Characters) . Is their any provision for this in ERP 2005. Let me know. regards, Sheo

  • I bought my Macbook Pro on 11-26-2007 and it crashed on 11-26-2009!

    On November 26, 2007 I bought my Macbook Pro 15'' from KSA (But I live in Lebanon). On November 26, 2009, my Macbook Pro suddenly went to sleep and refused to wake up. It's actually not turning on anymore, at all. I took it to fix it and they told me

  • Illustrator cs4

    I teach a graphic arts class grades 9-12. We are currently implementing Illustrator CS4 into our curriculum. I am (with limited success) learning it on the fly. We are using the Adobe Illustrator Classroom In A Book. I am finding that the students ne

  • Modifying column properties in Derby DB problem

    ALTER TABLE photo MODIFY BYTES MEDIUMBLOB NOT NULL; This works in MySql for changing "bytes" column of table photo from a blob to medium blob, but doesnt work for Derby. Someone has a clue ? Derby docs state that column type cannot change, but I dont