How can I insert text to the right of the right hand indent?

I need to format data in a text box so that the data is separated into three columns defined by tab locations.  The data located at the second tab (column) has varying lengths so that at times it needs to wrap.  I need to have the data wrap before it gets to the next tab (third column).  What I am trying to accomplish can be done in Microsoft Word by setting the tab to the right of the right hand indent.  I can also get the look I am trying to achieve by using a table but because the data I am using is coming from a database the interface will not allow me to use the table function.  Any suggestions will be much appreciated.
Thanks

The way the data is served to the InDesign document.  The data can only be flowed into a text box.  It cannot be flowed into a table.  If I can find a way to solve my issue then the data can be placed on the page using a style instead of flowing the data onto the page and then having to cut and paste it into a table.
KEN HAVENER | Business Process Engineer
Phone: 920.406.3479 | Fax: 920.406.3479
Email: [email protected]
Please consider the environmental impact before printing this email.

Similar Messages

  • How can I insert text in a photo?

    How can I insert text onto a photo?  Before Lion used Command T. Have not installed Page or Numbers. Have Microsoft for Mac.

    Open the photo with Preview and select ⌃⌘T.
    (Also, take a look at: Skitch)

  • How can i highlight text in the Adobe Difital Editions?

    How can i highlight text in the Adobe Difital Editions?

    You have to remember that Digital Editions was never designed to have 'text
    editor' capabilities.  BTW: Bluefire and Overdrive also have such
    limitations.  Put in another frame of reference, DE presents you with the
    ebook, as you would be presented with a physical printed book.
    ==============

  • How can I Insert pictures in the text? Is there another way besides attaching a file?

    How can I insert a picture in the text email instead attaching file?

    The feature to add images in tables is gone, ike about another 90 features that exists in Pages 09.

  • How can I insert text on an image via IPhoto?

    I am still learning about my IMac and primary use for it was mainly for my photo images. At the moment attempting to build a new website via IWeb and as part of the site will be numerous images. However, when making up the albums, I wanted to have text on my images but alas on the face of it I cannot see how this is possible as part of the existing IPhoto software - could any member advise how it can be done?
    My alternative at the moment is to use Adobe Photoshop on my Windows based Laptop, insert text on the image, save and then upload to my IMac into my Album - mmmm a bit long winded to say the least! Regardless, thanks in advance.  

    You can learn to do this with the Preview app already on your Mac.
    Open Preview. Make sure that the Annotate button appears in the Toolbar. If the button is not already there, select Customize Toolbar from Preview's View menu. Drag the Annotate button (the pencil) to your your preferred location on the Toolbar.
    Open a photo in Preview, press the Annotate button and use the Annotate tools to add your text. You will find instructions on annotating files and documents in Preview Help in the Help menu.

  • How can I insert data into the standard CRM tables ?

    Hi Experts,
    Scenario----
    I need to download few attributes (fields) from SAP MDM to SAP CRM via SAP XI. I'm using the 'COMT_PRODUCT_MAINTAIN_API' API for it.
    The attributes(fields) that are present in the strucutres of API are downloaded into CRM system (by executing the Inbound proxy that is created based on the Message Interface created on XI) by calling the functions present in the API.
    And for those fields that are not present in CRM, but need to be downloaded into CRM, I'm creating the Set Type attributes in CRM, which get appended to the API.
    My query is:
    There are fields in CRM into which I need to insert the values. But they are not listed in the API. So, how can I insert(/download) the values into these standard fields?
    Regret the long description. Intended to be clear.
    TIA. Points will be awarded.
    Regards,
    Kris
    Edited by: Kris on Jul 21, 2008 8:00 AM

    he INSERT program throws exception???
    can any one help me how to insert data into tabel.I have never used the jdbc driver to access, but what do you think that the flag READONLY=true means? An insert is not a read.
    Kaj

  • How can i place button on top right hand corner of the tabbed pane

    Hi all,
    i want to place button on top right hand corner of the tabbed pane, just run the code below, i have add button(it going to insert tab into tabbedpane), i want to place that tab into top right hand corner of the tabbedpane (not inside the tab itself). if i set tab policy setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT), it will give two button at right hand corner along with those buttons i want to and one more add button.
    please suggest so that i can move forward.
    Thanks in advance
    import java.awt.Dimension;
    import java.util.HashMap;
    import javax.swing.JPanel;
    import javax.swing.JTabbedPane;
    * @author  Dayananda.BV
    public class TabpaneDemo extends javax.swing.JFrame {
        /** Creates new form TabpaneDemo */
        HashMap<Integer, tabpanel> panelMap = new HashMap<Integer, tabpanel>();
        public TabpaneDemo() {
            initComponents();
            createFloorPlan();
            getContentPane().setPreferredSize(new Dimension(400,400));
            jTabbedPane1.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        // <editor-fold defaultstate="collapsed" desc=" Generated Code ">                         
        private void initComponents() {
            jTabbedPane1 = new javax.swing.JTabbedPane();
            add_tab_button = new javax.swing.JButton();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            add_tab_button.setText("+");
            add_tab_button.setMargin(new java.awt.Insets(0, 0, 0, 0));
            add_tab_button.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    add_tab_buttonActionPerformed(evt);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addComponent(jTabbedPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 400, Short.MAX_VALUE)
                .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
                    .addContainerGap(308, Short.MAX_VALUE)
                    .addComponent(add_tab_button, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
                    .addGap(67, 67, 67))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addComponent(add_tab_button)
                    .addGap(8, 8, 8)
                    .addComponent(jTabbedPane1, javax.swing.GroupLayout.DEFAULT_SIZE, 292, Short.MAX_VALUE))
            pack();
        }// </editor-fold>                       
        private void createFloorPlan(){
            tabpanel floorplan_Panel = new tabpanel(panelMap.size()+1);
            panelMap.put(floorplan_Panel.getTabIndex(), floorplan_Panel);
            jTabbedPane1.add(floorplan_Panel, floorplan_Panel.getTabName());
            jTabbedPane1.setSelectedIndex(jTabbedPane1.getTabCount()-1);
        private void add_tab_buttonActionPerformed(java.awt.event.ActionEvent evt) {                                              
            createFloorPlan();
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new TabpaneDemo().setVisible(true);
        // Variables declaration - do not modify                    
        private javax.swing.JButton add_tab_button;
        private javax.swing.JTabbedPane jTabbedPane1;
        // End of variables declaration                  
        class tabpanel extends JPanel{
            private int tabIndex = 0;
            private String tabName ;
            public tabpanel(int tabIndex) {
                this.tabIndex = tabIndex;
                if(tabIndex >= 10) {
                    tabName = "Floor Map"+tabIndex;
                } else{
                    tabName = "Floor Map"+tabIndex+"  ";
            public int getTabIndex(){
                return tabIndex;
            public String getTabName(){
                return tabName;
    }Thanks
    Dayananda B V

    This part of tabbed pane is not customizable as it lies in the ComponentUI(TabbedpaneUI) portion of the tabbedpane.
    But I can point out the place u can change to bring the desired feature into effect.
    U can find an Inner class called ScrollableTabSupport
    Look for the methods createButtons where u can create extra buttons and add to the tabbed pane.
    The Inner class also implements actionListener where u can implement the action for the button u added.
    By this method U have to use your own extended TabbedPaneUI which u cant escape from.
    Hope this will help u.

  • HT2506 In pages how can I link text within the document? I can find a bookmark option and links only allows me to link to a web page

    Hi all,
    This is my first time using this discussion site! Any help would be great, as I am getting very frustrated with pages!
    What I am trying to do is link text at the bottom of a document to a page at the beginning of the document. I can't find a bookmark option adn when I clink insert link it only provides an options to link to a web page. Help! thanks

    Bookmarks are missing (sadly) and with them, the ability to create an in document link.
    I was looking for this feature in a Table of Contents. When you assign a 'style' to text in a document, you can Insert > Table of Contents. Then Pages will keep the TOC updated and you'll be able to 'link' from the page number in the TOC. (Not much help though, for the OP)

  • How can add some text on the image

    I have images in the gif format.
    How can I add some text in specified point on the image?
    Fpor example, by using Intermedia plugins?

    We do not support this functionality. I suspect you are talking about watermarking?
    I would suggest you send a message to [email protected] , the product manager for interMedia and describe your application. This would be helpful in defining future requirements. He may also know of partners that can supply this technology.
    You can add text to an image using JAI or some other packages before the image goes into the database, or when it goes out.
    Larry

  • How can I move text onto the following line in CSS without making a new paragraph?

    Hello there,
    I want to do the follow:
    Name of company,
    Address of company 1,
    Address of company 2,
    Address of company 3,
    When I press enter to move the text underneath the previous text, it starts a new paragraph which I don't want. How can I simply get it to flow onto the next line without creating a new paragraph?
    Thanks so much in advance.

    You can use <br />
    <p>
    Address 01<br />
    Address 02<br />
    Address 03<br />
    </p>
    I'd probaly type it out in Code View but I think you can use shift+enter
    Martin

  • How can I insert text in Pages so it flows to the next page?

    I try copying a block of text into Pages but it cuts off at the end of the page instead of flowing to the next page. How do I fix this?

    You have probably started with a Layout mode template instead of a Word Processing template. See the sidebar in the Template Chooser for which is which.
    Alternatively you may have pasted an object (possibly from the Internet), not text into a Word Processing template. Click inside the object and copy the text, then delete the object and try pasting again.
    Peter

  • How can you delete text to the right

    I would like to be able to delete characters to the right , Using the keyboard Ie opposite to backspace

    Sorry, it doesn't support that.
    There may be a bluetooth keyboard out there that supports right delete, but using the on screen keyboard  is left delete only

  • How can I insert data in the request body of a proxyService ?

    I have the following xq query, I have defined a variable called context and assign the value of the xquery bellow.
    <ns:Kontekst xmlns:ns20="http://skat.dk/etil/2011/02/11/">
    <TransaktionsID>{fn-bea: uuid()}</TransaktionsID>
    <TransaktionsTid>{fn:current-dateTime()}</TransaktionsTid>
    </ns:Kontekst>
    Question. is it possible to include this as part of the request body ?

    You can do this using the "Insert" action of OSB.Try and let us know.
    http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/tutorial/tutTransform.html#wp1068641

  • Help - how can I remove text in the background?

    I am translating a text from English into Portuguese in a document created in Germany (as .mif 7).
    After I inserted the Portuguese text, a ruler and the words "498 Entwurf 15.06.2011" in red and "Abstand" in sky blue started to appear in the background, as well as some kind of a grid (please see attached image). I need them to disappear when the document is printed, but I haven't been able to make them disappear so far. The words in red indicate the name of the document (498) and the date when it was originally created. I need the document to have a white background only with the letters in black and images (just like the original, but in Portuguese - no words in sky blue and red and no grid).
    This is probably easy to solve and I may sound really silly, but I've already lost 3 hours and I'm getting desperate because I need to deliver the document as soon as possible.
    Any help would be much appreciated.
    Best,
    Paulo Rodrigues

    Hi,
    I think the converter you are using to convert it to portuguese is a free converter and it has been noticed that when you use the free or trial version of any converter ,it generally puts its name in the PDF document and you have to buy that product to get rid of it.If thats true then we would not be able to remove that text.
    Kindly let me know if thats correct what i said.
    Thanks
    Harpreet.

  • HT2506 How can I bold text in the notes that I write in Preview?

    Any way to create a shortcut key for this? Command-B doesn't work...

    Try going to System Preferences/Keyboard, selecting Application Shor...., clicking the + button, which will bring up the following screen. You can then Select Preview where All Applications is shown and try to create the command.

Maybe you are looking for

  • Dynamic PL/SQL & substr, instr function

    I am having trouble with incorporating the SUBSTR and INSTR functions into my dynamic PL/SQL procedure using Oracle 8i. I have data that is packed into one column seperated by a delimiter (':') I need to seperate the data to use indicidual pieces. If

  • Toolbars from customize only showing in one window (Mac Snow Leopard).

    Dragged several toolbar buttons from the customize window onto the toolbars in various places. None of them show up in any other window other than the one I did this in.

  • Resizing media components dynamically

    Does anyone know of a way to resize the MediaController component dynamically based on the size of the stage? When I just change its height/width properties, it stretches it. Not quite what I'm looking for. If I resize it manually by changing the dim

  • Re-installing Lightroom 4 and Photoshop CS6

    I intend to upgrade Windows 7 32 bit to 64 bit, which apparently means a clean install. Can I back up both Lightroom 4 and Photoshop CS6 for re-installation or will I have to make a fresh install from the discs. Furthermore CS6 was an upgrade to CS4

  • Portal SAPMMC

    Hi experts, we have the portal installed and it was up and running and configured right. Sap had checked this through GA session etc. Now however during the regular restart of the portal app server after the restart the Sap instances can no longer be