Wanted a popup text box

Hi all,
I want a popup text box.
My logic is like this:
when ever i select one record and press pushbutton which is located at application toolbar, than one popup text box must display so that they will write some reason for that action and that reason must save in the "ZTABLE".
thanking u...
regards,
giri.

Hi, See this. it is usefull for you as per your requirement.
Step 1. you have to create text object using SE75.
Step 2. follow below program of text box editor.
step 3. call this editor function when user press button.
Step 4 .you need to create screen as per program for container.
program is:
*& Module pool       ZEDITOR1
*& Program to Read text, edit text and save text using editor screen
*& For this program create sap script object using SE75
PROGRAM  ZEDITOR1.
*Varriable declaration
DATA: G_CONTAINER1 TYPE SCRFNAME VALUE 'TEXT' ,
      TEXT1  TYPE REF TO CL_GUI_TEXTEDIT , " declaration to create object
      G_CUSTOM_CONTAINER1 TYPE REF TO CL_GUI_CUSTOM_CONTAINER .
CONSTANTS: LINE_LENGTH TYPE I VALUE 256.
DATA: OK_CODE LIKE SY-UCOMM.
DATA : ED_NAME   LIKE  THEAD-TDNAME ,
       ED_OBJECT LIKE  THEAD-TDOBJECT ,
       ED_HEADER LIKE  THEAD ,
       ED_LINES  LIKE  TLINE OCCURS 0 WITH HEADER LINE ,
       ED_TITLE  LIKE  TTXIT-TDTEXT .
CONSTANTS: C_LINE_LENGTH TYPE I VALUE 256.
define table type for data exchange
TYPES: BEGIN OF MYTABLE_LINE,
         LINE(C_LINE_LENGTH) TYPE C,
       END OF MYTABLE_LINE.
table to exchange text
DATA : G_MYTABLE TYPE TABLE OF MYTABLE_LINE.
DATA : G_WA LIKE  LINE OF  G_MYTABLE.
DATA:ZSR(5) VALUE 'TX'.
*&      Module  STATUS_0100  OUTPUT
      text
MODULE STATUS_0100 OUTPUT.
  SET PF-STATUS 'EDIT_100'.
SET TITLEBAR 'xxx'.
Initialize container of editor screen
  IF G_CUSTOM_CONTAINER1 IS INITIAL.
    CREATE OBJECT G_CUSTOM_CONTAINER1
           EXPORTING CONTAINER_NAME = G_CONTAINER1.
    CREATE OBJECT TEXT1
      EXPORTING
        PARENT = G_CUSTOM_CONTAINER1
        WORDWRAP_MODE = CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
        WORDWRAP_POSITION = LINE_LENGTH
        WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=>TRUE.
  ENDIF.
ENDMODULE.                 " STATUS_0100  OUTPUT
*&      Form  read_text_in_editor
      text
FORM READ_TEXT_IN_EDITOR .
  ED_NAME = ZSR.                                            "'ZTEST2'.
ED_OBJECT = 'ZMAT' .
  ED_OBJECT = 'ZRAJ1'. "ZALOK' .
*--- For Reading Inspection Remarks Related text
  CLEAR: ED_LINES[],ED_LINES,G_MYTABLE[],G_MYTABLE.
  CALL FUNCTION 'READ_TEXT'
    EXPORTING
      CLIENT                  = SY-MANDT
      ID                      = '01'
      LANGUAGE                = SY-LANGU
      NAME                    = ED_NAME
      OBJECT                  = ED_OBJECT
     IMPORTING
       HEADER                  = ED_HEADER
    TABLES
      LINES                   = ED_LINES
    EXCEPTIONS
      ID                      = 1
      LANGUAGE                = 2
      NAME                    = 3
      NOT_FOUND               = 4
      OBJECT                  = 5
      REFERENCE_CHECK         = 6
      WRONG_ACCESS_TO_ARCHIVE = 7
      OTHERS                  = 8.
  IF ED_LINES[] IS NOT INITIAL.
    LOOP AT ED_LINES .
      G_WA-LINE = ED_LINES-TDLINE .
      APPEND G_WA TO G_MYTABLE .
      CLEAR  G_WA.
    ENDLOOP .
  ENDIF.
    PERFORM MOVE_TO_EDITOR.
