Outline Numbering in Numbers '09

I want to create a five-level outline numbering in Numbers, but each entry has a 1. Surely I don't have to manually change each entry? it's 300 rows! The data has been copied and pasted from a website, then formatted in Numbers. Can outline numbering be applied, or does Numbers assume you're always creating your Tiered numbers list from scratch?

BMcRaeC wrote:
Seems like a no-brainer to me… why WOULDN'T you want to create a tabular outline heirarchy? Excel has had this function for a very long time.
I don't understand your statement.
Numbers isn't supposed to be a clone of Excel. The delivered features are selected in Cupertino, not in Redmont.
Defining these features is based upon :
++-+-+-+-+-+-+-+-++
Apple Human Interface Guidelines:
Apply the 80 Percent Solution
During the design process, if you discover problems with your product design, you might consider applying the 80 percent solution‚ that is, designing your software to meet the needs of at least 80 percent of your users. This type of design typically favors simpler, more elegant approaches to problems.
If you try to design for the 20 percent of your target audience who are power users, your design may not be usable by the other 80 percent of users. Even though that smaller group of power users is likely to have good ideas for features, the majority of your user base may not think in the same way. Involving a broad range of users in your design process can help you find the 80 percent solution.
+-+-+-+-+-+-+-+-+
Yvan KOENIG (VALLAURIS, France) 10 mai 2011 22:28:08

