File Open using Hyperlink

Hello Experts,
I am a new user to BEA Weblogic App server and need help from your side.
I have developed a web application in which i have given a hyperlink of a file inside a jsp
<p>Expiry Report</p>
but when i am clicking on the above hyperlink instead of opening the file with option ( open, save etc), its opening the file in same browser.
That was not the case when i was using any other application server like JBOSS and Tomcat.
So for opening a file thru hyperlink do we have to do any configuration in weblogic.

Sounds like a mime type issue.
Have you set the mime types appropriately by extension in web.xml?
This page shows an example that has Excel in it:
http://www.developer.com/img/2006/06/web.xml.html

Similar Messages

  • Linking KN9 files together using hyperlinks, fades to black

    When linking KN9 files together using hyperlinks, I press play the document being linked to fades in, then out to a black screen and after a couple of seconds returns to the files open files on my desktop.
    I've checked all the setting and it even does it on 2 empty pages I tested with no transitions or document settings.
    If I open both document before pressing play it's OK but because I have several large files being linked together I dont want to have to open all the files before presenting to clients etc.
    Thanks!

    The History
    I reported the hyperlinking problem over a year ago when I updated Keynote from version 5.0.5 to version 5.1. According to the Apple tech that I wroked with at that time the Apple engineers had reproduced the issue and had put it on the fix list (Case 235638615). I then worked with Apple in December 2011 to test a version that supposedly fixed the problem, but did not, so Apple sent me a data logging monitor program which I ran and sent back. The Apple tech asked me to be patient as it might take awhile for the Apple engineers to fix the issue. When version 5.2 came out I reran my testing suite of presentations and found that the hyperlinking issue had still not been fixed. I have tried to contact Apple about my case since July 26th - my emails to the Apple tech with whom I worked back in December bounce back as undeliverable and he does not answer his phone (I have left messages with no replies) plus when I try to use Apple support to follow up on the case, all I get is a message to contact my Apple tech (Doh!). If Apple techs or Apple engineers watch the forums I hope they look into unresolved Case 235638615.
    The Workaround
    Hyperlinking worked fine with 5.0.5 - the .key files would load and display and did not have to be preloaded prior to runing the linked presentations. Version 5.1 through the current version 5.2 require all of the linked presentations to be preloaded prior to running them. Prior to the current version of Lion, I was able to manually run version 5.0.5 to successfully run my system of 32 presentations. The only downsides were that I could not use any transitions or animations introduced with version 5.1 and I had to force quit Keynote 5.0.5. However, when I tried that solution this month, it would not work. So I created an Automator app to load the appropriate subset of presentations for each day of the five day class and used version 5.2. Everything went okay with preloaded presentations.
    I love using Keynote and do not want to go back to PowerPoint, so I hope Apple fixes this issue. I think we have been more than patient with the Apple engineers.

  • Word file opened using WEBUTIL getting locked

    Hi, I am opening a word file using webutil's client_host and it is getting locked even after I close it. There is no winword.exe running in the machine(Task Manager). If I try to open the file, it says 'the file is being used by another user, do you want to make a copy of it ?'. Is any setting in the word itself or is it the default behaviour of client_host. Any ideas ?
    -Pardha

    Pardha,
    this already is filed as a bug and we are going to look at it.
    Frank

  • File open using Webdynpro for java

    Hi,
    I have a file "SAP.JPEG" in remote machine location "
    SAP\NetWeaver\WebDynpro".
    In my webdynpro application...I have a button and the action "OpenFile"...
    My question is on click of the button, how can I open the file "SAP.JPEG".
    Please advice me how to proceed with this.
    Rgds,
    Patana

    Hi,
    it is possible to access the file from the remote system using webdynpro java. your requirements is quite possible.
    the prerequisites are:
    the SAP WebAS Server and the remote system are in the same network, and the folder (in your case "SAP") is shared folder with access permissions.
    let us assume your remote system name is remSys09.
    add an ui element image in the layout. and create an attribute named "image " bind it to the property source
    use this below code to show the image.
    try {
              File f =new File("////remSys09//SAP//NetWeaver//WebDynpro//SAP.JPEG");
              BufferedInputStream bis= new BufferedInputStream(new FileInputStream(f));
              byte[] image = new byte[bis.available()];
              bis.read(image);
              IWDWebResource webResource = WDWebResource.getWebResource(
              image,
              WDWebResourceType.JPG_IMAGE);
              wdContext.currentContextElement().setImage(webResource.getURL());  
         } catch (Exception e) {
              // TODO Auto-generated catch block
              e.printStackTrace();
    Regards,
    Naga

  • Files open using Notepad o always in minimized size

    All of a sudden, when I open a file using note pad, it always open in minimized size, I have to give an extra click to maximaze it.
    I searched on line, and tried something like to setup in Notepad property window, in run field , set it to normal.
    Or tried open it and maximize it and close it, nothing works.
    I can open a new notepad document in big window, but not for all existing files.
    Please help what I should do.
    Thanks,
    SQLFriend

    I found on website this worked for me:
    http://stackoverflow.com/questions/15941211/notepad-files-always-open-as-a-very-small-window
    "I know its just anyhow solution but will work First, close all other windows. Now, grab the corners of the window and drag it to full screen size. Close the window using File:Close, or File:Exit depending what program you're in. Windows will
    remember the last screen size used the next time you open the program. – 
    KodeCeeper Apr 11 '13 at 8:24"
    Thanks
    SQLFriend

  • How to ignore link dialog when file open. using javascript

    open linked eps file from script(below). then the dialogbox show up.
    how do i pass this dialog box?(i want ignore link.)
    but i can't find OpenOptions link property.
    var optRef = new OpenOptions();
    optRef.updateLegacyText = true;
    app.open('A.eps', null, optRef);
    Thanks!
    becky

    temporarily suppress Alerts
    app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
    app.open(File('/c/temp/missinglink.ai'));
    app.userInteractionLevel = UserInteractionLevel.DISPLAYALERTS;

  • Use HyperLink(mailto:...) to open a file?

    A question was posted previously about linking to an image file. The HYPERLINK function allows this if the image is on a web server and can be accessed via http:// but you can't use HYPERLINK to access a local file on your computer (or at least I can't seem to). The HYPERLINK function will also take a mailto: command and will open up your mail client with the address, subject, and message of your desire. I was wondering if it could also use the "attachment=..." part of the mailto command to attach a file to the email. Thus you could bring up a local image in your email client. I failed at getting it to work but I may have been formatting the command wrong. Anyone have experience with the proper formatting or anyone know if this is not a supported functionality?

    As System Events returns an URL when we ask it for a file's properties, I tried to use this URL with no results but the files where on a single machine.
    Maybe it behaves differently on a network.
    To get the URL I uses this script:
    set thefile to "Western 4:photos ???:PA030012.JPG"
    tell application "System Events" to get URL of disk item thefile
    the result is something like:
    "file://localhost/Volumes/Western%204/photos%20%3F%3F%3F/PA030012.JPG"
    %20 is the description of the space character
    %3F is the description of the question mark character
    Yvan KOENIG (from FRANCE vendredi 17 avril 2009 21:56:16)

  • After Export to Excel File error while opening using xmlwriter in silverlight

    Can one help me in fixing following issue after to export to excel had done iam getting following error message 
    "The file you are trying to open, 'test.xls', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do uou want to open the file now ?"
    If i click Yes file opens correctly but it shows above message . Can any one suggest me how to avoid this programatically with the following code.
    I tried by changing the file saving as  .xls to .xlsx  but it doesnt works.
    Public Sub Export()
    Dim ss As String = "urn:schemas-microsoft-com:office:spreadsheet"
    Dim DataType As String
    Dim DataValue As Object
    'Dim DataView As C1.Silverlight.Data.DataView = m_DataGrid.ItemsSource
    'Dim ItemsSource As C1.Silverlight.Data.DataTable = DataView.Table
    Dim XmlSettings As XmlWriterSettings
    Dim ColumnBinding As Binding
    Dim FieldName As String
    Dim DataGridColumn As C1.Silverlight.DataGrid.DataGridColumn
    Dim ColumnIndex As Integer
    Dim J As Integer
    Dim DataGridRow As C1.Silverlight.DataGrid.DataGridRow
    Dim CommonUtil As New GoldCRM.Core.Common.Util
    Dim PropertyInfo As System.Reflection.PropertyInfo
    Dim CellFormat As String
    Try
    If m_DataGrid.Rows.Count = 0 Then Exit Try
    XmlSettings = New XmlWriterSettings
    XmlSettings.Indent = True
    XmlSettings.NewLineOnAttributes = False
    Using myXML As XmlWriter = XmlWriter.Create(m_Stream, XmlSettings)
    With myXML
    .WriteStartDocument()
    .WriteProcessingInstruction("mso-application", "progid=" & ControlChars.Quote & "Excel.Sheet" & ControlChars.Quote)
    .WriteStartElement("Workbook", ss)
    .WriteStartElement("DocumentProperties", "urn:schemas-microsoft-com:office:office")
    .WriteElementString("Author", m_DocumentProperties.Author)
    .WriteElementString("LastAuthor", String.Format("{0} {1}", Application.Current.Resources("EmpFirstName"), Application.Current.Resources("EmpLastName")))
    .WriteElementString("Created", m_DocumentProperties.Created)
    .WriteElementString("LastSaved", m_DocumentProperties.LastSaved)
    .WriteElementString("Company", Application.Current.Resources("REPORTINGSITENAME"))
    .WriteElementString("Version", m_DocumentProperties.Version)
    .WriteEndElement() 'Document Properties
    .WriteStartElement("ExcelWorkbook", "urn:schemas-microsoft-com:office:excel")
    .WriteElementString("WindowHeight", m_WorkbookProperties.WindowHeight)
    .WriteElementString("WindowWidth", m_WorkbookProperties.WindowWidth)
    .WriteElementString("WindowTopX", m_WorkbookProperties.WindowTopX)
    .WriteElementString("WindowTopY", m_WorkbookProperties.WindowTopY)
    .WriteElementString("ProtectStructure", m_WorkbookProperties.ProtectStructure)
    .WriteElementString("ProtectWindows", m_WorkbookProperties.ProtectWindows)
    .WriteEndElement() 'Excel Workbook
    .WriteStartElement("Styles")
    For I As Integer = 0 To m_Styles.Count - 1
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, m_Styles(I).ID)
    If m_Styles(I).Name <> "" Then
    .WriteAttributeString("ss", "Name", ss, m_Styles(I).Name)
    End If
    'ALIGNMENT LOGIC:
    .WriteStartElement("Alignment")
    If Not m_Styles(I).Alignment Is Nothing Then
    If m_Styles(I).Alignment.Horizontal <> 0 Then
    .WriteAttributeString("ss", "Horizontal", ss, m_Styles(I).Alignment.Horizontal.ToString)
    End If
    If m_Styles(I).Alignment.Vertical <> 0 Then
    .WriteAttributeString("ss", "Vertical", ss, m_Styles(I).Alignment.Vertical.ToString)
    End If
    If m_Styles(I).Alignment.WrapText = True Then
    .WriteAttributeString("ss", "WrapText", ss, "1")
    End If
    End If
    .WriteEndElement()
    'BORDER LOGIC:
    .WriteStartElement("Borders")
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Bottom")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Left")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Right")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteStartElement("Border")
    .WriteAttributeString("ss", "Position", ss, "Top")
    .WriteAttributeString("ss", "LineStyle", ss, "Continuous")
    .WriteAttributeString("ss", "Weight", ss, "1")
    .WriteEndElement() 'Border
    .WriteEndElement() 'Borders
    'FONT LOGIC:
    .WriteStartElement("Font")
    Dim myFont As Excel.Styles.Font = m_Styles(I).Font
    .WriteAttributeString("ss", "FontName", ss, myFont.FontName.ToString)
    .WriteAttributeString("ss", "Size", ss, myFont.Size)
    .WriteAttributeString("ss", "Color", ss, myFont.Color.ToString.Remove(1, 2))
    If myFont.Bold = True Then .WriteAttributeString("ss", "Bold", ss, "1")
    If myFont.Italic = True Then .WriteAttributeString("ss", "Italic", ss, "1")
    If myFont.Underline <> 0 Then .WriteAttributeString("ss", "Underline", ss, myFont.Underline.ToString)
    .WriteEndElement()
    Dim myInterior As Excel.Styles.Interior = m_Styles(I).Interior
    .WriteStartElement("Interior")
    .WriteAttributeString("ss", "Color", ss, myInterior.Color.ToString.Remove(1, 2))
    .WriteAttributeString("ss", "Pattern", ss, "Solid")
    .WriteEndElement()
    .WriteStartElement("NumberFormat")
    .WriteEndElement()
    .WriteStartElement("Protection")
    .WriteEndElement()
    .WriteEndElement() 'Style
    Next I
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, "DateStyle")
    .WriteStartElement("NumberFormat")
    .WriteAttributeString("ss", "Format", ss, "General Date")
    .WriteEndElement() 'NumberFormat
    .WriteEndElement() 'Style
    .WriteStartElement("Style")
    .WriteAttributeString("ss", "ID", ss, "HeaderStyle")
    .WriteStartElement("Font")
    .WriteAttributeString("x", "Family", ss, "Swiss")
    .WriteAttributeString("ss", "Bold", ss, "1")
    .WriteEndElement() 'Font
    .WriteEndElement() 'Style
    .WriteEndElement() 'Styles
    'WORKSHEETS:
    .WriteStartElement("Worksheet")
    .WriteAttributeString("ss", "Name", ss, "WORKSHEET")
    .WriteStartElement("Table")
    .WriteAttributeString("ss", "ExpandedColumnCount", ss, m_DataGrid.Columns.Count)
    .WriteAttributeString("ss", "ExpandedRowCount", ss, m_DataGrid.Rows.Count + 100) 'Temporary fix: sometimes 1 row is not added.
    .WriteAttributeString("ss", "FullColumns", ss, m_DataGrid.Columns.Count)
    .WriteAttributeString("ss", "FullRows", ss, m_DataGrid.Rows.Count + 100) 'Temporary fix: sometimes 1 row is not added.
    .WriteAttributeString("ss", "DefaultRowHeight", ss, 15)
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    .WriteStartElement("Column")
    If TypeOf DataGridColumn Is C1.Silverlight.DataGrid.DataGridNumericColumn Then
    .WriteAttributeString("ss", "AutoFitWidth", ss, 1)
    ElseIf TypeOf DataGridColumn Is C1.Silverlight.DataGrid.DataGridDateTimeColumn Then
    .WriteAttributeString("ss", "AutoFitWidth", ss, 1)
    Else
    .WriteAttributeString("ss", "AutoFitWidth", ss, 0)
    End If
    If DataGridColumn.Width.Value <= 100 Then
    .WriteAttributeString("ss", "Width", ss, 100)
    Else
    .WriteAttributeString("ss", "Width", ss, DataGridColumn.Width.Value)
    End If
    .WriteEndElement()
    End If
    Next
    J = 0
    For Each DataGridRow In m_DataGrid.Rows
    J += 1
    If TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow Then
    .WriteStartElement("Row")
    .WriteAttributeString("ss", "Index", ss, J)
    .WriteAttributeString("ss", "AutoFitHeight", ss, 0)
    .WriteAttributeString("ss", "Height", ss, 15)
    ColumnIndex = 0
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    FieldName = String.Empty
    If TypeOf DataGridColumn Is DataGridBoundColumn Then
    ColumnBinding = TryCast(DataGridColumn, DataGridBoundColumn).Binding
    If ColumnBinding.Path IsNot Nothing Then
    FieldName = ColumnBinding.Path.Path
    End If
    ElseIf TypeOf DataGridColumn Is DataGridTemplateColumn Then
    If DataGridColumn.FilterMemberPath IsNot Nothing Then
    FieldName = DataGridColumn.FilterMemberPath.Trim
    End If
    End If
    If Not FieldName.Equals(String.Empty) Then
    ColumnIndex += 1
    .WriteStartElement("Cell")
    .WriteAttributeString("ss", "Index", ss, ColumnIndex)
    .WriteAttributeString("ss", "MergeAcross", ss, 0)
    .WriteAttributeString("ss", "StyleID", ss, "HeaderStyle")
    .WriteStartElement("Data")
    .WriteAttributeString("ss", "Type", ss, "String")
    If DataGridColumn.Header IsNot Nothing Then
    .WriteValue(DataGridColumn.Header.ToString)
    Else
    .WriteValue("")
    End If
    .WriteEndElement() 'Data
    .WriteEndElement() 'Cell
    End If
    End If
    Next
    .WriteEndElement() 'Row
    End If
    If Not (TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow) Then
    .WriteStartElement("Row")
    .WriteAttributeString("ss", "Index", ss, J + 1)
    .WriteAttributeString("ss", "AutoFitHeight", ss, 0)
    .WriteAttributeString("ss", "Height", ss, 15)
    ColumnIndex = 0
    For Each DataGridColumn In m_DataGrid.Columns
    If DataGridColumn.Visibility = Visibility.Visible Then
    FieldName = String.Empty
    If TypeOf DataGridColumn Is DataGridBoundColumn Then
    ColumnBinding = TryCast(DataGridColumn, DataGridBoundColumn).Binding
    If ColumnBinding.Path IsNot Nothing Then
    FieldName = ColumnBinding.Path.Path
    End If
    ElseIf TypeOf DataGridColumn Is DataGridTemplateColumn Then
    If DataGridColumn.FilterMemberPath IsNot Nothing Then
    FieldName = DataGridColumn.FilterMemberPath.Trim
    End If
    End If
    If Not FieldName.Equals(String.Empty) Then
    ColumnIndex += 1
    Dim DataCellValue As Object = Nothing
    If Not (TypeOf DataGridRow Is GoldCRM.Controls.Filter.clsFilterRow) Then
    PropertyInfo = CommonUtil.GetProperty(DataGridRow.DataItem, FieldName)
    If PropertyInfo IsNot Nothing Then
    DataCellValue = PropertyInfo.GetValue(DataGridRow.DataItem, Nothing)
    End If
    End If
    CellFormat = String.Empty
    If DataCellValue IsNot Nothing Then
    Select Case DataCellValue.GetType.Name.ToUpper
    Case "BitmapImage".ToUpper
    DataValue = "Image"
    DataType = "String"
    Case "Hyperlink".ToUpper
    DataType = "String"
    DataValue = "Hyperlink"
    Case "Decimal".ToUpper
    DataType = "Number"
    DataValue = DataCellValue
    Case "DateTime".ToUpper
    If CType(DataCellValue, Date).Year > 1900 Then
    DataType = "DateTime"
    DataValue = DataCellValue
    CellFormat = "DateStyle"
    Else
    DataType = "String"
    DataValue = DataCellValue
    End If
    Case Else
    DataType = "String"
    DataValue = DataCellValue
    End Select
    Else
    DataType = "String"
    DataValue = String.Empty
    End If
    .WriteStartElement("Cell")
    .WriteAttributeString("ss", "Index", ss, ColumnIndex)
    .WriteAttributeString("ss", "MergeAcross", ss, 0)
    If Not CellFormat.Equals(String.Empty) Then
    .WriteAttributeString("ss", "StyleID", ss, CellFormat)
    End If
    .WriteStartElement("Data")
    .WriteAttributeString("ss", "Type", ss, DataType)
    .WriteValue(DataValue)
    .WriteEndElement() 'Data
    .WriteEndElement() 'Cell
    End If
    End If
    Next
    .WriteEndElement() 'Row
    End If
    Next
    .WriteEndElement() 'Table
    .WriteEndElement() 'Worksheet
    .WriteEndElement() 'Workbook
    .WriteEndDocument()
    .Close()
    End With
    End Using
    Catch ex As Exception
    Throw New Exception(ex.Message, ex)
    Finally
    If m_Stream IsNot Nothing Then
    m_Stream.Close()
    m_Stream.Dispose()
    End If
    m_Stream = Nothing
    m_DataGrid.IsLoading = False
    DataValue = Nothing
    'DataView = Nothing
    'ItemsSource = Nothing
    XmlSettings = Nothing
    ColumnBinding = Nothing
    DataGridColumn = Nothing
    End Try
    End Sub
    Krishna

    Hi,
    i have the same issue now where i need to populate the xport file name as report name. can you send me your solution please.

  • Unable to edit XLSM files in SharePoint using hyperlink?

    Hi All,
    Unable to edit .xlsm files using hyperlink, please guide me.
    Thanks
    Ramanjulu Naidu N

    Hi Ramanjulu,
    Did this happen to all users?
    Did the "Read Only/Edit" dialog pop up when you click the .xlsm Name link from SharePoint 2010?
    Could you see the yellow message bar with "Edit Workbook" button when you open the .xlsm file in your Excel Application?
    You can check if the following kb article could solve yellow message bar missing problem, set "Browser File Handling" as Permissive for your web application, or update the registry for client Office application.
    Also check if the add-on "SharePoint OpenDocuments Class" is enabled in your IE 32-bit browser.
    http://support.microsoft.com/kb/2661910
    Thanks
    We are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Opening a hyperlinked password protected file from another Adobe File

    I have a user that has a table of contents pdf file. This file links to other files in the same directory. Originally in XP she would click on the link and a password box would open. She would type in the password and was able to read the file. She has now been replaced with a Windows 7 machine and this is not the case. She is able to open the individual files (without actually knowing the contents) in the directory. The password box will pop up when this occurs. When she tries to access the PDF file from the toc.pdf file she cannot.
    Is there some sort of security permission that is not allowing a pdf file to open a hyperlinked password protected PDF file in Windows 7.
    She is and has been using Adobe Reader X on both machines.
    Thank you.

    I think this may have something to do with your dns settings.  From a shell type ipconfig /flushdns and try again.

  • Use hyperlink to open another page , and pass some parameters to that page

    Hi
    Thank you for reading my post.
    How i can use hyperlink to open another jsp file in a new window meanwhile pass some parameters to it.
    for example i need something like this :
    http://127.0.0.1:8080/myProj/faces/Viewmessage.jsp?messageID=10
    i can not use session bean because i must open that in a new window and use hyperlink not Action
    Thank you

    I tried the following in the equivalent of your Viewmessage (page bean):
            ExternalContext eContext = FacesContext.getCurrentInstance().getExternalContext();
            String text = "Parameters: ";
            Iterator it = eContext.getRequestParameterNames();
            Map requestParams = eContext.getRequestParameterMap();
            while (it.hasNext()) {
                String key = (String)it.next();
                String value = (String)requestParams.get(key);
                text += "; " + key + " = " + value;
            staticText1.setText(text);That works as expected when you reach that new page via a hyper link.
    The session object is also the same as in your `old' window. So be careful about synchronization!
    I hope this helps.
    -- Marco

  • Office documents do not open from hyperlink or from File Open

    I have several users, including myself, that have an issue opening MS Office 2013 documents. The issue can happen in one of two ways. 1st, often when there is already a Word or Excel document open and you try to open another either by File > Open or going
    to the folder and double- clicking the file. It seems that Office just hangs on it and never opens the file. 
    2nd, clicking on a hyperlink in an IE browser. The file doesn't open but the icon for the file (either Word or Excel) shows on the taskbar as if there is an open document. 
    No errors are given and sometimes if you repeat the process a few times the file will eventually open. All users having the issue are on Windows 7 Pro both 32bit and 64bit. 

    Hi,
    We can perform a clean boot to determine whether background programs are interfering with Office applications:
    http://support.microsoft.com/kb/929135
    In case it is due to some sort of macro running on your system, or it could be due to a problem with Word itself. Try to run Word and disable any add-ins that may be loaded by using the following from the command line:
    winword.exe /a
    You can also try to disable any macros that are automatically run when Word is started by using this command:
    winword.exe /m
    Let it me know if this helps.
    Regards,
    Melon Chen
    TechNet Community Support

  • Opening child report through master report using hyperlink

    HI Experts,
    I have a requirement where, I need to create a child report which will open through a master report using hyperlink.
    I have to use BIP desktop (MS word) and need to create a RTF template using XML file.
    Can you please guide me, how I can achieve this?
    Regards,
    Suhasini
    Edited by: 942451 on Jun 28, 2012 9:48 PM

    Take a look at this blog post: http://bipconsulting.blogspot.com/2010/02/drill-down-to-detail-or-another-report.html
    Thanks,
    Bipuser

  • Opening PDF files using preview on some PDF file result in the content not displaying properly. The file I tried to look at has pictures and text. The pictures are displayed ok but the text is shown as pixalated boxes. The same file opens ok via a PC.

    Solutions please. Accessing PDF files online using preview normally works ok. However there are a clutch of files on the mothers union web site that although can be opened, present text as pixalated boxes. The pictures contained in the documents are however displayed OK. I experience the same problem on my Imac and my wifes laptop that runs Lion. The same site has other PDF files that can be opend OK. If I access the same problem files using a PC laptop running microsoft windows, they are opened OK with the text displayed as it should be. This is driving me mad....

    Raymondo1 wrote:
    The offending PDF files were created using word
    Yes. Word 2007. (You can see it in Preview if you do ⌘I or choose Tools > Show Inspector.) And it's the transparency issue. The three pics attached show the Jan 2012 newsletter (a) in Preview, (b) in Acrobat Pro, (c) again in Preview, after I saved it in Acrobat, flattening the transparency.
    For you, the solution is to use Adobe Reader -- with due note taken of
    <http://www.adobe.com/support/security/bulletins/apsb12-01.html>
    For them, I don't know. Presumably, they wish max compatibility for their newsletter, but I really don't know how Office 2007 generates PDF. Maybe they should check transparency settings and flatten before generating PDF? Or perhaps save as PDF v1.4 instead of PDF v1.5? I would use Distiller, but perhaps they can't afford it.

  • Is there a way to open the last file I used in InDesign/Illustrator/Photoshop when I open the app

    I want to create a shortcut (Win7) that will automatically open the last file I used in the above apps when I open the app. Is there a command line switch like /r or /l that does that?

    Thanks, your point is well taken... It would be nice, though, to have the ability to sort a "Last Used" column in iTunes and select a bunch of apps to remove in one shot.

Maybe you are looking for

  • Can I over-ride the default setting in Organizer to allow sorting photos by filename ?

    I am converting slides from the 1970's and 80's to digital files and using PSE 8 to Organize them but it is important to me that they stay in the order of the file name I give them and NOT "Date: newest first or last" because it would seem that PSE,

  • Expression help

    Hello, I got a issue with using expressions. I've been following this book http://www.amazon.com/After-Effects-Expressions-Marcus-Geduld/dp/024080936X and I got to this particular expression: var Dimensions = wiggle(1,30); var horizontal = transform.

  • Elantech clickpad not handled by synaptics

    My Acer s7 has an Elantech clickpad that was, at one point, using synaptics, and edge scroll and such worked properly. It stopped doing that a day after, for no apparent reason (no upgrades or configuration changes). Attempted reinstalling xf86-input

  • When debugging package, local variables always listed as 'null'

    When I'm debugging a package procedure, if I try to inspect any local variables by hovering the mouse cursor over them, the floating text that appears always says they're set to null - even though I know (because the procedure works as expected) that

  • Accounting for a specific expense in Automotive Industry

    Hi to everyone We currently on the implementation of SAP at a motor vehicle dealership. I would like to know how I will account for registration fee of a car when doing an invoice. Registration fee is paid by the dealer on behalf of the client. This