ENDFORM.                    " READ_TEXT_IN_EDITOR
*&      Form  MOVE_TO_EDITOR
      text
FORM MOVE_TO_EDITOR.
  CALL METHOD CL_GUI_CFW=>FLUSH
    EXCEPTIONS
      OTHERS = 1.
  CALL METHOD TEXT1->SET_TEXT_AS_R3TABLE
    EXPORTING
      TABLE  = G_MYTABLE
    EXCEPTIONS
      OTHERS = 1.
ENDFORM.                    "MOVE_TO_EDITOR
*&      Module  USER_COMMAND_0100  INPUT
      text
MODULE USER_COMMAND_0100 INPUT.
  CASE OK_CODE.
    WHEN 'CLEA'.
      CLEAR: ED_LINES[],ED_LINES,G_MYTABLE[],G_MYTABLE.
      PERFORM MOVE_TO_EDITOR.
    WHEN 'EXIT'.
      LEAVE TO SCREEN 0.
    WHEN 'DISP'.
      IF ZSR IS INITIAL.
        MESSAGE 'Enter Text No.' TYPE 'S'.
      ELSE.
        PERFORM READ_TEXT_IN_EDITOR .
      ENDIF.
    WHEN 'SAVE'.
      PERFORM SAVE_DATA.
  ENDCASE.
  CLEAR: OK_CODE.
ENDMODULE.                 " USER_COMMAND_0100  INPUT
*&      Form  SAVE_DATA
      text
FORM SAVE_DATA .
  CALL METHOD TEXT1->GET_TEXT_AS_R3TABLE
    IMPORTING
      TABLE  = G_MYTABLE
    EXCEPTIONS
      OTHERS = 1.
  CALL METHOD CL_GUI_CFW=>FLUSH
    EXCEPTIONS
      OTHERS = 1.
  CLEAR : ED_LINES, ED_LINES[] .
  LOOP AT G_MYTABLE INTO G_WA .
    MOVE G_WA-LINE TO ED_LINES-TDLINE .
    APPEND ED_LINES .
    CLEAR  ED_LINES .
  ENDLOOP.
ED_HEADER-TDOBJECT = 'ZMAT' .
  ED_HEADER-TDOBJECT = 'ZRAJ1'. "ZALOK' .
  ED_HEADER-TDNAME =  ZSR. "'ZTEST2'.              "ED_NAME .
ED_HEADER-TDID = 'ZMAT'.
  ED_HEADER-TDID = '01'.
  ED_HEADER-TDSPRAS = SY-LANGU.
  ED_HEADER-TDLINESIZE = '072'.
  CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
      CLIENT          = SY-MANDT
      HEADER          = ED_HEADER
      SAVEMODE_DIRECT = 'X'
    TABLES
      LINES           = ED_LINES
    EXCEPTIONS
      ID              = 1
      LANGUAGE        = 2
      NAME            = 3
      OBJECT          = 4
      OTHERS          = 5.
  IF SY-SUBRC <> 0.
    CASE SY-SUBRC.
      WHEN '5'.
        MESSAGE E002(SY) WITH 'IPL' .
      WHEN '1'.
        MESSAGE E002(SY) WITH 'IPL1'.
    ENDCASE.
  ENDIF.
ENDFORM.                    " SAVE_DATA