Similar Messages

  • How can I customize Microsoft Word Outline Numbered List Templates with AppleScript?

    I wrote an applescript to set up a word document with the appropriate styles to give the document an academic setup, much like what Xelatex produces. This is a work in progress and I have a problem.
    I have successfully applied the style changes to each Header and I have applied the desired outline numbered list template "list template 5 of list gallery 3", however I would like to add tab stops to each one in order to make each header look slick like in Latex.
    To do what I want manually in Microsoft Word 2011 mac I would click Bullets and Numbering, customize, under text position i would check the tab stop box and put in some value (1 cm, for example)
    The following is an approximation of the result of running this script on a document with headings 1-9 applied consequently to each line, respectively. Note how they are not even. I think this is an issue with the template, but I want to be able to run this script on any mac without extra template files.
    1    Heading 1
    1.1    Heading 2
    1.1.1    Heading 3
    1.1.1.1    Heading 4
    1.1.1.1.1    Heading 5
    1.1.1.1.1.1 Heading 6
    1.1.1.1.1.1.1        Heading 7
    1.1.1.1.1.1.1.1Heading 8
    1.1.1.1.1.1.1.1.1 Heading 9
    Here is the script so far:
    Academic Paper Setup
    Copyright © 2012 macmadness86
    Just kidding there is no copyright. Open Source rules!
    You may use this code however you like. It would be nice
    if you made reference to the original code when sharing.
    THINGS TO DO:
    find a fix for changing font color of headings without hardcoding it.
    fix headings 4-9
    (*<Properties to be set by the user*)
    --number suffix corresponds to heading 1, heading 2, etc.
    --NOTE: To change the coloring of headings, it must be hardcoded. must find a fix.
    property fontName1 : "CMU Serif Roman"
    property fontName2 : "CMU Serif Roman"
    property fontName3 : "CMU Serif Roman"
    property fontName4 : "CMU Serif Roman"
    property fontName5 : "CMU Serif Roman"
    property fontName6 : "CMU Serif Roman"
    property fontName7 : "CMU Serif Roman"
    property fontName8 : "CMU Serif Roman"
    property fontName9 : "CMU Serif Roman"
    property fontSize1 : 15
    property fontSize2 : 14
    property fontSize3 : 13
    property fontSize4 : 12
    property fontSize5 : 12
    property fontSize6 : 12
    property fontSize7 : 12
    property fontSize8 : 12
    property fontSize9 : 12
    property boldTF : true
    property italicTF : false
    property highlightTF : false
    (*Properties to be set by the user>*)
    tell application "Microsoft Word"
        tell active document
            (*<normal code BLOCK*)
            set name of font object of Word style style normal to "CMU Serif Roman"
            set font size of font object of Word style style normal to 12
            set bold of font object of Word style style normal to false
            set italic of font object of Word style style normal to false
            set color index of font object of Word style style normal to black
            (*normal code BLOCK>*)
            (*<heading 1 code BLOCK*)
            set name of font object of Word style style heading1 to fontName1
            set font size of font object of Word style style heading1 to fontSize1
            set bold of font object of Word style style heading1 to boldTF
            set italic of font object of Word style style heading1 to italicTF
            set color index of font object of Word style style heading1 to black
            --set paragraph format left indent of paragraph format of Word style style heading1 to (centimeters to points centimeters 0) --indent sections relative to margin
            --set tab stop position of tab stop of Word style style heading1 to (centimeters to points centimeters 1)
            --set tab hanging indent of paragraph format of Word style style heading1 to count 1
            (*heading 1 code BLOCK>*)
            (*<heading 2 code BLOCK*)
            set name of font object of Word style style heading2 to fontName2
            set font size of font object of Word style style heading2 to fontSize2
            set bold of font object of Word style style heading2 to boldTF
            set italic of font object of Word style style heading2 to italicTF
            set color index of font object of Word style style heading2 to black
            (*heading 2 code BLOCK>*)
            (*<heading 3 code BLOCK*)
            set name of font object of Word style style heading3 to fontName3
            set font size of font object of Word style style heading3 to fontSize3
            set bold of font object of Word style style heading3 to boldTF
            set italic of font object of Word style style heading3 to italicTF
            set color index of font object of Word style style heading3 to black
            (*heading 3 code BLOCK>*)
            (*<heading 4 code BLOCK*)
            set name of font object of Word style style heading4 to fontName4
            set font size of font object of Word style style heading4 to fontSize4
            set bold of font object of Word style style heading4 to boldTF
            set italic of font object of Word style style heading4 to italicTF
            set color index of font object of Word style style heading4 to black
            (*heading 4 code BLOCK>*)
            (*<heading 5 code BLOCK*)
            set name of font object of Word style style heading5 to fontName5
            set font size of font object of Word style style heading5 to fontSize5
            set bold of font object of Word style style heading5 to boldTF
            set italic of font object of Word style style heading5 to italicTF
            set color index of font object of Word style style heading5 to black
            (*heading 5 code BLOCK>*)
            (*<heading 6 code BLOCK*)
            set name of font object of Word style style heading6 to fontName6
            set font size of font object of Word style style heading6 to fontSize6
            set bold of font object of Word style style heading6 to boldTF
            set italic of font object of Word style style heading6 to italicTF
            set color index of font object of Word style style heading6 to black
            (*heading 6 code BLOCK>*)
            (*<heading 7 code BLOCK*)
            set name of font object of Word style style heading7 to fontName7
            set font size of font object of Word style style heading7 to fontSize7
            set bold of font object of Word style style heading7 to boldTF
            set italic of font object of Word style style heading7 to italicTF
            set color index of font object of Word style style heading7 to black
            (*heading 7 code BLOCK>*)
            (*<heading 8 code BLOCK*)
            set name of font object of Word style style heading8 to fontName8
            set font size of font object of Word style style heading8 to fontSize8
            set bold of font object of Word style style heading8 to boldTF
            set italic of font object of Word style style heading8 to italicTF
            set color index of font object of Word style style heading8 to black
            (*heading 8 code BLOCK>*)
            (*<heading 9 code BLOCK*)
            set name of font object of Word style style heading9 to fontName9
            set font size of font object of Word style style heading9 to fontSize9
            set bold of font object of Word style style heading9 to boldTF
            set italic of font object of Word style style heading9 to italicTF
            set color index of font object of Word style style heading9 to black
            (*heading 9 code BLOCK>*)
        end tell
        (*<apply numbering to the sections code BLOCK*)
        set selFind to find object of selection --selects text of execute find command
        clear formatting selFind --reset selFind just to make sure
        set style of selFind to style heading1 --set style we are looking for
        execute find selFind find text "" wrap find find continue with find format and match forward
        if found of selFind is true then
            --display dialog (get content of text object of selection) --for debugging only
            (*<code BLOCK word__set paragraph style*)
            --I apply the formatting to the previously found text
            set myLT to list template 5 of list gallery 3 of active document
            apply list format template (list format of text object of selection) ¬
                list template myLT
        end if
        (*Apply numbering to the sections code BLOCK>*)
    end tell

    I figured it out . Just in case anyone else wants to know the script is below:
    tell application "Microsoft Word"
        set myTable to table 1 of selection
        convert to text myTable separator separate by tabs
    end tell

  • How to continue outline numbering across pages

    Using InDesign CS4 on Mac...  Sorry for the newb question, but I've got a section on the right-hand side of my document that has outline numbering across a couple pages.  I've used separate text boxes for each page.  Is it possible to continue this numbering so that 1-5 show up on page 1 and 6-10 show up on page 2?  Thanks!

    As janine4gg mentions, the link she gives is one to a multi-part series in that blog that helps with all different numbering tasks. I recommend looking at the the first in that series: http://blogs.adobe.com/indesigndocs/2009/04/numbered_lists_part_i_outlines.html.
    Using defined paragraph styles that include a numbering style and using a defined numbered list, there should be no issues about where or which side numbered items fall on for numbering to continue correctly.
    If you mean that you have a text frame that you use to contain an outline and you need it to break in a certain place, you would put a text frame break in. Type > Insert Break Character > Frame Break. Link the text frame with the break to the text frame you want the text to flow into.

  • Display Outline Numbering in a Hierarchical Query (Report)

    I have a requirement to show outline numbering of a Financial report.
    We hava a hierarchical query for displaying the report so you will see the report is indented.
    But what i want is to automatically number the items like this:
    1
       1.1
       1.2
       1.3
            1.3.1
            1.3.2
       1.4
    2.
        2.1
    3..
    ....Can we utilize Microsoft Word's Outline Numbering / Indents feature? or someone had succesffully implemented this?
    Thanks,
    Anton
    Edited by: anton on Jul 6, 2010 1:37 AM

    Is this numbering in your TOC or inside for-each group?

  • Just installed 10.6. Unable to print word document with outline numbering

    Just installed 10.6.8. Can't print Word document with outline numbering.

    You mean USB HUBs, correct? Not routers.
    Yes remove the HUBs and try the drives connected directly to the computer.

  • Outline Numbered Format in Textbox

    Is there a way to have lines in a textbox automatically be numbered like the Outline Numbered feature in Word? I want to create a dynamic form that formats like an outline when typed into a textbox. I am currently using Lifecycle Designer 8.
    example:
    1. xxxxxx
    1.1 xxxxxxxx
    1.2 xxxxxxxx
    2. xxxxxx
    Thnx-
    Alex R. Ruiz

    First, you don't provide the content that precedes this
    sample (you open with a LI tag), but there's way more code than
    necessary here.
    The main thing in lists is to simply select paragraph
    elements and click either the bullet or number toolbar icon. When
    you select paragraphs within the list for child formatting, simply
    click the increase indent icon. RH tends to end lists and resume
    them (as in your example), so you need to manually redo this, such
    as:
    OL
    LI [1. ...]
    LI [2. ...]
    /OL
    OL
    LI [a. ...]
    LI [b. ...]
    /OL
    OL start=3
    LI [3. ...]
    /OL
    should be:
    OL
    LI [1. ...]
    LI [2. ...]
    OL
    LI [a. ...]
    LI [b. ...]
    /OL
    LI [3. ...]
    /OL
    This results in a truly nested for of list/sublist elements,
    which translates very nicely to Word.
    Peter Grainge covers this in more depth on
    his
    site.
    Good luck,
    Leon

  • Outline numbered headings possible?

    I'd love to use Pages instead of Word for the briefs I have to write for law school. However, there's one formatting issue I can't figure out and is crucial. Is there a way to do outline numbered headings? For instance, I want to have headings throughout the text that look like this:
    I. This is a first level heading.
    A. A Second Level
    1) Third Level
    2) Third Level
    B. Another Second Level
    II. Heading level one again
    A. A Second Level
    B. And another
    I tried setting this up by applying numbering to the Heading and Sub-Heading styles -- and creating a Sub-sub-heading -- but the numbering doesn't reset. So the second level headings under (II) start at C and then D, instead of A and B.
    Am I missing something? Thank you.

    More about numbered headings and TOCs...
    To gather headings numbered using the list format into a TOC, you DO have to create separate styles for each heading level, or Pages will gather the headings into one TOC level. You then have to edit the TOC styles to match your heading levels. Once the TOC is built, you have to indent the sub-heading TOC entries manually. You will probably also have to go to the first heading style in the document body and set it to begin number at 1. I've done it. It works. It just requires some planning ... and leaving the TOC until the absolute last thing you do. If there was a way to attach documents to this message, I'd attach my test file.

  • Outline Numbering HTML

    Hi All,
    Has anyone tried to get outline numbering to work with HTML
    or dreamweaver? I'm not even sure if this feature is supported?
    I've done the usual trawl around google but only found a
    couple of very convoluted methods. I get the feeling that it is not
    supported and would rather get some feedback from people who have
    tried it.
    thanks
    Craig

    On 26 Sep 2006 in macromedia.dreamweaver, CraigCC wrote:
    > Has anyone tried to get outline numbering to work with
    HTML or
    > dreamweaver? I'm not even sure if this feature is
    supported?
    >
    > I've done the usual trawl around google but only found a
    couple of
    > very convoluted methods. I get the feeling that it is
    not supported
    > and would rather get some feedback from people who have
    tried it.
    See code below. Works in FF; doesn't in IE. I haven't tried
    it in
    other browsers. The code comes direct from the w3c (note the
    tagnames
    in uppercase):
    http://www.w3.org/TR/REC-CSS2/generate.html#scope
    <style type="text/css">
    OL { counter-reset: item }
    LI { display: block }
    ol LI:before { content: counters(item, ".");
    counter-increment: item
    </style>
    </head>
    <body>
    <OL> <!-- (set item[0] to 0 -->
    <LI>item <!-- increment item[0] (= 1) -->
    <LI>item <!-- increment item[0] (= 2) -->
    <OL> <!-- (set item[1] to 0 -->
    <LI>item <!-- increment item[1] (= 1) -->
    <LI>item <!-- increment item[1] (= 2) -->
    <LI>item <!-- increment item[1] (= 3) -->
    <OL> <!-- (set item[2] to 0 -->
    <LI>item <!-- increment item[2] (= 1) -->
    </OL> <!-- ) -->
    <OL> <!-- (set item[3] to 0 -->
    <LI> <!-- increment item[3] (= 1) -->
    </OL> <!-- ) -->
    <LI>item <!-- increment item[1] (= 4) -->
    </OL> <!-- ) -->
    <LI>item <!-- increment item[0] (= 3) -->
    <LI>item <!-- increment item[0] (= 4) -->
    </OL> <!-- ) -->
    <OL> <!-- (reset item[4] to 0 -->
    <LI>item <!-- increment item[4] (= 1) -->
    <LI>item <!-- increment item[4] (= 2) -->
    </OL>
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/email.php

  • Can I show outline numbering in a table of contents?

    I am using an outline to put together a reference book.  This is hte format I'm using:
    A. Law and Justice
         1. Law of the Land
              a. Example
              b. Example
         2. Law Publication
              a. Example
              b. Example
    B. Government and Civil Officers
         1. Requirements for Civil Leaders
    However, the table of contents shows, "Law and Justice" instead of "A Law and Justice"  It also does not show the second level number.  For example, it shows "Law of the Land" instead of "1. Law of the Land".  Does anyone know how I can force the table of contents to show the numbering?
    Thanks!

    Pages T.O.C. does not include any List numbering and no you can not force it to.
    If you want numbering, you'll have to type it manually.
    Or use alternative software. Pages (whatever version you are using) is not compulsory.
    Peter

  • Where is Outline Numbering in RH7?

    We are converting projects from RH 5 to RH 7. All our documents have to be be formatted with "legal" numbering (e.g., 1.1, 1.2.1, 1.2.1.1, etc.) In RH 5, there were 3 tabs under Bullets and Numbering, as I recall. You had Bullets, Numbering, and Outline. Now the Outline tab or option appears to no longer exist. We have had to reformat our documents manually when adding or deleting sections.
    Does anyone know a way around this? And failing that, is there a way to add tab stops at least, so that lines that wrap will indent to the text position, not at the start of the line? In other words, we want the lines to be consistently indented and aligned without having to use spaces and nudge the lines, so sort of like this:
    1.1  For example, this is a level one sentence.
    1.1.1  This is a level two sentence and if you imagine it wrapped,
      it would exactly left justify on the second line with the first word of the first line (e.g., 'This"), and not the number 1.1.1.
    Any ideas or creative suggestions would be greatly appreciated!

    Hi Leon
    I know it seems a bit on the strange side. And being a new feature, it could well be buggy. Or, it could simply be working as the developers intended but they failed to anticipate how we would want to use it.
    All of it ultimately ends up in the CSS. Did you have a play with adjusting values in the CSS?
    Note that I wasn't suggesting it would be the ultimate end all solution here. I only suggested the eval be tried to see.
    Cheers... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • Outline numbering between cells

    I am tying to create a tiered numbering system. I have got to work perfectly within one  cell.  However I want each number increment to have its own cell and I can't get the automatic numering to work if I jump to a new cell.  Please help.

    Hi Tom,
    I typed your tiered numbering into cells A1 to F1. The cells are all formatted as Text (because 1.2.1 and 1.2.2 are not numbers)
    Question: how do you tell Numbers how to increment each column? How does Numbers know that you want 1.2.1 in Column D, instead of 1.3? How does Numbers know to increment from 1.22 in Column E to 1.3 in Column F?
    I can't follow (and neither will Numbers, unless you tell it how).
    Perhaps you need another table where you show how Levels 1, 2 and 3 will vary.
    You can use the function CONCATENATE to add elements to a string. However, to make it automatic, Numbers will need some rules to follow.
    Regards,
    Ian.

  • SQL Report - Outline numbering

    I would like to create a report in the following format:
                     Name             Title              Ethnicity                Gender
    (1) Job1         a. Joe Smith     President          Black                    Male
                     b. John Jones    Vice President     Hispanic                 Male         
    (2) Job2         a. (and so forth...)
                     b.
    (3) Job3         a.
                     b.
    (4) Job4         a.
                     b.
    (5) Job5         a.
                     b.
    (6) Job6         a.
                     b.
    (7) Job7         a.
                     b.
    (8) Job8         a.
                     b.
    (9) Job9         a.
                     b.
    (10) Job10       a.
                     b.
                        How can I have the (1), (2), (3)...(10) and a. and b. displayed correctly with the data? I know rownum will not work because it will display a new number on each line as well as decode (rownum). Any other ideas?
    Robert
    http://apexjscss.blogspot.com

    Insufficient information really. You need to provide:
    - APEX version
    - DB version and edition
    - Web server architecture (EPG, OHS or APEX listener)
    - Browser(s) used
    - Theme
    - Templates
    - Report type (standard or interactive)
    and if looking for a SQL solution:
    - Create table scripts
    - Sample data
    - Required output (which we sort of have here)
    - Clear, concise description of the requirement
    It's not clear whether there are always only 2 a and b records, whether this varies, or what the order is?
    Anyway, using some assumptions and the closest available data, a SQL-based solution using analytics is possible:
    select
              dense_rank()
                over (
                  order by d.department_name)                dept#
            , d.department_name                              dept
            , chr(
                  ascii('a') - 1
                + dense_rank()
                    over (
                      partition by d.department_name
                      order by e.first_name, e.last_name))   name#
            , e.first_name || ' ' || e.last_name             name
            , j.job_title                                    title
            , l.city
    from
              locations   l
            , departments d
            , employees   e
            , jobs        j
    where
              l.location_id = d.location_id
    and       d.department_id = e.department_id
    and       e.job_id = j.job_id
    order by
              dept
            , name;
    DEPT#                  DEPT                           NAME# NAME                                           TITLE                               CITY                          
    1                      Accounting                     a     Shelley Higgins                                Accounting Manager                  Geneva                        
    1                      Accounting                     b     William Gietz                                  Public Accountant                   Geneva                        
    2                      Administration                 a     Jennifer Whalen                                Administration Assistant            Seattle                       
    3                      Executive                      a     Lex De Haan                                    Administration Vice President       Geneva                        
    3                      Executive                      b     Neena Kochhar                                  Administration Vice President       Geneva                        
    3                      Executive                      c     Steven King                                    President                           Geneva                        
    4                      Finance                        a     Daniel Faviet                                  Accountant                          Geneva                        
    4                      Finance                        b     Ismael Sciarra                                 Accountant                          Geneva                        
    4                      Finance                        c     John Chen                                      Accountant                          Geneva                        
    4                      Finance                        d     Jose Manuel Urman                              Accountant                          Geneva                        
    4                      Finance                        e     Luis Popp                                      Accountant                          Geneva                        
    4                      Finance                        f     Nancy Greenberg                                Finance Manager                     Geneva                        
    5                      Government Sales               a     Laura Bissot                                   Sales Representative                Bern                          
    6                      Human Resources                a     Susan Mavris                                   Human Resources Representative      London                        
    7                      IT                             a     Alexander Hunold                               Programmer                          South San Francisco           
    7                      IT                             b     Bruce Ernst                                    Programmer                          South San Francisco           
    7                      IT                             c     David Austin                                   Programmer                          South San Francisco           
    7                      IT                             d     Diana Lorentz                                  Programmer                          South San Francisco           
    7                      IT                             e     Valli Pataballa                                Programmer                          South San Francisco           
    8                      IT Helpdesk                    a     Amit Banda                                     Programmer                          Bombay                        
    8                      IT Helpdesk                    b     Sundita Kumar                                  Database Administrator              Bombay                        
    9                      Marketing                      a     Michael Hartstein                              Marketing Manager                   Toronto                       
    9                      Marketing                      b     Pat Fay                                        Marketing Representative            Toronto                       
    10                     Public Relations               a     Hermann Baer                                   Public Relations Representative     MunichOn the APEX side, what happens next depends on whether it's to be a standard or interactive report; use a custom report template; use break formatting etc.

  • Numbering Headings in the PDF output

    RoboHelp HTML 6
    To create the RoboHelp project, I imported a Word document,
    which created a topic for each heading. Now, besides HTML help, I
    want to generate printed documentation in PDF.
    How can I create numbered headings (e.g. 1, 1.1, 1.1.4 etc)
    in the PDF output?
    I do not want to "hard code" these numbering in the headings
    itself in the HTML, because inserting a heading would result in
    manually updating all subsequent headings as well.

    There is only one workaround:
    - leave out the heading numbers in RoboHelp
    - generate a Word first
    - set the outline numbering, which numbers all headings as
    required
    - update TOC manually in Word
    - generate PDF

  • Automatic Numbering in a Table

    I know this issue has been discussed on this forum before, but none of the answers have been satisfactory. How does one set up automatic numbering in a table that has an "ongoing relationship" with the numbers above and below it. I am about to begin working on a long, complex document with many, many numbers with many levels of hierarchy (outline numbering as Word would call it). It is essential that when I change one number, anywhere in the document, all the subsequent numbers will update. I cannot use the pattern recognition means of numbering due to the hierarchies, yet I would like to keep the file in a table. Here is an example of the numbering I need to use.
    6.1
    6.2
    6.2.1
    6.2.2
    6.2.3
    6.3
    6.3.1
    6.4

    Here we are end users like you. We can't change the application behavior.
    I already described the application behavior but I will repeat.
    What you are describing is the list numbering.
    It apply to a text object.
    When you are using tables, each cell is a text object.
    So, as long as you remain in a cell, you may have this kind of numbering.
    When you switch from a cell to an other one, you switch from a text object to an other one which ignore what you did in the other one.
    What you try to achieve can't be done in a Pages table.
    Yvan KOENIG (VALLAURIS, France) mardi 5 octobre 2010 16:04:40

  • Transferring a Document w/ an Outline to a "Doc."

    I am using the Harvard outline in my document. When I save a copy as a "doc.," however, all of the outline numbering disappears. Is there any way to have to Harvard outline numbering present when opening the pages document as a "doc."?

    The English word is "solution" Yvan.
    Peter

Maybe you are looking for

  • How do I get an epub book into IBook to read on my iPad

    I have a lot of eBooks, used on a Kindle and have tried to get iBook to see them on my iPad. It does not. 1. I converted from azw to epub with Calibre 2. I tried dragging and dropping the file onto iTunes->iPad->Books and onto iTunes->iPad which didn

  • Update of Thumbnails = deletion of ALL photos in iPhoto???

    iPhoto asked if I wanted to update my thumbnails, I clicked "OK" and then ALL of my photos in iPhoto disappeared.  Where are they? How do I recover them?

  • How to get safecontrol tag section to a collection from web.config in c#

    how to  get safecontrol tag section to a collection from web.config in c# Below is my config file. I need to read the safecontrol tagsection and get all those in to a collection.please help me on this. <?xml version="1.0" encoding="UTF-8" standalone=

  • Search Help Exit and Cursor Position

    I have created a new search help, which returns the selected value into the applicable screen field correctly.  The problem is that there are multiple fields on the screen, and the first field keeps getting the cursor focus instead of the search help

  • Problem in asset master upload

    hi while i am uploading asset master in Production server, i am getting error "Current fiscal year 2007 has to be after transfer date 31.03.2008" In OB52 i have opened only 1st period of 2008 and in Asset Data Transfer i maintained as 31.3.08. I am u