Problem modifying language text attribute in a style

Hello out there,
I seem to be getting a strange side effect when I modify the language text style in paragraph styles. The other styles which are not modified seem to lose their ability to modify text to which they are applied, at least the way they use to.
For example, if I start out in English:USA with four paragraph styles all based on the root paragraph style and then modify paragraph styles 1, 2 and 4 to be Spanish:Castilian, leaving style 3 to remain in English:USA, style 3 starts acting like it was changed to Spanish:Castilian, even though I can clearly see that it remains in English:USA from within the style's editing dialog. Note that I have left style 3 completely untouched, as well as the root style ("No Paragraph Style"). It's like some local override has been turned on permanently, unknown to style 3 because when it is applied to either English or Spanish locally overrided text, it shows no plus sign next to it in the style palette. Nevertheless, the styles I did change to Spanish:Castilian will show a plus sign if applied to text that is locally overrided with English:USA.
I have not touched any text, I am just manipulating paragraph styles. Do I need to do anything special to the text of the document as well? This completely baffles me because as far as I can see, I have done all that the documentation says to do. I am using IStyleUtils to create the edit style command. Is there a problem with that? Do I have to set up the command myself? Is there some idiosyncracy with the Language text style that I should be aware of?
I am including my code for changing the Language text attribute of a style. Perhaps one of you can see what I may be doing wrong or am missing:
ErrorCode CDocStyleTranslation::setStyleLanguage(UID langUID, UID theStyleID, IDataBase* theStyleDB)
ErrorCode theErr = kFailure;
// get our style's info to pass into the command
IStyleInfo * theStyleInfo = (IStyleInfo*)theStyleDB->QueryInstance(theStyleID, IID_ISTYLEINFO);
ASSERT(theStyleInfo);
if (!theStyleInfo)
return theErr;
PMString styleName = theStyleInfo->GetName(); // for debugging
do
// set the language of a new language text attribute
ITextAttrUID * newLangAttr = (ITextAttrUID*)::CreateObject(kTextAttrLanguageBoss, IID_ITEXTATTRUID);
ASSERT(newLangAttr);
if (!newLangAttr)
break;
newLangAttr->SetUIDData(langUID);
// get our style utilities directly from the UtilsBoss
IStyleUtils * styleUtils = (IStyleUtils *)UtilsBoss::QueryUtils(IID_ISTYLEUTILS);
ASSERT(styleUtils);
if (!styleUtils)
break;
// set up the command
ICommand* editLangCmd = styleUtils->CreateEditStyleCmd(theStyleInfo, newLangAttr);
ASSERT(editLangCmd);
if(!editLangCmd)
break;
// process the command
theErr = CmdUtils::ProcessCommand(editLangCmd);
// clean up
editLangCmd->Release();
styleUtils->Release();
newLangAttr->Release();
}while(false);
theStyleInfo->Release();
return theErr;