Similar Messages

  • Popup text boxes or shadowboxs

    In using Dreamweaver: I want to use a "onClick link" and have a popup text box or even a shadowbox that slightly darkens the webpage.
    I will have links to these different popups all over the html page.
    I want to specify the size of the box - same for all (with scroll if need be)
    I really only need the box to contain text (having the ability to use styles would be nice, but not a game breaker)
    Dreamweaver's popup text box does not give me control and is different in all browsers.( in Chrome it says JavaScript Alert at the top of the box - not what I want to see)
    I have Dreamweaver CSS5, but am into writing my own css rules. Just need a little support here.  Thanks

    I like jQuery Fancybox2.  It's very simple to set-up and it can handle just about anything you care to toss at it.  Copy & paste the following code into a new, blank document.  Save & Preview in browsers.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Fancybox2 and Divisions</title>
    <!--LATEST JQUERY CORE LIBRARY-->
    <script src="http://code.jquery.com/jquery-latest.min.js"></script>
    <!--FANCYBOX plugins-->
    <link href="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.css" rel="stylesheet" media="screen">
    <script src="http://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.4/jquery.fancybox.pack.js"></script>
    <style>
    /**CSS Reset, fixes box-model in fluid layouts**/
    margin:0;
    padding:0;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    /**this styles thumbnail container**/
    #thumbs p {
        float: left;
        width: 180px;
        margin: 10px;
        padding: 10px;
        text-align: center;
        border: 1px solid silver;
        /**optional rounded borders**/
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
    /**use same size thumbnail images**/
    #thumbs img {
        width: 160px; /**adjust width to thumbnail**/
        height: 120px; /**adjust height to thumbnail**/
        opacity: 0.75;
    #thumbs img:hover { opacity: 1.0 }
    /**float clearing**/
    #thumbs:after {
        content: "";
        clear: left;
        display: block;
    /**hidden content**/
    #detail-01, #detail-02, #detail-03 { display: none; }
    img {
        max-width: 100%;
        margin: 0 auto;
        display: block
    </style>
    </head>
    <body>
    <header>
    <h1><a href="http://fancyapps.com/fancybox/">Fancybox2 Viewer</a> with images &amp; divs</h1>
    <h2>Details are hidden until thumbnails are clicked.</h2>
    </header>
    <!--insert thumbnails with links to details below-->
    <div id="thumbs">
    <!--thumbnail 01-->
    <p><a class="inline" data-fancybox-group="gallery" href="#detail-01"><img src="http://placehold.it/160x120&text=THUMBNAIL 01" alt="Thumbnail 01" /> </a></p>
    <!--detail for thumbnail 01-->
    <div id="detail-01"> <img src="http://placehold.it/500x320&text=FULL SIZE IMAGE 01" alt="image 01"><h3>Heading 3</h3>
    <p>Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <!--end detail-01--></div>
    <!--thumbnail 02-->
    <p><a class="inline" data-fancybox-group="gallery" href="#detail-02"><img src="http://placehold.it/160x120&text=THUMBNAIL 02" alt="Thumbnail 01" /> </a></p>
    <!--detail for thumbnail 02-->
    <div id="detail-02"> <img src="http://placehold.it/500x320&text=FULL SIZE IMAGE 02" alt="image 02"><h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <!--end detail-02--></div>
    <!--thumbnail 03-->
    <p><a class="inline" data-fancybox-group="gallery" href="#detail-03"><img src="http://placehold.it/160x120&text=THUMBNAIL 03" alt="Thumbnail 01" /> </a></p>
    <!--detail for thumbnail 03-->
    <div id="detail-03"> <img src="http://placehold.it/500x320&text=FULL SIZE IMAGE 03" alt="image 03"><h3>Heading 3</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    <!--end detail-03--></div>
    <!--end thumbs--></div>
    <footer>Your footer</footer>
    <!--invoke FancyBox on page load-->
    <script>
    $(document).ready(function() {
    $("a.inline").fancybox({
    'transitionIn'    :    'elastic',
    'transitionOut'    :    'elastic',
    'speedIn'        :    600,
    'speedOut'        :    400,
    'autoScale'            : true,
    'overlayOpacity'    : 0.8,
    'overlayColor'    : '#505050'
    </script>
    </body>
    </html>
    Nancy O.

  • Want to adjust text boxes while creating a book ????

    I am trying to create my first book. I need more space for text in different areas and none of the layouts fit what i am trying to do. Is there any way to customize the text boxes??

    There is no way to increase the size of the text boxes but you can create your own page layout in another application, do a print to PDF/Save PDF to iPhoto and use that in a full page layout where the image file is the background.
    The following are two very crude examples of using your own layout: landscape - portrait.
    With a good image editor or an application like Pages you can create a page layout that very closely matches the book's theme.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Dynamic popup text box...

    I have a text box with a ton of text in it (multiple
    paragraphs). Functionally, what I'd like to do is have it so that I
    can have people click on (or roll over) certain words, and then a
    definition pops up in a blue box (kinda like a tooltip)...
    I could make one "box" movieclip with a dynamic text field in
    it, and then just use it as a transparent button over each word
    that needs to be defined within the paragraph (loading the
    definition text inside the "box" dynamically), but I wouldn't know
    how to adjust the size of the box so that it fits each definition's
    text. (like, some definitions may be a couple words, and some may
    be a sentence or two, so if the box is always just one size, that
    won't work)...
    That being said, the only thing I can think of is having a
    separate "box" movieclip (each sized to its separate dimentions) in
    the library. But with all of those definitions, that will increase
    the file size huge...
    There's gotta be a simple solution to this that I'm missing -
    any ideas?! Thanks!...

    quote:
    Originally posted by:
    kglad
    to size your textfield use the autoSize property of
    textfields.
    I thought of that too. That solves the problem of the text
    field itself being the correct size, but I then need the box_mc
    that the text field is IN to be sized correctly....
    ...the reason I need the text field in a box (as opposed to
    just stand-alone) is simply for aesthetics. I need a
    semi-transparent blue background behind the text.
    Is there a way (maybe) to auto-size the text field, then grab
    the size that it was autosized to into variables, then apply those
    variables to size the box_mc??? I'm just grasping at straws here -
    I don't even know if that's possible...
    ...if it IS possible, could someone help get me started with
    a sample code? Thanks!

  • Rich Text Box Issue - Expand to show all Text

    Hi everyone
    I'm having a pretty frustrating issue with the rich text box when viewing a line item (not when editing the item, but viewing the item)
    I want my rich text box to expand with the text, which I have changed in the options on InfoPath with the "Expand to show all text" scrolling option. However, in IE, the table row will expand, but the actual rich text box will not and I'll have
    a scroll bar there and you cant see all of the text at one time. If I look in Chrome, then it works the way I want and I can see all of the lines of text that were entered into the rich text box.
    The only solution for IE to work correctly is to change the Display settings to "Enable enhanced rich text content...". But the big issue with that is now you can no longer highlight the text (the highlight disappears right after highlighting it),
    and the users will need to copy text from the text box, so it renders the "enhanced" rich text box useless for us
    It's kind of a lose-lose situation that I'd love to find the solution for

    I guess a better solution would be how can you highlight text from an enhanced rich text box, because changing these to "rich text box" gets rid of font colors in the pre-existing data.
    The original problem was that they couldn't highlight text unless they went into edit mode

  • Scripting a "Tip of the day" Text Box, Requesting Help!!

    Hi there folks,
    I need the help of an experienced scripter, I'm in the
    process of creating a website and I need help with the Flash SWF
    that will be on the Title Page.
    When someone arrives on my site I want a small Text Box to show
    a "Tip of the Day" or a Random Phrase in the swf on the homepage of
    the website.
    Unfortunately I can't figure out how to do this and I cannot
    find anything to help me in the Flash Support File either. Ideally
    I'm looking for someone to post a sample script on this thread so I
    can have a look at it and learn from it.
    Any Help would be much appreciated!!

    A quick and dirty way:
    - In a new Flash document, make a Dynamic Text box (Text Tool
    -> Properties -> Dynamic Text) on your stage
    - Name it something you'll remember (example: 'my_text')
    - Add the following actionscript (preferably in a new layer):
    And that's it. This isn't the prettiest code, and hardly the
    best. Your SWF will be slightly bloated because of the use of a
    Button Component . Also, putting all your quotes inside the Flash
    movie makes it difficult to add new ones (you'll have to recompile
    every time you do) and will increase the movie's size. But it's a
    start.

  • Cannot type in a text box or text callout box

    I'm using Windows 7, IE 9.0.8112.16421, and Acrobat version 10.1.6. I am working in a priorietary platform for reviewing material and I can use all of the commenting tools and can create a text box and a text callout box, but I cannot type in them. My text box and text callout box work just fine with every other program that I use on my system. But this requires using Acrobat and its tools within their platform and I cannot type in those two boxes in that situation. Their first suggestion was it was an Acrobat problem. We have repaired and reinstalled several times to no avail. They then said to be sure Acrobat Reader was not installed (and it wasn't). I've cleared history. Their online reviewing system requires a specific Java script in a specific place -- we've installed, deleted, reinstalled, etc. and it still doesn't work.
    I've used this platform on another computer and it works fine. I got a new computer in February with a new CS, and the problem is occurring on only this new system. And only when I am using Acrobat in their platform.
    Would anyone have any suggestions what I might try? They said they had one report of a person having the same problem, but they had Reader installed.
    Thanks!

    I don't know how to save a sample file to the forum.  But I know it's actualy being created because I can close and reopen the document and the text box is still there and you can still select the text in the text box, view it and see it.  But as soon as you click outside the text box, the text in the text box disappears again until you click back inside the text box.
    This problem has been discussed ad nauseum with no solution ever having been given.
    http://blogs.adobe.com/dmcmahon/2011/09/17/acrobatreader-x-how-to-enab le-the-typewriter-tool/
    By Judy - 5:10 PM on May 24, 2012   Reply
    I am on Adobe X Pro and whenever I add text using the text edit tool the text disappears when I add text to another place in the document. It is also creating comments for every place I add text. How do I get the text to remain visible in the document and not create a comment?
    http://answers.acrobatusers.com/text-box-disappears-q8542.aspx
    "I have a map pdf that I printed from Google Earth. I want to use text boxes to put labels on it. I can place the text boxes and get the font and colors all set up OK, but then when I click the cursor in a new place to start a new text box, the first one vanishes and won't come back unless I mouse over it. I've wasted hours trying to solve this one! I'm using Acrobat Pro X and Windows 7. It also happens with Acrobat Pro 9 and XP."
    http://forums.adobe.com/message/4550185
    http://forums.adobe.com/message/4477271
    Usually, responders claim that one is using Mac Preview or reader or some other program.  THAT IS NOT THE PROBLEM.  THE DOCUMENTS ARE BEING CREATED AND/OR EDITED IN ADOBE ACROBAT X AND NO OTHER PROGRAM.

  • Creating a background fill in a text box

    Hi there,
    I am using CS4 and want to make text boxes with backgroud (e.g., white). I know I can add a white box but is there a easier way?
    Thanks!

    Yes. Make sure you're using Area Type, then select the Area type bounding box and assign a fill color. Use the Direct Selection tool so you select only the type box, not the type itself.
    You can also create a background color with Point Type by adding another fill attribute to the type, in the Appearance palette, then using "Effect>Convert to Shape" to convert it to a rectangle or oval. You can then move it behind the "Character" level in the Appearance panel and  assign it a color. This method allows the flexibility of defining margins around the text.

  • Printing a movie clip with dynamic text boxes

    I've got a certificate inside a movie clip, and i want the
    dynamic text box to dispay the user name, but for some reason it is
    coming up undefined, even though i have the dynamic text box set to
    finalname = _root.inputname, but it comes up as undefined on the
    screen. :( Can anyone tell me where i am going wrong?
    Is there a way to print just a specific movie clip on the
    screen? I can only print all the frames in the movie and without
    the dynamic text box... any help would be greatly
    appreciated.

    assign the mouseChildren property of your movieclip to false.

  • How can I link text boxes between different Master Pages in InDesign?

    I want to link text boxes back and forth between different Master Pages in InDesign. How can I do this?

    I'm interested to know what it is you're trying to achieve - can you explain what you want your text to do?
    Regards,
    Malcolm

  • Numeric text box:Change colour after calculation

    How do you change the colour of a numeric text depending on the result of an arithmetic calculation ?
    I assume its something to do with property node....Can some add to my basic program to do the following:
    See attached picture of current basic program.I am using Ver 8.0.
    If the output of x+y >5 then i want the output text box to turn Red.
    If the output of x+y>5 then i want the output text box to turn Green.
    The default colour should be white.
    Regards,
                   labtech5555
    Attachments:
    ScreenHunter_labview x+y.jpg ‏73 KB

    labtech5555 wrote:
    If the output of x+y >5 then i want the output text box to turn Red.
    If the output of x+y>5 then i want the output text box to turn Green.
    The default colour should be white.
    OK, this makes no sense at all. If x+y > 5 it cannot be red and green at the same time.
    Here's some simple code that would make the background of the indicator red if the result is >5 and green otherwise.
    Maybe you can modify it for waht you really want. (I cannot tell.)
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    x+y.png ‏8 KB

  • I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it. help help help please - I have latest version of indesign - thanks

    I am pulling my hair out! I am using adobe indesign and just want to make a text box 'autofit text' as I change fonts a lot and want the font to automatically re-size as I change it.
    Is it not possible to create a text box, fill it with dynamic (data driven) text, but make the font size either scale up or down automatically, so that the entire text box is filled? This is a feature in PrintShop Mail Pro called COPY FIT. but no such feature in Indesign??
    help help help please - I have latest version of indesign - thanks, DJ

    lol... it seems to work, but I have another huge problem!
    Apparently .CSV files cannot contain page breaks in the data! The data I am trying to merge is a 'letter', with paragraphs, line breaks, etc.,
    But, after data merging, it ignores page breaks and only merges the first paragraph of each letter. (sigh)
    Solution? Hopefully, an EASY solution. lol as we have thousands of records.
    Is there a third party indesign plugin that will allow .xml, or .xls data merge import??
    Thx,
    DJ

  • I want to change the size and color of text in call out boxes and text boxes. How can I do this? Jack

    I want to change the size and color of text in call out boxes and text boxes. How can I do this? Jack

    Highlite the text inside the text box and then press Ctrl+E.

  • I want to display strings which are in case structure ,into one text box

    hi,
    i am writing a vi, which has event structure inside that a
    case structure.
    i problem is , i have two cases,
    1) when the value is true it executes the true case, first it reads the string constant and second is the string indicator which is my out put.
    2) in the false case it does pritty much same.
    i want to display the inputs and out puts of different cases into the same text box that is one for input and one for output.
    Can some one help me.
    Solved!
    Go to Solution.

    Did u tried as Ravans suggested.
    Put the indicators outside of the case structures.  Wire across the borders of the case structure.  It creates "tunnels".
     I am not getting
    but it displays both result at a time. but i want
    to display the instruction first, to the user, so that they act
    according to the instruction and ,than i want to display the result.  
     Try this VI.
    Balaji PK (CLA)
    Ever tried. Ever failed. No matter. Try again. Fail again. Fail better
    Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.
    Attachments:
    string display-1.vi ‏22 KB

  • I just want to type on a plain piece of paper. I want to type several pages. I go to Pages and the blank paper has a text box around my type and only lets me type 400 words. How do I expand?

    I want to type several pages of text. I go to Pages and it puts a text box around my text and only allows 400 words. How do I get unlimited paper? Thanks in advance.

    On the introductory window, also make sure you pick from the top choices under Word Processing - I just use "Blank". If you choose the Blank under the sedon set (page layout), you will have to get a text box. I use that setting if I have a lot of images I want to insert and then have text around/near the images.
    See my screenshot here:
    When you're done with that page, it should automatically move to the next one or you can choose another blank page in the pulldown in the toolbar.

Maybe you are looking for

  • Program crashes without error message when opening a database

    One of our users is experiencing an issue with Discoverer Desktop whereby the program crashes with no error message when he attempts to open a database from a local or network drive. If he logs in to Windows as himself, and runs Discoverer as himself

  • Fix PC Card slot on PowerBook G4

    It works when booted off of the Leopard install disk so I decided to try putting the driver off of my iBook G4. now it just says that the driver cannot be used

  • XFCE vs. Openbox for my older system

    The system in question is: PIII @ 1Ghz, w/ 512MB RAM and fbs 133MHz. (These numbers sound good, but keep in mind that it's 7-8 years old) I know that I could just as well install GNOME or KDE techincally, but they will be pokey. My questions are as f

  • LED lights issue / battery problems

    Sorry if this has been asked before, I looked in some old threads but didn't find an answer... When I plug the MagSafe adapter into my computer, the LED lights up for 2 secs when I plug it in and then goes out. I seem to be using my battery power. Bu

  • Buttons are not working on Vision

    Hi All, I developed a page where two buttons are there one for Printable page and other is to open Oracle Form, these are working fine on my machine but on Vision these are not working. Please suggest If anyone have faced this issue before. Thanks in