Finder failing to display text strings (screen shot)

I just upgraded from Tiger to Leopard.
My Finder menus and windows are not displaying the text strings from the Leopard text mapping.
http://www.robabbott.com/go/share/findernotext.png
The above image is the confirmation window when emptying the trash.
Help!

Hi thanks for the advice, the text is centred vertically , left aligned and there is plenty of space at the end. I will try increasing width/height but not sure if that will help as box is already much bigger than text.
In fact it works perfectly on another web page ...thats what surprising ....even the html for the two pages is identical from what we can see!
Take a look at
www.cibsys.com/cibsys1/index.html on the UK site and run down the various pages on the left side to see what happens (if you have IE on a PC). On the PC on some pages perhaps 30% eg workflow services the menu on the left fails to draw correctly leaving the text un readable.
Thanks

Similar Messages

  • IWeb 08 and Internet Explorer ...failing to write text to screen correctly?

    I have a site created using iWeb08. It works well on old and new firefox but on IE I see inconsistent behaviour on different almost identical screen.
    Viewing the site on Firfoy or Safaris gives 1:1 what is on the screen on iWeb.
    On Internest explorer ...some but not all pages fail to display the text correctly, basically the text on my menu gets wrapped almost like IE thinks there is not enough space in each text box to dsiplay it. I have my own menu system, I have carefully chosen a portable font but in most and minimised as far as possible the number of objects on the screen. What is weird is that 70% of the pages on the site look good on IE, but 2 pages with almost identical layout can be comnpletely different in the display.
    1) has anyone else seen this? and cured it
    2) does anyone know why in the iWeb generated css files there is a css file for IE but this is never referenced in the html or js code? in fact the call to it is commented out.
    Please dont tell me to tell my viewers to use Firefox, the real world is that we have to support the user not the other way round....
    Thanks

    Hi thanks for the advice, the text is centred vertically , left aligned and there is plenty of space at the end. I will try increasing width/height but not sure if that will help as box is already much bigger than text.
    In fact it works perfectly on another web page ...thats what surprising ....even the html for the two pages is identical from what we can see!
    Take a look at
    www.cibsys.com/cibsys1/index.html on the UK site and run down the various pages on the left side to see what happens (if you have IE on a PC). On the PC on some pages perhaps 30% eg workflow services the menu on the left fails to draw correctly leaving the text un readable.
    Thanks

  • Scroll moves text boxes & screen shots?

    I upload Page Layout handouts for classes to iCloud-iWork that contain text boxes and screen shots. When they are accessed on a device, if a person scrolls to see several pages, their finger movememt change/selects the text boxes and screen shots damaging the layout. I tried locking the Page before uploading and they won't open on the device. I tried uploading as a PDF and iCloud-iWork doesn't support that format. Any ideas?
    SJ Allan

    I'm not at my Mac at this moment in time, so I can't test it out for you. What I would do though, is select a single item to see if the option is enabled, then go through my objects perhaps selecting a couple at a time, to see which object is causing the option to become unavailable. Once you know which object this is, you can then begin to think what to do about it.
    It may well be that some of the objects that you have selected are already in the master section. Objects in the master section have blue handles instead of white ones when they are selected.

  • Displaying text on screen while connecting not working

    Hi all,
    I'm building a game to be played over Bluetooth. While the connection is made, I want to display a text message to the user stating the connection is made. Everything seems to work allright, but the messge is not shown. What goes wrong?
    Some code. I have a MyMIDlet, that creates MyGame. The MyGame object is responsible for creating the connection. MyGame implements Runnable
    public class MyGame implements Runnable {
         // Some code omitted
         public void run() {
              createSplashScreen();
                     // More code omitted
         private void createSplashScreen() {
    System.out.println ("myGame.createSplashScreen, informing players on connection process");          
              String[] message;
              if (isServer) {
                   message = new String[5];
                   message[0] = "Waiting";
                   message[1] = "on an";
                   message[2] = "Opponent";
                   message[3] = "to Join";
                   message[4] = "the Game";
              else {
                   message = new String[3];
                   message[0] = "Searching";
                   message[1] = "for a Game";
                   message[2] = "to Join";
              // Create the canvas and set it to the current display
    System.out.println ("myGame.createSplashScreen, creating SplashScreen");
              mySplashScreen = new MySplashScreen(message, FONT);
              mySplashScreen.addCommand(myMIDlet.getExitCommand());
              mySplashScreen.setCommandListener(myMIDlet.getCommandListener() );
              myMIDlet.setCanvas(mySplashScreen);
              mySplashScreen.repaint();
         }The previous code creates a MySplashScreen object:
    public class BluePongSplashScreen extends Canvas {
             // Code omitted
         public MySplashScreen (String [] theMessage, Font theFont) {
              messageLength = theMessage.length;
              message = new String [messageLength];
              System.arraycopy(theMessage, 0, message, 0, messageLength);
              font = theFont;
              // Get dimensions screen
              width  = getWidth();
              height = getHeight();
              // Start displaying message at first position
              messageIndex = messageLength - 1;
        public void showNotify() {
    System.out.println ("mySplashScreen.showNotify, creating new mytTask");
             mytTask = new MyTimerTask(this);
            new Timer().scheduleAtFixedRate(mytTask, 1500, 1000);
         public void paint (Graphics graphics){
    System.out.println ("mySplashScreen.paint, repainting message screen");          
              int textX = width/2;
              int textY = height;
              // Clear screen
              graphics.setColor(COLOR_LIGHT_BLUE);
              graphics.fillRect(0, 0, width, height);
              // Set font color
              graphics.setColor(COLOR_WHITE);
              // Write message word by word on the screen
              messageIndex = messageIndex % messageLength;
              for (int i = 0; i <= messageIndex; i++) {
    System.out.println ("mySplashScreen.paint, message[" + i + "]=" + message);
                   graphics.drawString(message[i], textX, textY,
                             Graphics.TOP | Graphics.HCENTER);
                   textY += font.getHeight();
    And then the last code of the problem, the MyTimeTask object:
    public class MyTimerTask extends TimerTask {
          * The canvas repainted periodically
         private MySplashScreen mysScreen;
          * Constructs the timer task
          * @param theScreen the canvas to be repainted
         public MyTimerTask (MySplashScreen theScreen) {
              mysScreen = theScreen;
          * Task that repaints the splash screen
         public void run () {
    System.out.println ("mytTask.run, increasing message index");
              mysScreen.increaseMessageIndex();
              mysScreen.repaint();
    }Here is some logging I copied from the text box of the WTK25 window:
    myMIDlet.commandAction: Thread myGame ended.
    myGame.createSplashScreen, informing players on connection process
    myGame.run: isGameCompleted=false
    mySplashScreen.showNotify, creating new mytTask
    mySplashScreen.paint, repainting message screen
    mySplashScreen.paint, message[0]=Waiting
    mySplashScreen.paint, message[1]=on an
    mySplashScreen.paint, message[2]=Opponent
    mySplashScreen.paint, message[3]=to Join
    mySplashScreen.paint, message[4]=the Game
    mytTask.run, increasing message index
    mySplashScreen.increaseMessageIndex, index=5
    mySplashScreen.paint, repainting message screen
    mySplashScreen.paint, message[0]=Waiting
    mytTask.run, increasing message index
    mySplashScreen.increaseMessageIndex, index=1
    mySplashScreen.paint, repainting message screen
    mySplashScreen.paint, message[0]=Waiting
    mySplashScreen.paint, message[1]=on an
    mytTask.run, increasing message indexSo clearly, the objects are created, and doing (almost) all their work, except displaying the text on the screen.
    Anyone knows how to solve this problem?
    Maik

    A Reset should help.
    If youre on nano 6th gen:
    Press and hold the Sleep/Wake button and Volume Down button simultaneously for at least eight seconds or until the Apple logo appears. You may need to repeat this step.

  • Noob needs help - PDF Fails to display - Only black screen

    Hi,
    I am new to FB. I was tasked with finishing up an desktop application that someone else started. They were using FB 3.
    I got the trial of FB 4.5 and imported the project. Then started the process of learning FB. I am working on a Mac.
    I got the UI fixed and a few bugs. Then exported a release build. Ran it on windows all seemed fine except for display a few PDFs.
    The PDFs all display fine on my Mac, just not on Windows. I searched all over for some clue as to what is happening. I even tried installing the latest Adobe Reader, still no change,
    The code that displays the PDFs couldn't be more simple:
    <mx:HTML x="10" y="10" width="100%" height="100%" location="appen/c5awwa.pdf" borderStyle="none"/>
    The Parent is:
    <mx:Canvas label="AWWA Standard" width="100%" height="100%" borderStyle="none">
    And whos parent is:
    <mx:TabNavigator width="100%" height="100%" borderStyle="none">
    The top level, 2nd line in files is:
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"  width="100%" height="100%"   xmlns:local="*">
    So the order is:
    <mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml"  width="100%" height="100%"   xmlns:local="*">    
         <mx:TabNavigator width="100%" height="100%" borderStyle="none">
              <mx:Canvas label="AWWA Standard" width="100%" height="100%" borderStyle="none">
                   <mx:HTML x="10" y="10" width="100%" height="100%" location="appen/c5awwa.pdf" borderStyle="none"/>
    I did notice that the canvas should not be used in favor of a BorderContainer or a Group.
    Since being totally new to this, I figured I'd get it working before I tried to chage the containers. I looked at doing that but didn't have the time to figure it out as I have a deadline, the 14th.
    We plan on buying this as we want to turn the app into a mobile app also.
    If it means anything her is the apps declaration (not sure that's what its called, the 1st line:
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml"
                                                                                                                            xmlns:local="*"
                                                                                                                            width="916" height="850"
                                                                                                                            backgroundColor="#EAEEF1" borderColor="#FDFDFD"
                                                                                                                            creationComplete="init()" horizontalScrollPolicy="off" verticalScrollPolicy="off" layout="absolute"
                                                                                                                            >
    If anybode has a clue, please point me in the right direction.

    I don't have any problem displaying those PDF files with Safari on either my iPad Air 2 or iPhone 5 which are both on iOS 8.1.2.
    Perhaps the problem is dependent on whatever else you are doing in the browser.

  • Firefox fails to display text in Captcha box

    On pages or sites which require the use of a Captcha system to prevent botnet access the captch image is not displayed in firefox.
    If i log in using IE or Chrome I can see them perfectly but not in Firefox
    Windows xp sp3 and firefox version 26.0

    You have some extensions that might be playing a role in this. For example, if the site is using Google's ReCAPTCHA service, perhaps Google Disconnect or Ghostery could be hiding it?
    To test without any influence from extensions, you could try Firefox's Safe Mode. That's a standard diagnostic tool to bypass interference by extensions (and some custom settings). More info: [[Troubleshoot Firefox issues using Safe Mode]].
    You can restart Firefox in Safe Mode using
    Help > Restart with Add-ons Disabled
    In the dialog, click "Start in Safe Mode" (''not'' Reset)
    Any difference?

  • How can I easily make a screen shot of a polar graph?

    Hi everyone,
    I am using the very simple VI I have attached to display points (up to 50000 points) on a polar graph. When the screen moves over to the area where there is the graph, the big number of dots included in the graph makes everything become very very slow. I would like to know if there is an easy way to make a print screen of the graph so that I initialize back the graph to no points (or make it invisible) and just display the print screen shot of the graph.
    I have already used the print screen function (+ cutting off the parts of the picture I don’t want) but this is a bit fastidious to do. Would an already made print screen function exist for this kind of graph?
    Thanks a lot,
    User
    Solved!
    Go to Solution.
    Attachments:
    Forum 29 07 10.vi ‏27 KB
    Forum 29 07 10.doc ‏85 KB

    This example show how to do it in two ways
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)
    Attachments:
    Forum 29 07 10_v2.vi ‏31 KB

  • Pulling text strings from a file in Quartz Composer

    I want to create a screensaver that randomly displays quotes from a specified file. It doesn't matter how the file is formatted -- txt, xls, etc. -- as long as Quartz can randomly display quotes from the file. I know how to display text strings in Quartz, and I know how to randomize graphic functions, but not how to randomize display of text strings.
    Any ideas?

    Here is a shuffling algorithm:
    http://tekpool.wordpress.com/2006/10/06/shuffling-shuffle-a-deck-of-cards-knuth- shuffle/
    Basically, pass through the file once to get the number of strings (n), than shuffle an array of integers 1 to n using an algorithm like the above. As each number comes up, pull that string out of the file.

  • Automaticlly grabbing screen shots in Final Cut Pro 7

    I am trying to find a faster way to grab screen shots on Final Cut Pro 7. Is there anyway to set it to do this automatically in the main viewer? Can I set the time?
    Thanks!

    Final Cut Pro does not make screenshots of itself.
    On a Mac, pressing Shift, command and 3 will take a picture of the screen in any application.
    There is screen capture software that will make a video clip which can be edited. [iShowU|http://www.shinywhitebox.com/ishowuhd/main.html] is one example.
    It would help if you were to describe exactly what it is that you want to achieve.

  • How to display  LONG TEXT STRING in Module Pool Screen ?

    Hi Experts,
    I want to display long text string, on screen designed through module pool(SE51). I tried to display through input/output field , but it displays it in SINGLE LINE and i have to scroll all through to view all string.
    I want to display it in rectangular format . It doesnt allow me to set HEIGHT of component.
    Please provide solution.
    Thanks in advance.
    Regards
    Deepak

    This is the program where u can get the WA_THEAD from other program like report and trying to display and modifying that text. U can do instead of WA_THEAD u can generate here itself and use also
    *& Module pool       ZMP_LTEXT                                         *
    PROGRAM  ZMP_LTEXT                               .
    TABLES: STXL.
    *&      Module  STATUS_9000  OUTPUT
    MODULE STATUS_9000 OUTPUT.
    CONSTANTS:line_length type i value 132.
    DATA:g_editor type ref to cl_gui_textedit,
         g_editor_container type ref to cl_gui_custom_container,
         CONT1 type scrfname value 'CONT1',
         g_repid like sy-repid,
         g_ok_code like sy-ucomm,
         g_mytable(132) type c occurs 0,
         g_mycontainer(30) type c ,
         v_result(256) type c,
         g_head like thead,
         it_line type table of tline with header line,
         wa_stxl type stxl.
    DATA : BEGIN OF IT_THEAD1,
           ICON TYPE ICON-ID.
           INCLUDE STRUCTURE STXL.
    DATA : END OF IT_THEAD1.
    DATA : IT_THEAD LIKE TABLE OF IT_THEAD1,
           WA_THEAD LIKE LINE OF IT_THEAD.
    IMPORT WA_THEAD FROM MEMORY ID 'ABCD'.
    select SINGLE * from STXL into wa_stxl
                     where tdname = '00006000156500000002'.
    SELECT SINGLE * from STXL into wa_stxl
                      where tdname = WA_THEAD-TDNAME
                      AND TDID = WA_THEAD-TDID
                      AND TDOBJECT = WA_THEAD-TDOBJECT
                      AND TDSPRAS = WA_THEAD-TDSPRAS.
    IF SY-SUBRC NE 0.
    MESSAGE 'NO RECORD EXIST' TYPE 'E'.
    ENDIF.
    MOVE-CORRESPONDING WA_STXL TO G_HEAD.
    SET PF-STATUS 'STATUS'.
    SET TITLEBAR '001'.
      if g_editor is initial.
         CREATE OBJECT G_EDITOR_CONTAINER
           EXPORTING
            PARENT                      =
             CONTAINER_NAME              = CONT1
            STYLE                       =
            LIFETIME                    = lifetime_default
            REPID                       =
            DYNNR                       =
            NO_AUTODEF_PROGID_DYNNR     =
           EXCEPTIONS
            CNTL_ERROR                  = 1
            CNTL_SYSTEM_ERROR           = 2
            CREATE_ERROR                = 3
            LIFETIME_ERROR              = 4
            LIFETIME_DYNPRO_DYNPRO_LINK = 5
             others                      = 6.
         IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
         CREATE OBJECT G_EDITOR
           EXPORTING
            MAX_NUMBER_CHARS       =
            STYLE                  = 0
       WORDWRAP_MODE          = cl_gui_textedit=>wordwrap_at_fixed_position
    for to fix number of characters in row to 132 characers
             WORDWRAP_POSITION      = line_length
             WORDWRAP_TO_LINEBREAK_MODE = cl_gui_textedit=>true
    for the word to break to next line if it don’t fit in line
            FILEDROP_MODE          = DROPFILE_EVENT_OFF
             PARENT                 = G_EDITOR_CONTAINER
            LIFETIME               =
            NAME                   =
           EXCEPTIONS
            ERROR_CNTL_CREATE      = 1
            ERROR_CNTL_INIT        = 2
            ERROR_CNTL_LINK        = 3
            ERROR_DP_CREATE        = 4
            GUI_TYPE_NOT_SUPPORTED = 5
             others                 = 6  .
         IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
      REFRESH g_mytable.
         MOVE: WA_THEAD-TDNAME TO STXL-TDNAME,
               WA_THEAD-TDID TO STXL-TDID,
               WA_THEAD-TDOBJECT TO STXL-TDOBJECT,
               WA_THEAD-TDSPRAS TO STXL-TDSPRAS.
        CALL FUNCTION 'READ_TEXT'
        EXPORTING
        CLIENT                        = SY-MANDT
          ID                            = wa_stxl-tdid
          LANGUAGE                      = wa_stxl-tdspras
          NAME                          = wa_stxl-tdname
          OBJECT                        = wa_stxl-tdobject
        ARCHIVE_HANDLE                = 0
        LOCAL_CAT                     = ' '
      IMPORTING
        HEADER                        =
        TABLES
          LINES                         = it_line
      EXCEPTIONS
        ID                            = 1
        LANGUAGE                      = 2
        NAME                          = 3
        NOT_FOUND                     = 4
        OBJECT                        = 5
        REFERENCE_CHECK               = 6
        WRONG_ACCESS_TO_ARCHIVE       = 7
        OTHERS                        = 8
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    LOOP AT IT_LINE INTO V_RESULT.
       APPEND V_RESULT TO G_MYTABLE.
    ENDLOOP.
    CALL METHOD G_EDITOR->SET_TEXT_AS_R3TABLE
       EXPORTING
         TABLE           = G_MYTABLE
       EXCEPTIONS
         ERROR_DP        = 1
         ERROR_DP_CREATE = 2
         others          = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
       endif.
    ENDMODULE.                 " STATUS_9000  OUTPUT
    *&      Module  USER_COMMAND_9000  INPUT
    MODULE USER_COMMAND_9000 INPUT.
    CASE SY-UCOMM.
    REFRESH G_MYTABLE[].
    REFRESH IT_LINE[].
    CLEAR V_RESULT.
      WHEN 'SAVE'.
         CALL METHOD G_EDITOR->GET_TEXT_AS_R3TABLE
          EXPORTING
            ONLY_WHEN_MODIFIED     = FALSE
            IMPORTING
              TABLE                  = G_MYTABLE
            IS_MODIFIED            =
          EXCEPTIONS
            ERROR_DP               = 1
            ERROR_CNTL_CALL_METHOD = 2
            ERROR_DP_CREATE        = 3
            POTENTIAL_DATA_LOSS    = 4
            others                 = 5
         IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
         ENDIF.
    LOOP AT G_MYTABLE INTO V_RESULT.
       APPEND V_RESULT TO IT_LINE.
    ENDLOOP.
    CLEAR V_RESULT.
        CALL FUNCTION 'SAVE_TEXT'
          EXPORTING
            CLIENT                = SY-MANDT
            HEADER                = G_HEAD
            INSERT                = ' '
            SAVEMODE_DIRECT       = 'X'
          OWNER_SPECIFIED       = ' '
          LOCAL_CAT             = ' '
        IMPORTING
          FUNCTION              =
          NEWHEADER             =
          TABLES
            LINES                 = IT_LINE
        EXCEPTIONS
          ID                    = 1
          LANGUAGE              = 2
          NAME                  = 3
          OBJECT                = 4
          OTHERS                = 5
       IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
       ENDIF.
    REFRESH G_MYTABLE[].
    REFRESH IT_LINE[].
    CLEAR V_RESULT.
    WHEN 'BACK' OR 'CANCEL' OR 'EXIT'.
    LEAVE TO SCREEN '0'.
    *CALL SCREEN '0'.
    WHEN OTHERS.
    ENDCASE.
    *G_OK_CODE = SY-UCOMM.
    *CLEAR SY-UCOMM.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT

  • How can I display an icon, instead of text string, as a validation prompt?

    My validate method inside my custom validator is like this:
    public void validate(FacesContext context, UIComponent component, Object value) {
      Pattern datePattern = Pattern.compile("(\\d{2})/(\\d{2})/(\\d{4})");
      Matcher dateMatcher = datePattern.matcher((String)value);
      if(!dateMatcher.find()){
        ((UIInput)component).setValid(false);
        FacesMessage message = new FacesMessage();
        String msg = "[" + value + "] invalid date";
        message.setDetail(msg);
        context.addMessage(component.getClientId(context), message);
        FacesMessage facesMsg = new FacesMessage(FacesMessage.SEVERITY_FATAL, "xx", "msg");
        throw new ValidatorException(facesMsg);
    }My JSP has this:
    <h:inputText id="test" value="#{projecthandler.test}">
    <f:validator validatorId="DateValidator" />
    </h:inputText>
    <h:message id="testErrorMessage" for="test"/>The <h:message> tag will kick in if the user has invalid data in the <h:inputText> field and clicks submit.
    When the page is regenerated, the user will see a text string reflecting what the issue is.
    However, instead of this, I would like to display an icon consisting of a red circle with an exclamation point.
    The user is supposed to click on the icon if they want more information. By clicking on the icon,
    the user will see a message box, with a description of the error.
    This is our standard for applications. I'm trying to put together a demo showing how an existing application
    would work in JSF, so I won't be able to talk others into using JSF, unless I can get the validation to display an
    icon instead of text.
    Edited by: Kazan on Mar 18, 2009 9:31 AM
    Edited by: Kazan on Mar 18, 2009 9:33 AM
    Edited by: Kazan on Mar 18, 2009 9:36 AM

    OK, I noticed a bug in my validate method. This is updated to fix the bug, and to include the recomendation about background-image:
      public void validate(FacesContext context, UIComponent component, Object value) {
        System.out.println("DateValidator.test.1");
        Pattern datePattern = Pattern.compile("(\\d{2})/(\\d{2})/(\\d{4})");
        Matcher dateMatcher = datePattern.matcher((String)value);
        System.out.println("DateValidator.test.1");
        if(!dateMatcher.find()){
          ((UIInput)component).setValid(false);
          FacesMessage message = new FacesMessage();
          String msg = "<span style='background-image: url(/error.gif)'/>";
          message.setDetail(msg);
          message.setSeverity(FacesMessage.SEVERITY_FATAL);
          context.addMessage(component.getClientId(context), message);
          throw new ValidatorException(message);
      }When I run this, the litteral string of "<span style='background-image: url(/error.gif)'/>" is printed as the message. It does not interpret this as a span tag with an image url.
    Can someone tell me what's going on?

  • Need to display TEXT in web selection screen

    HI All,
    We are working on CRM-BW  modeling. We have one field called "product" which will have key and medium text. We need to display both key + text in web reporting selection screen. When we ran first time text was not showing in web report. Then we found and change the configuration in search help in SE11 for that field. Then we can see the text+key combination in RSRT but still we can't see the text in web report selection screen...
    Now what we have to do to display text in selection screen on web...
    Please give your inputs  ASAP.....we are in UAT phase....
    Thanks in advance
    Arun

    Hi Arun,
    For you case: Display key & text in selection screen.
    In BW,
    You can go to query designer, then you'll go to the info-object belong to the variable (selection-screen : product). Right-click, find for the properties, Then you'll see the option for <b>display as</b>.
    Choose it for Key and text.
    Then save it.
    Go to the report, in the selection screen, when you're choosing for the help, you'll see the value displayed by key & text.
    Hopefully it can help you a lot.
    Regards,
    Niel
    Thanks a lot for any points you choose to assign.

  • Failed to take screen shot

    I was transferring my domain name and failed to get a screenshot of the "transfer away window" I wonder if I could find that page somewhere in chache?
    And if, where to look at?
    Thank you
    Dorian

    ak3_ltw wrote:
    guys please help me out, how to take screen shot in N97?
    Thanks
    Akshara
    Hi Akshara
    try Best ScreenSnap here:
    http://nokia-n97-software.smartphoneware.com/screen_snap.php
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • [Forum FAQ] How to find and replace text strings in the shapes in Excel using Windows PowerShell

    Windows PowerShell is a powerful command tool and we can use it for management and operations. In this article we introduce the detailed steps to use Windows PowerShell to find and replace test string in the
    shapes in Excel Object.
    Since the Excel.Application
    is available for representing the entire Microsoft Excel application, we can invoke the relevant Properties and Methods to help us to
    interact with Excel document.
    The figure below is an excel file:
    Figure 1.
    You can use the PowerShell script below to list the text in the shapes and replace the text string to “text”:
    $text = “text1”,”text2”,”text3”,”text3”
    $Excel 
    = New-Object -ComObject Excel.Application
    $Excel.visible = $true
    $Workbook 
    = $Excel.workbooks.open("d:\shape.xlsx")      
    #Open the excel file
    $Worksheet 
    = $Workbook.Worksheets.Item("shapes")       
    #Open the worksheet named "shapes"
    $shape = $Worksheet.Shapes      
    # Get all the shapes
    $i=0      
    # This number is used to replace the text in sequence as the variable “$text”
    Foreach ($sh in $shape){
    $sh.TextFrame.Characters().text  
    # Get the textbox in the shape
    $sh.TextFrame.Characters().text = 
    $text[$i++]       
    #Change the value of the textbox in the shape one by one
    $WorkBook.Save()              
    #Save workbook in excel
    $WorkBook.Close()             
    #Close workbook in excel
    [void]$excel.quit()           
    #Quit Excel
    Before invoking the methods and properties, we can use the cmdlet “Get-Member” to list the available methods.
    Besides, we can also find the documents about these methods and properties in MSDN:
    Workbook.Worksheets Property (Excel):
    http://msdn.microsoft.com/en-us/library/office/ff835542(v=office.15).aspx
    Worksheet.Shapes Property:
    http://msdn.microsoft.com/en-us/library/office/ff821817(v=office.15).aspx
    Shape.TextFrame Property:
    http://msdn.microsoft.com/en-us/library/office/ff839162(v=office.15).aspx
    TextFrame.Characters Method (Excel):
    http://msdn.microsoft.com/en-us/library/office/ff195027(v=office.15).aspx
    Characters.Text Property (Excel):
    http://msdn.microsoft.com/en-us/library/office/ff838596(v=office.15).aspx
    After running the script above, we can see the changes in the figure below:
    Figure 2.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thank you for the information, but does this thread really need to be stuck to the top of the forum?
    If there must be a sticky, I'd rather see a link to a page on the wiki that has links to all of these ForumFAQ posts.
    EDIT: I see this is no longer stuck to the top of the forum, thank you.
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Find and Replace text string in HTML

    Opps... I hope this forum is not just for Outlook. My Html files reside on my hard-drive. I am looking for VBA code to open specified file names ####File.html and then find and replace text strings within the html for example "####Name" replaced
    with "YYYYY"
    I drive the "####File.html" names and the find and replace text strings from an Excel sheet. I am an artist and this Sub would give me time to paint instead of find and replace text. Thank you!
    [email protected]

    Hello Phil,
    The current forum is for developers and Outlook related programming questions. That's why I'd suggest hiring anybody for developing the code for you. You may find freelancers, for example. Try googling for any freelance-related web sites and asking such
    questions there.
    If you decide to develop an Outlook macro on your own, the
    Getting Started with VBA in Outlook 2010 article is a good place to start from.

Maybe you are looking for