Well, I am testing to make sure that I'm using a language that exists in the workspace and though it's different from what you suggested, Jackeen, I think it is viable. The following is an extract of my code which provides some context for my "setStyleLanguage" function above. See what you think.<br /><br />bool16 CDocStyleTranslation::translateParaStyles(LDSLanguage& theLang)<br />{<br />     bool16 succeeded = kFalse;<br />     <br />     // get Adobe's language name from our language database record<br />     langID theLangIDs = theLang.getLangID();<br />     PMString langName(theLangIDs.AdobeName.c_str());<br /><br />     do<br />     {<br />          // does this language exist in inDesign's language list?<br />          bool16 langExists = kFalse;<br />          <br />          InterfacePtr<ILanguageList> docLangList(this, UseDefaultIID());<br />          ASSERT(docLangList);<br />          if (!docLangList)<br />          {<br />               break;<br />          }<br />          <br />          // (if langName is not included in InDesigns list of languages, <br />          ILanguage* theIDLang = docLangList->QueryLanguage(langName); // the InDesign Language<br />          if (!theIDLang)<br />          {<br />               // the attribute will be set to [No Language])<br />               theIDLang = docLangList->QueryNthLanguage(0);<br />          }<br />          else <br />          {<br />               langExists = kTrue;<br />          }<br />          ASSERT(theIDLang);<br />          if (!theIDLang)<br />          {<br />               break;<br />          }<br />          <br />          // find out the UID for the language<br />          UID langUID;<br />          InterfacePtr<IPMPersist> langPersist(theIDLang, UseDefaultIID());<br />          ASSERT(langPersist);<br />          if (!langPersist)<br />          {<br />               break;<br />          }<br />          langUID = langPersist->GetUID();     <br />          theIDLang->Release();<br />     <br />          // march through our paragraph styles and "translate" them<br />          InterfacePtr<IStyleNameTable> paraStylTbl(this, IID_IPARASTYLENAMETABLE);<br />          ASSERT(paraStylTbl);<br />          if (!paraStylTbl)<br />          {<br />               break;<br />          }<br />          <br />          InterfacePtr<IPMPersist> docPersist(this, UseDefaultIID());<br />          ASSERT(docPersist);<br />          if (!docPersist)<br />          {<br />               break;<br />          }<br />          <br />          IDataBase * paraStylDB = docPersist->GetDataBase();<br />          <br />          for (int32 i = 1; i < paraStylTbl->GetNumStyles(); i++) // do not translate the root<br />          {<br />               // retrieve each style's translation settings<br />               UID theStyleID = paraStylTbl->GetNthStyle(i);<br />               <br />               InterfacePtr<IStyleTranSettings> theStyleTranSet(paraStylDB, theStyleID, UseDefaultIID());<br />               ASSERT(theStyleTranSet);<br />               if (!theStyleTranSet)<br />               {<br />                    break;<br />               }<br />               ParaStylTranSettings pstSet = theStyleTranSet->getParaStylTranSettings();<br />               <br />               // based on the style translation settings and the language's info, do the following:<br />               <br />               if (pstSet.transOpt != kDontTranslate)<br />               {<br />                    // translate the language<br />                    setStyleLanguage(langUID, theStyleID, paraStylDB);<br />                    <br />...

Similar Messages

  • Is it possible to define one language for every imported text? And other problems when placing text.

    Problem is, that Indesign cc 2014 does not recognize language correctly. In my case it should always be slovenian (and documents like doc and docx are set to slovenian), but it set it as slovakian. I get many documents from different programs (Word, Libre Office, Open Office ...). And setting every one after placing it into document is time consuming. Word import was working great in InDesign 5.5. Now it just mixes local character formating. Also: importing docx takes too long, and when in document is some picture, it just freeze. So I must first open every doc/docx file and delete every picture/logo that is inside.
    Any suggestions?

    Check the language of your default Character Style. If it's set to Slovakian, change it to Slovenian with no documents open.

  • Problem with lower third template & modifying the text...

    I'm doing a top 10 type video, & I downloaded this lower third template & I had never used AE before; I figured out how to duplicate it multiple times through the video where appropriate... but when I modify the text on one template it does the same thing to all of them. How do I make them all separate?

    Ok, think about what you have done to change the text for moment. You drilled down to a pre-comp or nested comp that contains a text layer. This makes perfect sense. Unfortunately that text pre-comp is also nested in a pre-comp. This means you need to find each of these pre-comps in your project panel and duplicate them there, open the duplicates and then change the text in the duplicates, then replace the original nested comps in the main comp.
    I have another observation on your workflow. You've put a bunch of shots and transitions in a single comp which, in effect, tells me that you are using AE as a NLE (editing app). What I would have done is to put every one of your shots that you want to add titles to in a separate comp to simplify each comp. I'd then edit them in a NLE....
    The other way I would do this project is to make a comp that is just the needed titles, one comp for each tltle overlay, render the titles with alpha channels, then bring the titles and the original footage into a NLE to edit and add titles.
    Building extremely complex compositions with multiple shots in a single comp is usually not a very good idea, even for folks like me that have been doing AE for 20 years. AE is perfect at making shots, lousy at editing sequences so always, and I mean always, try to figure out how you can simplify your project to it's basic elements and build a comp on that. I've had 5 second animations with over a hundred layers, but I've never put 10 or 20 video clips in AE in a single comp and tried to create a sequence.

  • Idoc problem: I canu00B4t modify Header text before sales order is created

    We are generating Sales order with Idoc :ORDERS01 (Inbound), and we´d like modify some  text in E1EDKT1 AND E1EDKT2 segments, at header level.
    We are using EXIT_SAPLVEDA_011 with this coding:
    data: v_e1edkt1 like e1edkt1,
          v_e1edkt2 like e1edkt2,
          v_index like sy-tabix.
    segment E1EDKT1----
        read table dedidd with key segnam = 'E1EDKT1'.
        if sy-subrc eq 0.
          v_index = sy-tabix.
          v_e1edkt1 = dedidd-sdata.
          v_e1edkt1-tdid = '001'.
          v_e1edkt1-tsspras = 'EN'.
          v_e1edkt1-tsspras_iso = 'E'.
          v_e1edkt1-tdobject = 'VBBK'.
          dedidd-sdata = v_e1edkt1.
          modify dedidd index v_index.
    segment:E1EDKT2----
              read table dedidd with key segnam = 'E1EDKT2'.
              if sy-subrc eq 0.
                v_index = sy-tabix.
                v_e1edkt2 = dedidd-sdata.
                v_e1edkt2-tdline = 'FIXED TEXT BLA BLA BLA '.
                v_e1edkt2-tdformat = '*'.
                dedidd-sdata = v_e1edkt2.
                modify dedidd index v_index.
             endif.
        endif.
    but Nothing .. I'm not able to modify the text when the Sales ordes is created.
    Are we modifying the right structure ?? or  do we need to flagear some variable ??
    any suggestion ???

    Ok!. I moved the coding to EXIT_SAPLVEDA_001:
    if segment-segnam = 'E1EDKT1'.
          V_puntero   = sy-tabix.
          V_E1EDKT1 = segment-sdata.
          V_E1EDKT1-TDID        ='003'.
          V_E1EDKT1-TSSPRAS     ='EN'.
          V_E1EDKT1-TSSPRAS_ISO ='E'.
          V_E1EDKT1-TDOBJECT    ='VBBK'.
          segment-sdata = V_E1EDKT1.
    endif.
    if segment-segnam = 'E1EDKT2'.
          V_puntero   = sy-tabix.
          V_E1EDKT2   = segment-sdata.
          V_E1EDKT2-TDLINE     ='FIXED TEXT BLA BLA BLA..'.
          V_E1EDKT2-TDFORMAT   ='*'.
          segment-sdata = V_E1EDKT2.
    endif.
    It´s not working .! .
    I have a suspect with TDID   ='003', if I check the Sap table: STXH-TDID , that ID is char 4.

  • Rich Text Editor with Custom Text Attribute

    Hello All,
    We are using the latest version of Oracle Portal 10G. I have a need to create custom Attributes of the type text to let people enter a lot of text. But when User are in edit mode of an item where this custom attribute is used, the Rich Text Editor is not shown for entering the Text for the Custom Text Attribute. It shows a normal html text area. Has anyone ever used RTE with Custom Attribute?
    I request you guys for help.
    Thanks.

    The Problem with the Custom Attribute is not solved, but I have now compromised with the Situation and now I am not using a Custom attribute.
    Rather, Now I am creating a Custom Item Type using Base Text Type (earlier i wanted to create custom item type at my own without any base item type). In this case now I will not be able to change the Lable of the RTE (that is "Text", when the Custom Item is in Edit Mode), but I hope that my users can understand that much.
    I have created a template for portal pages. In the Template I can edit the Region Properties. When I edit the Region property of the region where I want to display my Custom Items. I get two Tabs on the top, Main and Attributes/Style. ON the main tab I can tell what type of region it should be, width etc, in my case it is item type region. And on the Attributes/Style tab, I can select from the availabe Attributes as which all Attributes I want to display. Here if i select only "Associated Functions" Attribute then normally portal should not render anything by default on the Page. It should rather make a call to the procedure which is associated with the Custom Item and as when I was creating the custom item type, I had clicked on "Display Procedure Results With Item", so portal should now display the result of my Procedure. So far it works without problem.
    But the problem is that the Portal displays the text at its own also. As i have written that Portal should not display anything at its own, this doesn't work in this version of Portal for a Custom Item Type that is made using Base Text Item Type. For all others it has worked till now (I have create 50s of Custom item types).
    You can better understand by going to the following URL. Just have a look between the two dotted lines (Dotted line is also a seperate Custom Item Type). Between the two Dotted Lines is a custom item, in general it would be a Custom News Item having title, image and so on.
    http://sunnode1.edvz.sbg.ac.at:7778/portal/page?_pageid=79,56047&_dad=portal&_schema=PORTAL
    I have really programmed a lot with portal but now at this stage where I am near to end, I am getting problems which are coming from Product. I request you for help.

  • Are free-text attributes not possible?  Why?

    I'm pretty new to MDM, just learning really.  I've done some complicated imports, in cluding hierarchies and taxonomies.
    At my company we have product records that contain product specs.  There are about 200 different specs that different products CAN have, but any particular product only may need about 20, depending on it's product type.  A perfect situation for a taxonomy with attributes, right?
    It would be, but although many specs have particular pre-defined choices (like attribute choices) , many are free-text fields where the user enters information that can't be boiled into pre-set choices.
    After playing with it in MDM for a while, it becomes clear that you can't have taxonomy attributes in MDM that are free text.  That seems kind of silly to me... am I missing something?  Is there a way to do this?  If not, why not?  It seems like a useful feature.  I can't be the first person to think of this..... 
    Any help, explanations, or ideas for alternate methods would be very greatly appreciated...
    Steve

    You aren't missing anything. Attributes can only be numeric (or couple numeric) or text. The text attributes are only available as lookups and cannot be set up as free-form text entries. Fields can be set up as free-form text, but have to be applied at a global level to everything.
    The only reason I can think as to why it has been developed this way is because of the search capabilities built into MDM. It would probably be difficult to have the parametric searching with free-text attributes, much easier when all the data is in a lookup. Another reason is just to help maintain standards within your repository. You could enter a message with SAP to find out all the reasons why it is this way and possibly enter an enhancement request for future versions.
    Basically the only way around this currently is to use the text attribute available. You could allow the users to right click on the attribute in Record Mode and select Modify to add entries to the attribute as needed.
    This obviously doesn't solve your problem, but hopefully helps clear it up a bit.
    Regards,
    Tim

  • Japanese Language Text in PDF Output of Purchase Orders

    Hi,
    We are using a custom smartform to create a purchase order output and send it as an email to the Vendor.
    Std Program /SMB40/FM06P is used. We have setup the configuration for External Message and this is working fine.
    We have the following 2 issues
    1. We wish to over-ride the email address picked up by the Program. By default SAP picks up the vendors email address maintained in Vendor master. Is there any way to overide this?
    2. The purchase order contains Japanese language texts. These Japanese texts are not getting updated correctly in the PDF file. They are displayed as junk characters.
    Please note that if I view print preview of purchase orders in mE23N the display is perfectly fine. Also I executed a report in the background and then converted the spool to a PDF file. The PDF file displays Japanese characters correctly.
    Any inputs on the above is welcome. Issue no 2 is more seriously affecting us.

    Hi,
    For issue # 1. Check OSS note OSS 852250... you need to include this logic en get_addr_key in print program: /SMB40/FM06PE02
    IF is_nast-parnr NE space  AND
           is_nast-parnr NE is_xekko-lifnr.
          "-- Get address from partner -
          SELECT SINGLE * FROM lfa1 INTO ls_lfa1
          WHERE lifnr = is_nast-parnr.
          MOVE ls_lfa1 TO cv_addr_key.
    Notice that line:
    MOVE ls_lfa1 TO cv_addr_key
    Should be
    MOVE ls_lfa1-adrn TO cv_addr_key
    About issue # 2.
    I am facing the same problem, have you been ablo to resolve it?
    Thanks

  • Problem in language Translation

    Hi Experts,
    I am having problem in language translation of smart form.
    I have include all text as text element and have done translation in SE63. But when I login in to translated language the output remains in English.
    I have made the translation from English to Chinese in SE63.
    Please suggest why the output does not come into translated language.

    Hi ,
    I have been working on translations for 8 months now. I think i can resolve your issue.
    Remember one thing in mind when you do translations firstly when you go to se 63 and make some changes make sure that you have not opened the smartform in Change mode. If you do so then you will face this sort of probelm. As per your messages i think you have already checked the language in the form
    If not make sure you do it. Now try again in SE63 make changes in what ever langauage you are doing and then "saveactive" .
    One more final thing if anytext in smartform say   &invoivce_no& is blank in smartform then it will not show up in se63 i think you know about this.

  • Modify the text in the file

    Hi,
    I have a text file with few lines. Please let me know hot to modify the text in in the line.
    for example if my file contains :
    this is line 1.
    this is line two.
    this is line 3.
    now i want to replace 1 by one and 3 by three.
    this is a simple example but my requirement is some other .
    I tried opening the file reading the strings and comparing and changing and writting it to new file.
    is there any way to directly open the file and modify without using the second file to be created.
    Thanks in advance,
    pavan

    the actual problem is there is a file in following kind of entry in each line
    <string>, starting point, ending point.
    eg. "this is a file" , 10, 20.
    now i want to calculate the length of the string and add to starting point and check with ending point if it is false then update the ending point with actual value.

  • Problem with Pages text flow

    In a 'Pages' long document the text flow is not consistent despite the settings in the Inspector being identical. On some facing pages the last line does not justify, on others the text refuses to fill large gaps that seem to occur at random.

    No Gremlins, just your settings.
    Prevent widow and orphans will haul lines over onto subsequent pages leaving gaps where necessary. If you don't want that then uncheck it. You understand what those terms mean?
    Language applies to selected text just like bolding, fonts, color etc. If you are copying and pasting material from elsewhere such as the Internet they will have their own langauge or none. The default language is whatever you have set it in System Preferences.
    Paragraph Styles will stay what they were in the document or what they were when you pasted them into the document. Use Paste and Match Style if you want it to conform to the style of where you are pasting it.
    It is possible for a paragraph of text to have mixed styles due to author's changes. To force apply a style to text, double click it in the Styles Drawer.
    Peter

  • Problem in Standard Text

    Dear all ,
    I a creating Letters under Text ID PALT . I am facing following problems .
    1) I have created ZHR_REC style and have used that style in these letters,this is working very fine . Now I want to print the the name of employee as a footer on every page . When I use BOTTOM and ENDBOTTOM to meet my requirment the font is getting changed .
    2) On top of page automatically page number is coming how do I avoid that .

    Hi,
    You are not clear with your query?
    where are you printing your letter after creating the STd text in SO10?
    using scripts or smartforms?
    You can create another style and use it for the footer, if the footer font is changing .
    in the Script there is field &PAGE& which prints the pagenumber, have to comment that.
    reward if useful
    regards
    Anji

  • How Do You Change Text Attributes in a PHP Gallery?

    Hi everybody, I am trying to change the text attributes on this PHP gallery and it's driving me up the wall! Does anybody know who to do it?
    http://www.gwilliams-designs.co.uk/AdobeSupport/gallery_test4.php
    I am trying to create the following styles. Many thanks for your help.
    Top Text
    Georgia, Times New Roman, Times, serif,
    size 18
    bold
    Lower Text
    Georgia, Times New Roman, Times, serif,
    size 13
    regular

    There is only one page. So is that anywhere after it says <style> and before it says </style> ? Doesn't it matter where it goes in relation to the { and } symbols? e.g would this to OK? This is what I will try first.
    <style>
        padding: 0;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    h1{
        font-family: Georgia, "Times New Roman",Times, Serif;
        font-size: 18px;
        font-weight: bold;
    h2 {
        font-family: Georgia, "Times New Roman", Times, Serif;
        font-size: 13px;
        font-weight: normal;
    body {
      margin: 0;
      padding: 0;
      background: #08035F;
      color: #333;
      font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, sans-serif;
      font-siz: 100%;
      background-color: #003;
    #wrapper {
        width: 1000px; /**adjust width in px or %**/
        margin: 0 auto; /**with width, this is centered**/
    header {
        background: #355DA0;
        width: 100%;
        margin: 0 auto;
        color: #FFF;
    #inner_wrapper {
        background: #CCC7B3;
        overflow: hidden; /**float containment**/
    aside {
        float: left;
        width: 14%;
    section {
        background: #FFF;
        width: 72%;
        float: left;
        margin: 0 auto;
    /**Begin image gallery styles**/
    .thumbs { /*divs that hold gallery pictures*/
        float: left;
        margin: 0.5%; /*space between thumbnails*/
        border: 1px dotted #CCC;
        /**same size images**/
        width: 90px;
        height: 99px;
        opacity: .70
    .thumbs a { /* in every .thumbs div there is a hyperlink exactly the size of the container */
        width: 90px;
        height: 99px;
        text-indent: -99999px; /*move text links off screen*/
        display: block;
        outline: none;
    /**on mouse over**/
    .thumbs:hover { opacity: 1.0 }
    /**end gallery styles**/
    footer {
        clear: both;
        background: #222;
        width: 100%;
        color: #FFF;
        margin: 0 auto
    </style>

  • How can Modify the Text of a MessageArea in a Application WD ABAP Standard?

    Dear Experts.
    How can Modify the Text of a MessageArea in a Application WD ABAP Standard?
    I found the following link in the helpsap, but in this moment I don't know How found this text? and Modify this text with a new text.
    http://help.sap.com/saphelp_nw70/helpdata/en/3a/f6ba42a950da11e10000000a155106/frameset.htm
    The text of a MessageArea are in a table of configuration or can do the system for get this text and show in the application in the portal? How can get this and modify by a new text.
    Please help me with a suggestions.
    Thanks
    Regards
    Carmen G.

    Dear Kranthi..
    The datas of the Application is the following:
    General Information About the Application and Component
    Application: FITE_REQUEST
    Web Dynpro Component: FITV_FPM
    Window Information: FPM_WINDOW
    View Information: Layout_view
    Information on Field
    Field ID: HELPTEXT
    Type of UI Element : Explanation
    Attributes of UI Element
    TEXT_DOCUMENT_NAME: FITE_FPM_REQUEST_GENERAL_DA
    I dont found this method L_MESSAGE_MANAGER->REPORT_T100_MESSAGE.
    Please can give more suggestions for found the method
    Thanks in advance
    Regards
    Carmen G.

  • How to modify the text in java3d??

    I want to modify the text in java3d.What should I do ??
    first , I add the text to the java3d;
    then , I pick it by using behaior;
    third, I setString("My dog") to change text!!
    but there have some capability error!
    how can I do that??
    thanks in advance!!

    Hi,
    I've a similar problem - I'm using Text2D to create labels for a node-link graph. I've set all the capabilities, etc., and am finally able to change the labels using setString in Text2D. With one slight problem - now I'm getting an error:
    java.lang.IllegalArgumentException: Texture:illegal image size
            at javax.media.j3d.TextureRetained.checkImageSize(TextureRetained.java:389)
            at javax.media.j3d.TextureRetained.setImage(TextureRetained.java:423)
            at javax.media.j3d.Texture.setImage(Texture.java:869)
            at com.sun.j3d.utils.geometry.Text2D.setString(Text2D.java:118)
            at Label3D.setLabelText(Label3D.java:59)The only time I don't get the error is when I change the label from component ID to (which is a string containing an integer, e.g., 1234) to start/stop stage (which is another string containing an integer, e.g., 04, 11). If I attempt to change from component name (a string containing a string, e.g., "mesoderm"), say, to component ID, I get the error. So it's not about the length of the string, since component name is invariably longer than the ID, and the ID could be longer than the start/stop stage.
    oh, this is the code I have for the capabilities bit - no more complaints there
    private void setCapabilities()
      text.setCapability(text.ALLOW_APPEARANCE_READ);          
      text.setCapability(text.ALLOW_APPEARANCE_WRITE);
      Appearance appearance = text.getAppearance();
      appearance.setCapability(appearance.ALLOW_TEXTURE_READ);
      appearance.setCapability(appearance.ALLOW_TEXTURE_WRITE);
      Texture texture = appearance.getTexture();
      texture.setCapability(texture.ALLOW_IMAGE_READ);
      texture.setCapability(texture.ALLOW_IMAGE_WRITE);
    }Any ideas, anyone?
    aba.

  • Delete or modify tip text in Word Search

    How do I delete or modify the text in attached image?

    I have the same problem with my MacOS Lion on MacBook Air.
    Ia happens mostly in MS Office applicatioms, such as Excel and Word.
    It takes time for the computer to figure out that the selected text can now be edited (delete, cut, paste, copy...). Visually the selection happens right away, but I have to wait about 1 sec to be able to work wih this text.
    It's extreamly frustraiting and I don't know how to fix it.
    Any ideas?

Maybe you are looking for

  • How to use ActiveX in Forms 6i

    Hello friends: Being a novice forms developer I'm eager to gain the skill of using ActiveX in Forms 6i. I 'll appreciate if anyone could help me finding some online tutorial on this issue. Otherwise, I 'll very highly appreciate if someone would shar

  • Apache Log Format Question

    Hi, I need to set my Apache logs to combined for AWStats to work. In 10.6 server admin there seems to be no place to change the log format. Can any one tell me how I do this? I have multiple sites hosted so will I need to do it for each site? Thanks

  • Select multiple projects?

    Is there a way to do this? I want to drop into a folder but neither shift or command clicking selects more than on at a time.

  • I can't purchase anything - I keep getting an error 11111

    This has been happening all week. I have 30 dollars in my account, so it can't be because I have no money. I click on "buy" and it says "an unknown error occured(1111)There was an error in the itunes store. Try again later" I'm getting really angry r

  • About variables in scripts

    what type of variables used in scripts to out put data