Cap init for each word in a sentence

I would use the Initcap for each word in a sentence. For ex, if the column stores a value like "payment due date"-j' never wanted to be printed as "payment due".

CREATE TABLE Initcaps

(Desc_txt VARCHAR2 (150))

);

INSERT INTO INITCAPS VALUES

("Payment due date"

);

INSERT INTO INITCAPS VALUES

('Terms (number of payments)'

);

INSERT INTO INITCAPS VALUES

('Conditions apply. see agreement ')

);

Don't know what your question is.

Is that what you're after?

select INITCAP(Desc_txt) from INITCAPS;

See you soon

AJ

Tags: Database

Similar Questions

  • Please help with the oracle text and select for each word in the sentence

    Hello

    I have a problem with a query which NEEDS to be done in SQL (not pl/sql in the stored procedure):

    Suppose that a phrase such as "Church of snowboarding."

    Can I divide this by using:
    Select regexp_substr ('church snowboard', ' [^] +', 1, level) word
    of the double
    connect regexp_substr ('church snowboard', ' [^] +', 1, level) is not NULL)

    now I have words 'showboard' and 'Church '.

    So far so good.

    Now I need for each of these words, to create a list of unique IDS collected using text oracle contains the query as follows: (pseudocode)
    for SPLIT.word in "snowboarding", "Church".
    SELECT SCORE (1) NIVEAU_RECHERCHE,
    NO_MATRC,
    NO_NOM_
    OF GR_OT_NOM_ASSJT
    WHERE CONTAINS (name, SPLIT.word, 1) > 0
    UNION
    SELECT SCORE (1) NIVEAU_RECHERCHE,
    NO_MATRC,
    NO_NOM_
    OF GR_OT_NOM_ASSJT
    WHERE CONTAINS (name, ' SYN('||)) SPLIT.word: ', GR_THESAURUS)', 1) > 0
    UNION
    SELECT 100 AS NIVEAU_RECHERCHE,
    NO_MATRC,
    NO_NOM_
    OF GR_OT_NOM_ASSJT
    WHERE NAME LIKE '% "| SPLIT.word | '%'

    so of course I have to untangle this UNION to remove duplicates

    Anyone here sees a way out of my situation? A way to make the loop in a select (use with and such) then
    Just add a select distinct NO_MATRC, NO_NOM_ from)

    I tried, but I'm out of ideas so I thought that some guru here might have the answer ;)

    Thanks in advance for any advice

    See you soon

    You might end up with something like the XML below, ideally as binding in the query.

    SELECT SCORE (1) NIVEAU_RECHERCHE,
    NO_MATRC,
    NO_NOM_
    OF GR_OT_NOM_ASSJT
    WHERE CONTAINS (name, e
    Church of snowboard

    transform ((JETONS, "{", "}", "AND"))
    transform ((JETONS, "{", "}", "OR"))
    turn ((JETONS, «SYN (",", GR_THESAURUS) ', 'AND'))
    turn ((JETONS, «SYN (",", GR_THESAURUS) ', 'GOLD'))
    transform ((JETONS, «?)) {","} "," AND"))/seq >
    transform ((JETONS, «?)) {","} "," GOLD"))/seq >



    (1) > 0

  • Adobe Flash CS5 - need help animating a sentence for each word fades in separately

    I'm trying to do a simple clip.

    My goal is to have lyrics to the audio piece appear in sync.

    It doesn't seem to be a simple way to fade in (and on) each word individually which allows the alignment and sentencing position remains constant.

    Help, please.

    You can have anything you want to ask in the text with a mask. It will still work the same. Take a look at this example: http://www.ddg-designs.com/downloads/textMasking.zip

  • the analysis of a word table of ms with different numbers of columns for each row

    I'm reading in a MS Word table that contains 20 lines, each with a different number of columns.  I have to iterate over each line then I iterate on each column of the row and read his text.  I don't know a way to find out how to stop an iteration on the columns.  Is a property or a method which tells you the number of columns in a specific line for a table in MS Word?

    ID says:

    I'm reading in a MS Word table that contains 20 lines, each with a different number of columns.  I have to iterate over each line then I iterate on each column of the row and read his text.  I don't know a way to find out how to stop an iteration on the columns.  Is a property or a method which tells you the number of columns in a specific line for a table in MS Word?

    For each row, use the count property of cells. Since there a number of subject lines is the number of columns.

    Ben64

  • PDFMaker, Options, create PDF/A-1 a in Word. Where can I change the setting so I did not check the box for each file, I create?

    PDFMaker, Options, create PDF/A-1 a in Word. Where can I change the setting so I did not check the box for each file, I create?

    Win OS: Windows 7

    Acrobat 9 Pro

    Hello

    You can do this to change the registry settings.

    Go to run type Regedit to open it.

    First make a backup of the registry.

    Here is how do.

    Go to HKEY_CURRENT_USER > software > Adobe > Acrobat > PDFMaker 9.0 > > Word > settings

    You need to change the DWORD values & chain listed below.

    Chain: JobOptions

    Value: PDFA1b 2005 RGB

    DWORD: PDFComplianceIndex

    Value: 1

    DWORD: PDFComplianceLevel

    Value: 1

    Close the registry editor

    Thank you

    Abhishek

  • Search for AutoComplete to any word in the sentence

    I use an autocomplete for my flash application. AutoComplete uses an external text file. When I type the first word of the sentence, it shows all phrases that begin with the word.

    Is it possible to display all the sentence which have this word (and not only the beginning of the sentence)?

    Example: I have two sentences: "I'm going to school" and "I'll look for him.

    I would like to be able to type 'school' and it shows the first sentence.

    Do you know how I can do?

    For now, I have to type 'I'll s' to display the first sentence.

    Here is my code: thank you!

    urlLoader.load(new URLRequest("test.txt"));
                urlLoader.addEventListener(Event.COMPLETE, loadComplete);
                inputField.addEventListener(KeyboardEvent.KEY_UP, suggest);
     function loadComplete(e:Event):void
            {
                suggestions = e.target.data.split(",");
            }
             function suggest(e:KeyboardEvent):void
            {
                suggested = [];
                for (var i:int = 0; i < textfields.length; i++)
                {
                    removeChild(textfields[i]);
                }
                textfields = [];
                for (var j:int = 0; j < suggestions.length; j++)
                {
                    if (suggestions[j].indexOf(inputField.text.toLowerCase()) == 0)
                    {
                        var term:TextField = new TextField();
                        term.width = 300;
                        term.height = 20;
                        term.x = 70;
                        term.y = (20 * suggested.length) + 314;
                        term.border = true;
                        term.borderColor = 0x353535;
                        term.background = true;
                        term.backgroundColor = 0xFF9900;
                        term.textColor = 0x4C311D;
                        term.defaultTextFormat = format;
                        term.addEventListener(MouseEvent.MOUSE_UP, useWord);
                        term.addEventListener(MouseEvent.MOUSE_OVER, hover);
                        term.addEventListener(MouseEvent.MOUSE_OUT, out);
                        term.addEventListener(MouseEvent.CLICK, tellMe);
                        addChild(term);
                        textfields.push(term);
                        suggested.push(suggestions[j]);
                        term.text = suggestions[j];
                    }
                }
                if (inputField.length == 0)
                {
                    suggested = [];
                    for (var k:int = 0; k < textfields.length; k++)
                    {
                        removeChild(textfields[k]);
                    }
                    textfields = [];
                }
                if(e.keyCode == Keyboard.DOWN && currentSelection < textfields.length-1)
                {
                    currentSelection++;
                    textfields[currentSelection].textColor = 0x4C311D;
                }
                if(e.keyCode == Keyboard.UP && currentSelection > 0)
                {
                    currentSelection--;
                    textfields[currentSelection].textColor = 0x4C311D;
                }
                if(e.keyCode == Keyboard.ENTER)
                {
                    inputField.text = textfields[currentSelection].text;
                    suggested = [];
                    for (var l:int = 0; l < textfields.length; l++)
                    {
                        removeChild(textfields[l]);
                    }
                    textfields = [];
                    currentSelection = 0;
                }
            }
             function useWord(e:MouseEvent):void
            {
                inputField.text = e.target.text;
                suggested = [];
                for (var i:int = 0; i < textfields.length; i++)
                {
                    removeChild(textfields[i]);
                }
                textfields = [];
            } 
    

    Based on what, in my view, I see that you should need to change a line...

    If (suggestions [j] .indexOf (inputField.text.toLowerCase ()) == 0)

    should become...

    If (suggestions [j] .indexOf (inputField.text.toLowerCase ())! = - 1).

  • When I signed up for synchronization, there was a sentence and I don't remember my sentence. Will this affect my account now?

    I have three accounts on a single computer. It is perhaps part of the problem. My username in Firefox is the same on all three and I don't want to lose my data because some of it seems (since Firefox 5) be synchronization. When I signed up firstly there was a secret sentence and I perhaps used a different sentence on other accounts and now do not know where I wrote it. I am running Vista service pack 2 on Windowsx86, 32 bit, thank you

    Open a synchronization > Preferences, then click on manage account. Then click on my sync key - your sync key is displayed in the window.

    The user name and password, as well as the sync key must be the same for all 'user account' or the PC that you have connected to the same account synchronization. You can have multiple accounts Sync, each with its ' own unique email address, but these three things must be the same for each account separate synchronization. "

  • Search for a word in a Web page

    Hello

    I have a little problem on the search in a web page.

    Without worrying to highlight what is useful in all software, how can I search for a word in a Web page?

    I mean imagine in windows, through the web page, you need to find the word "except", if you come to use the Toolbox in the browser and type except to indicate each word "except" in this page and highlight it. Is there a similar option for safari for Mac too?

    F command should do what you want. -AJ

  • How can I make Pages capitalize the first word in a sentence?

    How can I make Pages capitalize the first word in a sentence? The I phone t - it, the iPad does, why not not iMac using Pages capitalize the first word on a new sentence?

    Pages of IOS and IOS itself remain different implementations of Pages v5.6.1 for Mac and OS X. In any version of Pages v5, if there was an option to preferences in Pages ' 09, there is no auto-capitalisation function.

    See my previous post is launching an OS X App Store free application, which can be applied to auto-capitalisation to your Pages v5 documents.

  • We need a separate servlet class to open a report of jasper for each button in report or not?

    Mr President.

    We need a separate servlet class to open a report of jasper for each button in report or not?

    My code for the servlet is as under which works very well for a single report.

    package ash.view;
    
    
    import ash.model.SchoolAppModuleImpl;
    
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.PrintWriter;
    
    
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    
    
    import java.util.HashMap;
    import java.util.Locale;
    import java.util.Map;
    
    
    import javax.servlet.ServletConfig;
    import javax.servlet.ServletException;
    import javax.servlet.annotation.WebServlet;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    
    
    import net.sf.jasperreports.engine.JasperCompileManager;
    import net.sf.jasperreports.engine.JasperExportManager;
    import net.sf.jasperreports.engine.JasperFillManager;
    import net.sf.jasperreports.engine.JasperPrint;
    import net.sf.jasperreports.engine.JasperReport;
    import net.sf.jasperreports.engine.design.JasperDesign;
    import net.sf.jasperreports.engine.xml.JRXmlLoader;
    
    
    import oracle.jbo.client.Configuration;
    
    
    @WebServlet(name = "ReportServlet", urlPatterns = { "/reportservlet" })
    public class ReportServlet extends HttpServlet {
        private static final String CONTENT_TYPE = "text/html; charset=UTF-8";
    
    
        public void init(ServletConfig config) throws ServletException {
            super.init(config);
        }
        
        protected Connection getConnection() {
            
            PreparedStatement st = null;
            String amDef = "ash.model.SchoolAppModule";
            String config = "SchoolAppModuleLocal";
            SchoolAppModuleImpl am = (SchoolAppModuleImpl ) Configuration.createRootApplicationModule(amDef, config);
            
            st = am.getDBTransaction().createPreparedStatement("select 1 from dual", 0);
            Connection conn = null;    
        
            try {
                conn = st.getConnection();
                return conn;
            } catch (SQLException e) {
            }   
        
            return null;
        }
    
    
        public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
            String var0 = "";
            try {
                var0 = request.getParameter("classId");
            } catch (Exception e) {
                e.printStackTrace();
            }
            response.setContentType(CONTENT_TYPE);
            Map parameters = new HashMap();
                   parameters.put("format", "pdf");
                   parameters.put("WEBDIR", getServletContext().getRealPath("/"));
                   parameters.put("REPORT_LOCALE", new Locale("ar"));
            
            
                   parameters.put("classId", new String(var0));
                   Connection conn = null;
                   InputStream is = null;
                   try
                   {
                     conn = getConnection();
                     is = getServletContext().getResourceAsStream("/WEB-INF/reports/ClassDataReport.jrxml");
            
            
                     response.setContentType("application/pdf");
                     response.addHeader("Content-Disposition", "attachment; filename=ClassDataReport.pdf");
                      
                     JasperDesign jasperDesign = JRXmlLoader.load(is);
                     JasperReport jasperReport = JasperCompileManager.compileReport(jasperDesign);
                     JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, conn);                    
                     JasperExportManager.exportReportToPdfStream(jasperPrint, response.getOutputStream());
                              
                     conn.close();
                   }
                   catch (Exception e) {
                     e.printStackTrace();
                   } finally {
                     closeConnection(conn);
                     try {
                         if(is !=null){
                             is.close();
                         }                   
                        
                     } catch (Exception localException1)
                     {
                     }
                   }
            
            PrintWriter out = response.getWriter();
            out.println("<html>");
            out.println("<head><title>ReportServlet</title></head>");
            out.println("<body>");
            out.println("<p>The servlet has received a GET. This is the reply.</p>");
            out.println("</body></html>");
            out.close();
        }
        
        protected static void closeConnection(Connection conn) {
            try {
                if(conn !=null){
                    conn.close();
                }           
            } catch (Exception ex) {
                //  System.out.println("Developer Msg : Exception in printReport1Servlet.closeConnection()");
            }
        }
    }
    

    Concerning

    It will be something like this:

      public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
              String var0 = "";
              String reportName = "";
              try {
                  reportName = request.getParameter("reportName");
              } catch (Exception e) {
                  e.printStackTrace();
              }
              response.setContentType(CONTENT_TYPE);
              Map parameters = new HashMap();
                     parameters.put("format", "pdf");
                     parameters.put("WEBDIR", getServletContext().getRealPath("/"));
                     parameters.put("REPORT_LOCALE", new Locale("ar"));
    
                     if(reportName.equals("report1"))
                     {
                       var0 = request.getParameter("classId");
                       parameters.put("classId", new String(var0));
                     }
    
                     if(reportName.equals("report2"))
                     {
                       Object value1 = request.getParameter("value1");
                       Object value2= request.getParameter("value2");
                       parameters.put("p1", value1);
                       parameters.put("p2", value2);
                     }
    
                     Connection conn = null;
                     InputStream is = null;
                     try
                     {
                       conn = getConnection();
                       is = getServletContext().getResourceAsStream("/WEB-INF/reports/"+reportName+".jrxml");
    
                       response.setContentType("application/pdf");
                       response.addHeader("Content-Disposition", "attachment; filename="+reportName+".pdf");
    
                       JasperDesign jasperDesign = JRXmlLoader.load(is);
                       JasperReport jasperReport = JasperCompileManager.compileReport(jasperDesign);
                       JasperPrint jasperPrint = JasperFillManager.fillReport(jasperReport, parameters, conn);
                       JasperExportManager.exportReportToPdfStream(jasperPrint, response.getOutputStream());
    
                       conn.close();
                     }
                     catch (Exception e) {
                       e.printStackTrace();
                     } finally {
                       closeConnection(conn);
                       try {
                           if(is !=null){
                               is.close();
                           }                   
    
                       } catch (Exception localException1)
                       {
                       }
                     }
    
              PrintWriter out = response.getWriter();
              out.println("");
              out.println("ReportServlet");
              out.println("");
              out.println("

    The servlet has received a GET. This is the reply.

    "); out.println(""); out.close(); }

    And the button that will call the report should be something like this;

    
    
    
    
  • generation of XML for each record

    I have a table db with a few thousand records in it. I need to generate an xml file for each record so that it can power a search machine.

    Can someone help me with this? I could not get it. Here is the example of table.

    create table test_xml)

    number of U_ID

    title varchar2 (500),

    VARCHAR2 (500) keywords.

    Description varchar2 (500),

    VARCHAR2 (500) of the user.

    e-mail varchar2 (500),

    initiator_function varchar2 (500),

    function_impacted varchar2 (500),

    old_request_num varchar2 (500),

    project_region varchar2 (500)

    );

    insert into test_xml values (1, "Heading1 test", "blah bla1", "test 123 ', 1234567',' [email protected]', 'test init funct', 'funct hit test', '55556677', 'abc' ');

    insert into test_xml values (2, 'Title2 test', 'blah bla2', ' test 1232', 1234522',' [email protected]', 'test init funct2 ',' test power supply impacted2', ' 55556679', 'abcccs' ");

    the end result is an XML for each record in this format.

    <? XML version = "1.0" encoding = "utf-8"? >

    <! DOCTYPE gsafeed PUBLIC "-//Google//DTD GSA RSS / / IN" "" > "".

    < gsafeed >

    < header >

    < datasource > ID 1 < / datasource >

    < feedtype > full < / feedtype >

    < / header >

    <>Group

    " < analysis record immediately = 'true' url = ' http://test.com/SearchResult.php?id=1 "action = 'Add' mimetype =" text/html"lock ="true"> "

    < content > <! [CDATA]

    < html >

    < head >

    Heading1 test < title > < /title >

    < meta name = "Keywords" content = "bla bla1" / >

    < name meta = "description" content = "testing 123" / >

    < name meta = "user" content = "1234567" / >

    " < name meta = 'EMAIL' content = ' [email protected] " />

    < name meta = "Source" content = "1" / >

    < / head >

    < body >

    < p > user: 1234567

    < p > EMAIL: bob . [email protected] 

    < p > INITIATOR_FUNCTION: test init funct

    < p > FUNCTION_IMPACTED: test hit funct

    < p > OLD_REQUEST_NUM: 555566777

    < p > PROJECT_REGION: abc

    < /p > < / body >

    < / html >

    []] > < / content / >

    < / recording >

    < / Group >

    < / gsafeed >

    Thanks for any help.

    I'd use SQL/XML functions, more rapid way to generate XML from relational data data.

    Something like the following should you get.

    It displays a document (such as a CLOB) per line in the base table:

    with html_content as (
      select xmlcdata(
               xmlserialize(document
                 xmlelement("html"
                 , xmlelement("head"
                   , xmlelement("title", t.title)
                   , xmlelement("meta", xmlattributes('Keywords' as "name", t.keywords as "content"))
                   , xmlelement("meta", xmlattributes('description' as "name", t.description as "content"))
                   , xmlelement("meta", xmlattributes('user' as "name", t.user_ as "content"))
                   , xmlelement("meta", xmlattributes('EMAIL' as "name", t.email as "content"))
                   , xmlelement("meta", xmlattributes('Source' as "name", t.u_id as "content")) -- ??
                   )
                 , xmlelement("body"
                   , xmlelement("p", 'EMAIL: '||t.email)
                   , xmlelement("p", 'INITIATOR_FUNCTION: '||t.initiator_function)
                   , xmlelement("p", 'FUNCTION_IMPACTED: '||t.function_impacted)
                   , xmlelement("p", 'OLD_REQUEST_NUM: '||t.old_request_num)
                   , xmlelement("p", 'PROJECT_REGION: '||t.project_region)
                   )
                 )
                 indent
               )
             ) as content
      from test_xml t
    )
    select '' ||
           '' ||
           xmlserialize(document
             xmlelement("gsafeed"
             , xmlelement("header"
               , xmlelement("datasource", 'ID 1')
               , xmlelement("feedtype", 'full')
               )
             , xmlelement("group"
               , xmlelement("record"
                 , xmlattributes(
                     'true' as "crawl-immediately"
                   , 'http://test.com/searchresult.php?ID=1' as "url"
                   , 'add' as "action"
                   , 'text/html' as "mimetype"
                   , 'true' as "lock"
                   )
                 , xmlelement("content", html.content)
                 )
               )
             )
             indent
           )
    from html_content html ;
    

    NB: indent option is to print only, you can remove it if you don't need.

  • Need to remove the spaces between each words

    Hi guys,.

    I need to remove the spaces between each word. I'm doing this because I want to compare a column with a value.

    For ex: named - description "Negotiate APR - current balance" should be replaced by "NegotiateAPR-currentbalance.

    All can help me out here to achieve. Your timely help is well appreciated.

    Thanks in advance.

    WITH t AS (SELECT '"Negotiate APR - current balance"' str FROM DUAL)
    SELECT REPLACE (str, ' ') str
      FROM t;
    

    gives: "NegotiateAPR-currentbalance.

    Is that what you want...? If this isn't the case, please give some examples.

    See you soon,.

    Manik.

  • Subject of load balancing.  An arm mode require ESG instance for each requirement of LB?

    Hello

    Most document indicates an arm mode drawback is that for each LB (One - Arm) requirements, separate

    Instance of the ESG is needed.

    Is this true?

    I feel that I can deploy an ESG for 9 balance of the load of an arm as the next parameter.

    -Deploy an ESG

    -Add vNIC 9 to the GSS and add the IP address of the LB for each segment. (EX. 10.0.0.1/24 to first vNIC, 10.0.10.1/24 to the second vNIC and so on...)

    -Disable the routing

    -Add LB VIP pool as usual.

    I said '9' to limit, because there is limitation of VM vNIC 10, and 1 can be used for future uplink...

    I'm sorry that I can't prove it by tests, because I do not have the test environment.

    Number of subnets in 1 single cutting edge

    A single cutting edge can actually be connected to the networks of more than 10.

    Indeed 1 edge interface can be of the type: 'Delete', 'Internal', but also 'trunk '.

    Use of the "trunk" type, you can create secondary interfaces and up to 200 Sub interfaces supported in 6.1.x within the same interface.

    Now on your question: 1 m LBS per subnet

    You can certainly have the same edge with several interfaces / subnets and configure VIP in each subnet.

    Note: You must opaque (SNAT) mode under the pool to the guarantee of the response from the server will return via the Edge-LB.

    The question I have is about: "disable routing."

    Do you mean that the edge will not need any itinerary to meet clients. In other words, applications for all customers hit an edge-LB VIP comes from a subnet which exists on the edge?

    If the answer to that question is 'yes '. Then, I agree.

    If the answer to this question is 'no' (customers come from Internet, for example). Then, I disagree.

    Dimitri

  • Extract the first letter of each word

    Hi all

    I have a requirement to extract the first letter of each word as shown in the example below
    input: abcd output: a
    input: abcd efgh output: ae
    input: abcd efgh ijkl output: aej
    any help will be much appreciated

    I'm on the 11g version of the db

    Depends on your definition of a "word", but for example:

    SQL> select trim(regexp_replace(' a abcd efgh ijkl','(\S)\S*\s*','\1'))
      2  from dual
      3  ;
    
    TRIM(REGEXP_REPLACE('AABCDEFGH
    ------------------------------
    aaei
     
    
  • Turn off hyphenation for some words

    Hello

    I have a Spanish project in FrameMaker 10. Will not a single document, but more documents for a month or two. One of the major issue is the hyphenation. As directed by the client, I turn on hyphenation. However, the client also asked to look for certain words (i.e. vehículo) that SHOULD not be cut. So far all I can think about was looking for help to FIND the entire document for vehicle and then applying the command disable hyphenation for this word (Esc n). Each document has 170 + pages. It's a waste of time to do manually even using FIND option.

    That is why is there a way to:

    1 either using FIND/REPLACE to define all words in the document containing "culo" to not be a hyphen even with break IT?

    2 or using the same (FIND) command to look for any 'culo' beginning of a line and automatically or manually, ESC Nadal apply?

    VEHÍCULO is just an example because I'm sure that there are many other words in Spanish that contains 'culo '. So I have to make sure that none of these words are cut irregularly. I know what it means in Spanish, and I apologize if some people might find it offensive. It is not my idea to offend, but to find a solution to this problem. Normally, I think that FM, InDesign and any other text, editing software can have these things in their dictionary.

    Thank you in advance.

    Best regards,

    Sebastian

    Hi Sebastian,.

    You can create a personal, 'personal' dictionary that specifies the rules of hyphenation desird for these words. FM dictionary file is just a simple text file (you can use Notepad to create).

    1. the first line should be:

    2. after that, each word entry has placed hyphens where the Word will be out. If no dash should be used in the word, the hyphen should be the first entry on the line.

    Note: each line must contain a hyphen somewhere or FM will crash!

    Example:

    workflow

    automatic backup

    FrameMaker-

    -vehículo

    ... etc.

    3. the order is not important.

    4. you can then import this file into your personal dictionary using the spell checker. Click the dictionaries button:

    6 select the personal dictionary and then in the drop down menu on th right select "import dictionary...". »

Maybe you are looking for

  • Frozen

    My iPhone 6s is completely frozen to the top. It does nothing, even after several attempts of soft reboot. He has a lot of expenses. It just stopped working suddenly. He will attempt to restart, but all I get is the Apple logo on the screen, but it g

  • CVI 8.1 PlotPackedDigitalLines() causing GPF on Win7 Machines

    I learn some stuff FPGA, and my project to learn right now is a Logic Analyzer. I have an environment to test the FPGA, and it does not work properly. In the attached code, I have 'touch' the FPGA, an acquisition of data and then directed the dat to

  • First license 10.5 Cluster Manager?

    Hello I install a new BE6K with version 10.5. I see the old ELM has been replaced by the License Manager first and, like its precessor, it is automatically installed with Callmanager and unity connection. I would like to install a standalone License

  • Question Smartphones blackBerry App World download

    I was redirected so many times that my head spinning on this subject. I bought money Ascendo Personal Finance Manager at App World a few days ago and no registration key has been offered. The site software told me that I had to contact the support of

  • Evolution of the data center: N7k or C6500

    Hello I am curretnly studying how our data centers evolve. For physical physical architecture: -We have 2 data centers, L2 interconnected at 10 Gbps. -On each data center, 2 x C6500 serve basic and distribution at the same time. -The access layer is