Doesn't display application name

Hello Mozilla Support
we have a problem since the inbuilt PDF-viewer came to Firefox. We can't use the inbuilt pdf-application from Firefox, because printing with it is to slow on our system.
But this feature is not our Problem.
We just set pdfjs.disable to TRUE and changed the action for Portable Document Format (PDF) to "Always ask". The reader is disabled but now we have a Bug at the point where you choose between download and application. If you choose an application it will open your pdf as always. But after this the Bug happens.
Firefox =< 18.0.2 does remind the application you have chosen even if you don't activate the "Do this automatically for files...". In the Field "Open with: pdf-viewer" the name (pdf-viewer) is displayed.
Firefox >= 19.0 the default after you opened an application switches back to "Save File" and the name of the last used application is not shown. If you toggle the "Open with" field and press OK even if there is no application displayed, it will start the last application u used for this file type, but it's not displayed before.
The bug hinders us to update Firefox. We use Firefox for our users. They don't know where to find the applications and if no application is shown, they will believe none is chosen.
I hope we find a way to fix this.
Thanks for helping me.
Arne Raetzer

The File is just a test pdf file on our Web host. But The Problem is not the file. It's the same if you use this.
[http://www.einfach-fuer-alle.de/artikel/pdf_barrierefrei/download/pdf_barrierefrei.pdf Random test file].
Before the update, Firefox also just picks the MIME defaults from "~/.local/share/applications/". After the Update, firefox just don't use this MIME database anymore (i think this is the main problem)
>>"Have you tried checking the "Do this automatically…" option (FürDateien dieses Typs…), selecting Open With (Öffnen mit) and manually choosing the PDF reader application? Once you do that and click the OK button, you should have a new PDF entry under Options - Applications. "
There is only one application/pdf entry in the menu. I have tried it but than happens the Display error. We need the Option for our users so they can download and open the file. My Programm is listet in the menu, but if i choose to "allway ask" the Programm is not shown at the "Open with" point.
The Option "Open with" is selectet BUT it looks like no Programm is chosen(in german "Durchsuchen..."). If i just Press "OK" and don't choose a Programm, it will start the Programm listet in Options - Applications.
If no Programm is chosen i should normaly get an error ("" can't be chosen" or something like that).
Hmm PDF-File and PDF-Document can just be a changed name in the firefox description.

Similar Messages

  • The Video app in OS7 update doesn't display file names.

    The Video app in OS7 doesn't display file names under the image.
    How can I identify my video files without having to open each file to access the file name.
    Is there something I am missing or is this just an omission in the OS7 upgrade.
    I am a music teacher and this lack of file names makes the app virtually useless for use in the classroom.

    Agreed. This has been a problem with TV Shows in the Videos app since forever, but at least it used to put the name under Movies. Now instead fixing it for TV Shows in iOS 7 they've done the opposite and made Movies fail the same way as TV Shows always have!
    Apparently it still lists the title for Home Videos, so the best work around for now is probably to reclassify all your Movies as Home Videos. Sigh.
    Apple's Videos app development team seem to be unaware that iTunes can store and play movies and TV shows that don't come from the iTunes Store, videos that don't have covers, and that need to display the names and other info from iTunes for them. They also seem to not understand that the default grid view for videos is totally inadequate for users with scores or hundreds of movies and TV shows that they home share to their iPads and iPhones from iTunes. The Videos app needs a list view at least, as well as a grid view.
    All they have to do is look at how the Apple TV handles the same files and meta-data from iTunes and provide something similar for the iPad and iPhone. Why after all these years they still don't get that I have no idea.

  • Bank transfers: the file DME doesn't display the name of the company

    Hi all,
    In the DME file created by t.code F110, the record 20, doesn't display the name of the company which orders the bank transfer.
    Where should I put it?
    Thanks

    Neeraj,
    Its ECC6.0 and I upload the file by going into their website and putting userid and password and then upload the fiel over there and click send.Is there any possibility the file contains any hidden characters which we dont see? where should I send you dummy file whats your email id.
    Regards
    Shaun

  • SSO Deployment-specific login - howto display application name

    I am deploying 4 forms applications using a single SSO server/OID for authentication. The problem is, I want to display the application name on login.jsp, depending on which application was requested.
    For example:
    If the URL is http://localhost/forms/frmservlet?config=app1, then login.jsp should display "App1".
    If the URL is http://localhost/forms/frmservlet?config=app2, then login.jsp should display "App2".
    ...... and so on. Has anyone ever done it before? I am using Oracle 10g Release 2.
    Thanks,
    Sanjay Gulabani

    Thanks to timktaylor's earlier post (messageid=1184036), I was able to solve this problem. I am using Oracle 10g (10.1.2.0.2) Single Sign On and Forms Services.
    For anyone who is facing a similar problem, I am pasting the code - just use it as it is in login.jsp - of course, you will need to change app1 and "APP 1" etc to suit your application names.
    (%ORACLE_HOME%\j2ee\OC4J_SECURITY\applications\sso\web\jsp\login.jsp):
    <%
    String str_token = null;
    try
    str_token = request.getParameterValues("site2pstoretoken")[0];
    catch (Exception e)
    try
    str_token = request.getParameterValues("Site2pstoreToken")[0];
    catch (Exception e1)
    str_token = null;
    if(str_token == null)
    throw new Exception("The site2pstoretoken value not found");
    //Code to decode site2pstoretoken starts here
    java.sql.Connection con = null;
    try
    oracle.jdbc.pool.OracleDataSource ds = new oracle.jdbc.pool.OracleDataSource();
    ds.setURL("jdbc:oracle:thin:@ngt-hyd:1521:orcl");
    con = ds.getConnection("orasso", "UBrWt0c9" );
    java.lang.String query = "begin ? := wwsso_utl.unbake_site2pstore_token('" + str_token + "',?); end;";
    java.sql.CallableStatement cstmt = con.prepareCall(query);
    cstmt.registerOutParameter(1, java.sql.Types.VARCHAR);
    cstmt.registerOutParameter(2, java.sql.Types.VARCHAR);
    cstmt.executeQuery();
    java.lang.String x = cstmt.getString(1);
    if (x.toLowerCase().indexOf("config%3dapp1") > -1) ngd_app_name = "APP 1";
    if (x.toLowerCase().indexOf("config%3dapp2") > -1) ngd_app_name = "APP 2";
    if (x.toLowerCase().indexOf("config%3dapp3") > -1) ngd_app_name = "APP 3";
    if (x.toLowerCase().indexOf("config%3dapp4") > -1) ngd_app_name = "APP 4";
    if (x.toLowerCase().indexOf("oiddas") > -1) ngd_app_name = "Delegated Administrative Services";
    javax.servlet.http.HttpSession session = request.getSession();
    if (ngd_app_name.trim().length() > 0) session.setAttribute("ngd_app_name",ngd_app_name);
    out.println("<center>");
    out.println(ngd_app_name);
    out.println("</center>");
    finally
    if( con != null ) { con.close(); }
    //Code to decode site2pstoretoken ends here
    %>

  • [Plasma-Next] Docky doesn't display application icons

    Hello,
    I have a fresh Arch + Plasma 5 install running on my machine. I have followed the arch-wiki to get it up and running. However I have installed Docky and it's shooting errors at me. The main issue is that it doesn't display most of the applications icons. Screenshot here. The order of the apllications is Docky Settings, Firefox, Konsole, Separator, Trashcan, Weather. I am using the default Breeze icon theme and switching to a different one didin't help.
    Output from terminal when running Docky:
    [vilius@asus ~]$ docky
    [Info 16:15:09.941] Docky version: 2.2.0 Release
    [Info 16:15:09.960] Kernel version: 3.18.2.2
    [Info 16:15:09.961] CLR version: 4.0.30319.17020
    [Error 16:15:10.111] [SystemService] Could not initialize power manager dbus: 'Could not load type 'Docky.Services.SystemService+IUPowerProxy' from assembly 'DBus.Proxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' because it is implements the inaccessible interface 'Docky.Services.SystemService+IUPower'.'
    [Info 16:15:10.113] [SystemService] at System.Reflection.Emit.TypeBuilder.CreateTypeInfo () [0x00000] in <filename unknown>:0
    at System.Reflection.Emit.TypeBuilder.CreateType () [0x00000] in <filename unknown>:0
    at DBus.TypeImplementer.GetImplementation (System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.BusObject.GetObject (DBus.Connection conn, System.String bus_name, DBus.ObjectPath object_path, System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject (System.Type type, System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject[IUPower] (System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at Docky.Services.SystemService.InitializeBattery () [0x00000] in <filename unknown>:0
    [Error 16:15:10.115] [SystemService] Could not initialize Network Manager dbus: 'Could not load type 'Docky.Services.SystemService+INetworkManagerProxy' from assembly 'DBus.Proxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' because it is implements the inaccessible interface 'Docky.Services.SystemService+INetworkManager'.'
    [Info 16:15:10.115] [SystemService] at System.Reflection.Emit.TypeBuilder.CreateTypeInfo () [0x00000] in <filename unknown>:0
    at System.Reflection.Emit.TypeBuilder.CreateType () [0x00000] in <filename unknown>:0
    at DBus.TypeImplementer.GetImplementation (System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.BusObject.GetObject (DBus.Connection conn, System.String bus_name, DBus.ObjectPath object_path, System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject (System.Type type, System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject[INetworkManager] (System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at Docky.Services.SystemService.InitializeNetworkManager () [0x00000] in <filename unknown>:0
    [Info 16:15:10.122] [ThemeService] Setting theme: Transparent
    [Warn 16:15:10.141] [DesktopItemService] Could not find remap file '/home/vilius/.local/share/docky/remaps.ini'!
    [Info 16:15:10.328] [DockServices] Dock services initialized.
    [Info 16:15:10.496] [PluginManager] Loaded "Trash".
    [Error 16:15:10.499] [NativeInterop] Failed to query info for '': Operation not supported
    [Info 16:15:10.499] [NativeInterop] at Docky.Services.NativeInterop+<GFileQueryInfo>c__AnonStorey7.<>m__0 () [0x00000] in <filename unknown>:0
    at Docky.Services.NativeInterop.NativeHelper[IntPtr] (System.Func`1 act, IntPtr errorReturn, System.String notFound, System.String error) [0x00000] in <filename unknown>:0
    [Fatal 16:15:10.500] [GLib-GIO] g_file_info_get_attribute_uint32: assertion 'G_IS_FILE_INFO (info)' failed
    [Error 16:15:10.500] [NativeInterop] Failed to query info for '': Operation not supported
    [Info 16:15:10.500] [NativeInterop] at Docky.Services.NativeInterop+<GFileQueryInfo>c__AnonStorey7.<>m__0 () [0x00000] in <filename unknown>:0
    at Docky.Services.NativeInterop.NativeHelper[IntPtr] (System.Func`1 act, IntPtr errorReturn, System.String notFound, System.String error) [0x00000] in <filename unknown>:0
    [Fatal 16:15:10.501] [GLib-GIO] g_file_info_get_icon: assertion 'G_IS_FILE_INFO (info)' failed
    [Fatal 16:15:10.501] [GLib-GObject] g_object_ref: assertion 'G_IS_OBJECT (object)' failed
    [Fatal 16:15:10.557] [GLib] Source ID 72 was not found when attempting to remove it
    [Fatal 16:15:10.557] [GLib] Source ID 75 was not found when attempting to remove it
    [Fatal 16:15:10.557] [GLib] Source ID 71 was not found when attempting to remove it
    [Info 16:15:10.601] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    Cairo.Surface is leaking, programmer is missing a call to Dispose
    Set MONO_CAIRO_DEBUG_DISPOSE to track allocation traces
    [Info 16:15:10.677] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    [Info 16:15:10.817] [DrawingService] Could not find 'utilities-terminal', using fallback of 'application-default-icon'.
    [Info 16:15:10.818] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    [Info 16:15:10.831] [DrawingService] Could not find 'utilities-terminal', using fallback of 'application-default-icon'.
    [Info 16:15:10.831] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    I have also tried avant-window-navigator but had the same issues with it.
    Please have a look at the output, maybe the icons problem is caused by some errors encountered before all the drawing?
    Thank you!

    Hello,
    I have a fresh Arch + Plasma 5 install running on my machine. I have followed the arch-wiki to get it up and running. However I have installed Docky and it's shooting errors at me. The main issue is that it doesn't display most of the applications icons. Screenshot here. The order of the apllications is Docky Settings, Firefox, Konsole, Separator, Trashcan, Weather. I am using the default Breeze icon theme and switching to a different one didin't help.
    Output from terminal when running Docky:
    [vilius@asus ~]$ docky
    [Info 16:15:09.941] Docky version: 2.2.0 Release
    [Info 16:15:09.960] Kernel version: 3.18.2.2
    [Info 16:15:09.961] CLR version: 4.0.30319.17020
    [Error 16:15:10.111] [SystemService] Could not initialize power manager dbus: 'Could not load type 'Docky.Services.SystemService+IUPowerProxy' from assembly 'DBus.Proxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' because it is implements the inaccessible interface 'Docky.Services.SystemService+IUPower'.'
    [Info 16:15:10.113] [SystemService] at System.Reflection.Emit.TypeBuilder.CreateTypeInfo () [0x00000] in <filename unknown>:0
    at System.Reflection.Emit.TypeBuilder.CreateType () [0x00000] in <filename unknown>:0
    at DBus.TypeImplementer.GetImplementation (System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.BusObject.GetObject (DBus.Connection conn, System.String bus_name, DBus.ObjectPath object_path, System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject (System.Type type, System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject[IUPower] (System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at Docky.Services.SystemService.InitializeBattery () [0x00000] in <filename unknown>:0
    [Error 16:15:10.115] [SystemService] Could not initialize Network Manager dbus: 'Could not load type 'Docky.Services.SystemService+INetworkManagerProxy' from assembly 'DBus.Proxies, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' because it is implements the inaccessible interface 'Docky.Services.SystemService+INetworkManager'.'
    [Info 16:15:10.115] [SystemService] at System.Reflection.Emit.TypeBuilder.CreateTypeInfo () [0x00000] in <filename unknown>:0
    at System.Reflection.Emit.TypeBuilder.CreateType () [0x00000] in <filename unknown>:0
    at DBus.TypeImplementer.GetImplementation (System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.BusObject.GetObject (DBus.Connection conn, System.String bus_name, DBus.ObjectPath object_path, System.Type declType) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject (System.Type type, System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at DBus.Connection.GetObject[INetworkManager] (System.String bus_name, DBus.ObjectPath path) [0x00000] in <filename unknown>:0
    at Docky.Services.SystemService.InitializeNetworkManager () [0x00000] in <filename unknown>:0
    [Info 16:15:10.122] [ThemeService] Setting theme: Transparent
    [Warn 16:15:10.141] [DesktopItemService] Could not find remap file '/home/vilius/.local/share/docky/remaps.ini'!
    [Info 16:15:10.328] [DockServices] Dock services initialized.
    [Info 16:15:10.496] [PluginManager] Loaded "Trash".
    [Error 16:15:10.499] [NativeInterop] Failed to query info for '': Operation not supported
    [Info 16:15:10.499] [NativeInterop] at Docky.Services.NativeInterop+<GFileQueryInfo>c__AnonStorey7.<>m__0 () [0x00000] in <filename unknown>:0
    at Docky.Services.NativeInterop.NativeHelper[IntPtr] (System.Func`1 act, IntPtr errorReturn, System.String notFound, System.String error) [0x00000] in <filename unknown>:0
    [Fatal 16:15:10.500] [GLib-GIO] g_file_info_get_attribute_uint32: assertion 'G_IS_FILE_INFO (info)' failed
    [Error 16:15:10.500] [NativeInterop] Failed to query info for '': Operation not supported
    [Info 16:15:10.500] [NativeInterop] at Docky.Services.NativeInterop+<GFileQueryInfo>c__AnonStorey7.<>m__0 () [0x00000] in <filename unknown>:0
    at Docky.Services.NativeInterop.NativeHelper[IntPtr] (System.Func`1 act, IntPtr errorReturn, System.String notFound, System.String error) [0x00000] in <filename unknown>:0
    [Fatal 16:15:10.501] [GLib-GIO] g_file_info_get_icon: assertion 'G_IS_FILE_INFO (info)' failed
    [Fatal 16:15:10.501] [GLib-GObject] g_object_ref: assertion 'G_IS_OBJECT (object)' failed
    [Fatal 16:15:10.557] [GLib] Source ID 72 was not found when attempting to remove it
    [Fatal 16:15:10.557] [GLib] Source ID 75 was not found when attempting to remove it
    [Fatal 16:15:10.557] [GLib] Source ID 71 was not found when attempting to remove it
    [Info 16:15:10.601] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    Cairo.Surface is leaking, programmer is missing a call to Dispose
    Set MONO_CAIRO_DEBUG_DISPOSE to track allocation traces
    [Info 16:15:10.677] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    [Info 16:15:10.817] [DrawingService] Could not find 'utilities-terminal', using fallback of 'application-default-icon'.
    [Info 16:15:10.818] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    [Info 16:15:10.831] [DrawingService] Could not find 'utilities-terminal', using fallback of 'application-default-icon'.
    [Info 16:15:10.831] [DrawingService] Could not find 'application-default-icon', using fallback of 'application-x-executable'.
    I have also tried avant-window-navigator but had the same issues with it.
    Please have a look at the output, maybe the icons problem is caused by some errors encountered before all the drawing?
    Thank you!

  • Phone doesn't display contact name - nokia 701

    I facing a problem now, i'm using nokia 701, just after repair 2 weeks ago, but now still have this software problem, it doesn't display my contact name, i can't search name anymore, it always display "unnamed", even i have delete all contact and syn back from nokia suite, what shall i do?
    mun

    the problem lies with your copying of the contacts
    When you copied them over you may have added duplicates, if there is a duplicate in the contacts of a number the phone will not display a name as it will be confused.
    You will need to go through the contacts and delete any that have duplicate numbers.
    This should solve your issue
    iPhone 5 32GB
    MacBook Pro Retina 15" Mac OS X Mountain Lion 10.8.4

  • N95-2 doesn't display contact name in imported SMS...

    Hi all,
    I just imported all my SMSes from my old 6230 to my N95-2. I did it via Nokia Content Copier v3 (supplied with the N95). Backed up the 6230 and restored it to the N95 (contacts, calendars and messages only). To my surprise, the N95 doesn't display the contact name in the imported SMSes while the numbers are also saved in Contacts.
    How can I solve this? Does anybody else have any experience in transferring SMSes from their old phone to N95? My old messages, contacts etc are still saved in 6230 just in case I need to redo the whole process again.
    Thanks in advance!

    the problem lies with your copying of the contacts
    When you copied them over you may have added duplicates, if there is a duplicate in the contacts of a number the phone will not display a name as it will be confused.
    You will need to go through the contacts and delete any that have duplicate numbers.
    This should solve your issue
    iPhone 5 32GB
    MacBook Pro Retina 15" Mac OS X Mountain Lion 10.8.4

  • Programs bookmark in pcmanfm doesn't display applications

    like in topic i click on bookmark "programs", it open address "menu://applications/"
    but it's empty. i think it supose to show some activators.
    i want to say also that, pcmanfm doesn't see applications at all.
    i  mean when i click on some file " open with" the installed programs list is empty.
    same happens when i run libfm-pref-apps.
    how can i fix these issues?

    Hi, I solved this by installing "xdg-user-dirs-gtk" and run "xdg-user-dirs-gtk-update"
    I think that this is caused by the change of some localizations and not to update properly the list of file names , the problem happened me when I installed xdg-menu and translations to spanish (because I'm speak spanish and not understand very well the english) so it only need to update the list of localized menus, thing that doesn't do automaticaly in other enviroments that isn't GNOME or KDE
    I'm sorry for edit this old post but i have to correct it.
    To make the PcManFM's applications sidebar work, you have to run lxpanel. and then launch pcmanfm from it, that's all folks.
    Now i can sleep again
    Last edited by joseperezc (2011-08-22 22:15:39)

  • It doesn't display the name of who sent the text m...

    okay, so i have always had nokias, which have this feature.
    i now have a nokia E63 - and when i first got the phone it showed the name of who's text i received before i opened it - so i know the phone has the feature.
    however, its stopped doing it, i cant remember changing the settings - can anybody help and tell me how to get it back? thanks i would really appriciate it. 

    hi there...
    try this path
    menu->tools->modes->home screen applications->enabled applications->message notification (the second last one)
    if the message notification is "ticked/checked" & you have home screen as "active" in place of "basic" [menu->tools->settings->general->personalisation->home screen->home screen] you'll be shown a message notification at the bottom of the screen & going to that notification will show your the name of the sender & the first few words of the message...
    if the message notification is unchecked you would just receive "1 new message received. open?" & yes & no as the options over the selection buttons...
    hope this helps...
    regards,
    anupam149
    regards,
    anupam149

  • Performance Management Architect doesn't display applications

    Hi,
    I am reading through the Performance Management Architect Administrators Guide (System 11 release) from Oracle trying to figure out how to work with Hyperion Planning and Essbase. First of all, is the Architect just a fancy name for certain functions in Workspace? Because the documentation describes accesssing Archictect through the Workspace Navigate options. Second, the Application Library is defined in the documentation as "A summary of applications that have been created and/or deployed to Financial Management, Planning, Profitability and Cost Management, Essbase Aggregate Storage Option (ASO), or Essbase Block Storage Option (BSO)." It also says I can create Planning applications here as well.
    I follow the directions to access the Application Library - When in Workspace, I go to Navigate > Administer > Application Library, a new tab comes up, but there is nothing in the tab. It is completely blank. I have created several Planning applications, including initializing the Sample Application that comes with the Planning installation. I can view this application from Workspace or the Planning Web-app. Does anyone know why it is not showing up in the Application Library? If I want to build my own outline and define dimensions and members to create a planning applicaiton that works with my own sample data, where do I go to do this?
    Thanks.

    Hi,
    The planning applications that you have created maybe classic planning applications so you won't see them in the EPMA application library. There are two methods of managing planning applications either the classic method or through EPMA.
    You can create a new planning application through EPMA or you can upgrade one of your classic applications to an EPMA version.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • E51 doesn't display contact names (no duplicates)

    Hi y'all,
    I've been using using my E51 for about 2 years, and it suddenly stopped displaying the contact names for SMS messages.
    There are no duplicates in the contact list.
    The thing is, it's started when I synced my phone with Ovi online.
    Could anybody find a solution for this ?
    It's quite annoying not having the names of the contacts ...

    well it has to be the names the phone can only identify one number to a name so you will have to make new names for the contacts ie john and john 1 and stored seperatly,you need to check for duplicate contacts again and what memory your using your phone book in either the phone or sim memory
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Itunes not workin and the problem displays - m signature:   Problem Event Name:     BEX   Application Name:     iTunes.exe   Application Version:     10.5.3.3   Application Timestamp:     4f14cc3d   Fault Module Name:     QuickTime.qts_unloaded   Fault Mo

    i tunes not working and the problem its displaying is
      m signature:
      Problem Event Name:    BEX
      Application Name:    iTunes.exe
      Application Version:    10.5.3.3
      Application Timestamp:    4f14cc3d
      Fault Module Name:    QuickTime.qts_unloaded
      Fault Module Version:    0.0.0.0
      Fault Module Timestamp:    4cf45322
      Exception Offset:    706e1040
      Exception Code:    c0000005
      Exception Data:    00000008
      OS Version:    6.1.7601.2.1.0.256.1
      Locale ID:    1033
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
      please help.

    im having this problem to ive uninstalled and installed but this still comes up!!
    Problem signature:
      Problem Event Name:    BEX
      Application Name:    iTunes.exe
      Application Version:    10.7.0.21
      Application Timestamp:    504d85d9
      Fault Module Name:    StackHash_0a9e
      Fault Module Version:    0.0.0.0
      Fault Module Timestamp:    00000000
      Exception Offset:    00000000
      Exception Code:    c0000005
      Exception Data:    00000008
      OS Version:    6.1.7601.2.1.0.768.3
      Locale ID:    5129
      Additional Information 1:    0a9e
      Additional Information 2:    0a9e372d3b4ad19135b953a78882e789
      Additional Information 3:    0a9e
      Additional Information 4:    0a9e372d3b4ad19135b953a78882e789

  • SAPUI5 Application doesn't display in Portal Content Area

    Hallo Guys
    We are developing a SAPUI5 application that needs to be displayed inside the portal.
    The problem is that the SAPUI5 app doesn't display in in the content area, no erors, just a blank page, you have to set the iview to open in a seperate headerless window, then it works. But it needs to work in the content area.
    Our findings: a possible cause is that the IE mode when inside the Portal content area is IE5 Quirks, and when it displays in a new window, the mode changes to a more recent and acceptable mode for SAPUI5, IE9.
    Is there any solution to this? We get the same result with both URL iView and using the SAPUI5 iView in content provided by SAP. We are on NW 7.4
    Regards
    Antonette

    Hi Antonette,
    As Lawrence explained the reason is indeed that quirks and standards mode can't run together on the same page (not only in portal but it's a limitation by MS).
    Since your framework page is in IE5 quirks mode the UI5 application doesn't run in the content area, you can run it by selecting in the iView properties "Launch in a new headerless window (strandards)", that will open the UI5 application in a new window and will work.
    If you wish to run UI5 applications in the content area you can get latest SP of 7.4 and there you will have a new framework page: standards AFP, basically an AFP framework page that works in standards mode.
    In that framework page you can run UI5 applications in the content area, however trying to run old applications (HTMLB, not WD) may fail, for WD you have a paramater you need to pass called sap-ie, passing it with the value of "Edge" will make sure WD applications run in standards mode as well.
    When running the AFP in standards mode you will need to open your HTMLB and other old applications in a new headerless window or new window so you can see the content.
    Hope this helped,
    BR,
    Saar

  • 32bpp application doesn`t display correctly or crashes when we remote via SCCM 2007 remotetool

    By default remotetool’s Color Depth is set to 16 bpp
    Daniel
    Synapse application is a PACS viewer used by radiology department in our hospital.
    Synapse is designed to run in 32 bpp, therefore when we remote to it, the picture is not dispayed.
    Instead it displays an error Your display is configured for 65536 colors. This mode is unsupported. Use 24 or 32 colour mode.
    As soon as we disconnect or end the remote session. The picture on users workstation 
    turns black. Synapse needs to be re-launched  in order to display properly again.
    Is there a way to set the Color Depth default  on remotetool to 24bbp ?
    When we close the remote session, Synapse crashes or doesn’t display any pictures, leaving them black.
    Here’s how the user would see it
    On the other hand if we pre-set the colour depth to 24bbp before opening Synapse. Everything is displayed correctly on both admin and the remote workstation, while in a remote session.

    Yes, I know this is an old post, but I’m trying to clean them up.
    To my knowledge there is no way to do this, however I would suggest looking at remote desktop instead of CM0-7 Remote control.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Nodemanager doesn't display the domain name

    Hi
    Iam new to wlst scripting and concepts of nodemanager. My aim is to start the server using nodemanager through wlst.
    First i invoked the wlst.sh shell script
    then i started the nodemanager by using startNodeManager command
    Then i tried to connect to nodemanager through nmconnect
    Now if i type the command nm() it displays the following
    Currently connected to Node Manager to monitor the domain {0}.
    It doesn't display my domain name , instead displays {0}. I guess because of the domain name not set properly , i am not able to view the status of the admin server. For this iam using the command nmserverstatus("AdminServer") , it displays the status as UNKNOWN.
    Can you please let me know what is that iam missing.

    To ask Apple to fix this, you need to repost it at
    http://www.apple.com/feedback
    If I remember right, display of such domains in the original script may depend on whether the domain officials have policies in place to safeguard against potential confusion between names that look the same in cyrillic and latin.  But it could also be a simple oversight.
    Each browser may be different:  Do Firefox and Chrome behave the same?

Maybe you are looking for

  • How to check empty string and null? Assign same value to multiple variables

    Hi, 1. How do I check for empty string and null? in_value IN VARCHAR2 2. Also how do I assign same value to multiple variables? var_one NUMBER := 0; var_two NUMBER := 0; var_one := var_two := 0; --- Gives an error Thanks

  • Online store

    Hello I've seen samples on how to build an online, but none them go in depth in how to connect a store to a merchant and handling payment transactions. Can anyone suggest a tutorial or examples of using Flex with payment transactions?

  • Custom / manual pagination - batched collection report

    <p>I am trying to create a report with custom/manual pagination because I wish to implement a data access package where all request for data are via PL/SQL packaged functions returning Collections that represent the application data (i.e. no direct a

  • Screen Too Big

    I plug in my iPod Nano, load up iTunes, and click on IPOD under Devices. Since I bought my iPod earlier today, this is the first time I've used it. I click Register Later, and the agreement screen appears. I scroll to the bottom, but... I can only se

  • Help! My iPhone won't turn on :'(

    I was uploading to Facebook and left my phone to complete the upload, when i went  to check on it, the iPhone seemed to have turned it's self off? i've tried the on/off button, plugged into the mains to recharge. I've tried to plug it in to iTunes bu