How to Bold Characters at run time

Actually,
I am developing a form in which I am having a huge text item with a huge size and its multiline property set yes .Basically I want to use that item just as MS-WORD also i want to give the users a features of making their typed character "BOLD","UNDERLINE".How to provide this facility in that item.I am using Forms6i, and Oracle 9i.Plz help me..............................................

...but...
here is the code you can paste in your 6i version
KEY-COMMIT form-level trigger
:HTML_TABLE.TEXT :=  Get_Custom_Property( 'HTML_TABLE.HTML_BEAN', 1, 'GET_TEXT' ) ;
commit_form ;POST-QUERY on the HTML_TABLE block
If :HTML_TABLE.TEXT IS NOT NULL Then
  Set_Custom_Property( 'HTML_TABLE.HTML_BEAN', 1, 'SET_TEXT', :HTML_TABLE.TEXT ) ;
Else
  Set_Custom_Property( 'HTML_TABLE.HTML_BEAN', 1, 'SET_TEXT', '<HTML><BODY></BODY></HTML>' ) ;
End if ;WHEN-NEW-RECORD-INSTANCE of the HTML_TABLE block
If :HTML_TABLE.TEXT IS NOT NULL Then
  Set_Custom_Property( 'HTML_TABLE.HTML_BEAN', 1, 'SET_TEXT', :HTML_TABLE.TEXT ) ;
Else
  Set_Custom_Property( 'HTML_TABLE.HTML_BEAN', 1, 'SET_TEXT', '<HTML><BODY></BODY></HTML>' ) ;
End if ;WHEN-CUSTOM-ITEM-EVENT of the HTML_TABLE.HTML_ITEM item:
:HTML_TABLE.TEXT :=  Get_Custom_Property( 'HTML_TABLE.HTML_BEAN', 1, 'GET_TEXT' ) ;Francois

Similar Messages

  • French characters in run time parameter values doesn't show up in emails

    We have a custom workflow with configurations to send email when a request is assigned to a person and also to send email on request rejections.
    We are encountering following issues with respect to French characters that are available in the message body and message subject.
    Issue 1:Notifications are configured in Human Task (ApprovalTask.task) when a task is assigned. Since the message body contains French characters we have used ISO-8859-1 encodings to render the message properly to the user. The message body also has some run time content from the task payload.
    For e.g. &#192; titre de responsable fonctionnel, une demande d''approbation pour un acc&#232;s informatique vous est assign&#233;e.
    Acc&#232;s informatique demand&#233; : <%/task:task/task:payload/ns1:ObjectDetails/ns1:name%>
    In this case all static text values are rendered properly to the end user in his email. However the French characters in run time parameter values doesn't show up properly and has some weird characters.
    Issue 2: Unable to change the default subject shown in the approval task emails i.e. Notifications are configured in Human Task (ApprovalTask.task) when a task is assigned. By default it shows Action Required: Approval. How can this default value be changed?
    Issue 3: We have an Email Activity in Bpel process that follows a task rejection. The emailpayload is ISO-8859-1 encoded and works for the message body. However the email subject shows up with ISO-8859-1 encodings itself and doesn't convert to proper string in the end user's email. Is there any specific setting required for french characters in subject?

    Hi Kulwinder,
    Thanks for your reply.
    In fact I do, I've follewed the "Using SAP HANA Variables with SAP BusinessObjects BI4.0" guide.
    Please note, when I use a fix value to parameter is working fine, for example:
    SELECT *
    FROM "_SYS_BIC"."prueba-concepto/CV_TEST_VAR_II" ('PLACEHOLDER' = ('$$FECHA$$','20130530'))
    But when I set prompt of the DataFoundation parameter I get and error, this is my sentence:
    SELECT *
    FROM "_SYS_BIC"."prueba-concepto/CV_TEST_VAR_II" ('PLACEHOLDER' = ('$$FECHA$$',@Prompt(FECHA)))
    To me is very curious that I can't enter a value in the DataPreview in Hana Studio, because is not requested, even when the input parameter have been set as mandatory
    Have you idea of what could be happening?

  • How can I test the running time of a method?

    c.What is the running time of your method smallest, as a function of n, the number of elements in the list? Use big-Oh notation.
    I quoated from a java problem..
    Anyone can tell me how I can test the running time? Thanks ! :D

    it depends on what is in the method. For example a for loop executed n times would have a O(n). A double for loop (each loopp run n times) will have O(n^2). Do this: determine how many times each loop in the method is run. This is the first term in your runtime equation. Do this for all other loops in the method and add them all together. Most other statements that are not iterative should have a constant runtime so O(1). For conditional statements, the runtime depends on the most time consuming portion of the statement. Once all these are added together, take the O(equation) which should just leave the biggest term. i.e. O(5n^2+3n+8) = O(n^2). Hope this helps.
    note: this does not apply to recursive methods

  • How can I delete a "Run Time Air" from my mac book pro

    how can I get rid of the "Run Time Air" on my Macbook Pro

    Welcome to the Apple Support Communities
    If you use Snow Leopard, open iTunes, go to iTunes Store in the iTunes sidebar and log out

  • How to design report at run time SSRS

    most of the time we point store procedure or table and then SSRS report designer show us field and we just drag drop those field on to report designer surface. after all we call those report programmatically and pass parameter and report shown on report
    viewer.
    now my company want that customer will customize the report who will see the report. they want to display all the fields in a form and just customer will select each field and place on report designer surface and give some input like filter condition like
    date range or employee id etc and report will be shown. also at run time if customer want they can add text or move existing field etc.
    i do not have any idea how could i do this with SSRS. if this is possible with SSRS then please guide me in such a way as a result i can start the job or if possible give me few relevant url of that kind from where i can get the idea. thanks

    You can also use report builder application to get most of these functionality. For that you'll just create and deploy a report model with required attributes from involved entities.
    Then use can consume the model within report builder and add required fields to report,filter etc
    see below videos for more details
    http://technet.microsoft.com/en-us/sqlserver/dd430326.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • How to instantiate classes at run time with constructors having arguments?

    I have to instantiate some classes in the run-time because they are plugins. The name of the plugin (pluginClassName) comes from a configuration file.
    Currently I am doing this to achieve it:-
    UIPlugin plugin = (UIPlugin)Class.forName(pluginClassName).newInstance();However, there is a disadvantage. I can not pass arguments to the constructor of the plugin.
    public class RainyTheme extends UIPlugin {
      public RainyTheme() {
       // bla bla
      public RainyTheme(int x, int y , int width, int height) {
       // set co-ordinates
       // bla bla
      // bla bla bla bla
    }Now if I want to instantiate this plugin at runtime and at the same time I want to pass the 4 arguments as shown in the second constructor, how can I achieve this?

    I have no experience with JME and the limitations of its API, but looking at the API docs ( http://java.sun.com/javame/reference/apis.jsp ) it seems that there are two main versions, CLDC and CDC, of which CLDC is more limited in its API.
    The Class class does not contain the methods getConstructor(Object[]) or getConstructors() in this version ( http://java.sun.com/javame/reference/apis/jsr139/java/lang/Class.html ), so it seems that if you are using CLDC then there is no way to reflectively call a constructor with parameters. You'd have to find another way to do what you want, such as use the noarg constructor then initialise the instance after construction.

  • How to Load Classes in run time - Urgent

    Hi All,
    How to Load a class file from a .jar file in JDK1.1 with out using URLClassLoader. I have tried to extract the .jar file by file input stream and zipEntry classes and defineClass using the bytes i got from the stream , but the class loader fails to take the classes that are already loaded in the system.
    The customClassLoader that i created was not able to assign an object to the another reference variable that already in the JVM.Please i want to know how to assign or communicate between the objects of CustomclassLoader and SystemClassLoader?
    Please help me in this regard.
    Thanks in advance,

    Hi,
    The above code works in the straight way if the class is available in the classpath.
    I need to load a class by using custom class loader that i extends from classloader base class .
    I have to read a class file from a .jar file (in server) and load it in run time.Here i am able to read the bytes from the .jar file of the specified class file, but the class that i read extends some other class that is already loaded when i tried to create newInstance of the class i get Exceptions. Here the custom classLoader cannot find the loaded existing class in the JVM.can i get a solution for this situation

  • How to change options in Run time menu while labView was running

    Hello Good Afternoon,
        I m Using LabView 8.5.How to change the options in Run time menu for any control while Labview was running
    Thanks 
    Jai
    Jayavel
    Solved!
    Go to Solution.

    Hi Jai,
    Try the below attached VI and let me know if u still need some explanation.
    Rgds,
    Venky
    Attachments:
    Run Time Menu.zip ‏6 KB

  • How can I uninstall Labview run time engine from the machine?

    I understand that Labview has not given any provision to show customized 'License Agreement screen'. Isn't it? This is the main cause of my problem. Since I want to show our own license agreement (LA) screen, I made the one using Labview. To show this license agreement screen, I first install a small application which has only this LA screen with Labview run time engine. The customer can see License Agreement Screen with Labview Run Time Engine on his machine. If My customer accepts the LA, I will install the main application further by calling another setup.EXE file.
    If my customer selects 'Do Not Agree' to the LA, I will quit the installation process. Here I also want to 'uninstall' Labview Run Time Engine
    from his machine since he doesn't accept License. I would like to know how to uninstall Labview run time engine from his machine?
    Another way which I could think is to run the LA screen from the CD with Labview run time engine on the CD. I will start installing the main S/W to the customer's machine with LABview Run Time Engine only after he accepts License agreement. I would like to know how to run the Labview application from CD without installing run time engine on the target machine?
    Can anyone suggest solution to my problem?
    Thanks,
    Chander

    J-Tek,
    I would suggest re-installing the Run-time Engine and then uninstalling it after a reboot. Also, you can download a program called Msicuu.exe (for NT, 2000, XP or Msicu.exe for 9x) to help clean up the registry for uninstalled programs.
    Randy Hoskin
    Applications Engineer
    National Instruments
    http://www.ni.com/ask

  • How to install database in run time

    hi all
    i want to ask if i can install database as run time only and in this case how i can logon the sql ?,i want to install it as run tim such as developer 6 run tim
    is this possible?
    thanx

    first thank you for helping me
    and i will try to explain what i want to do in more details
    i'm using oracle database9i with developer 6i and i want to deliver an application was mad by this tools i know that i should setup the database and forms runtim only in at the customer computer the application -at the first- will work at only on one computer ,this computer will run as the client\server
    my question is
    if i can setup the database as run time only or i must setup complete at the customer computer?
    i tried to do that by choosing this option when installing database
    1-Oracle9i Client 9.2.0.1.0
    2-Run tim
    but after making this i can't connect with database
    i hope that if i can explain what i want to do

  • How to get VBELN in run time

    I have developped a custom driver program and a smartfor layout for sales order confirmation. And configured the program and layout against a output type.
    I go to VA02>Type an order number>
    Choose 'Issue output to' from Sales document menu. Then I will select the output type and press print preview button.
    In this case my custom driver program is called. My question is during this run time how do I get the VBELN for the current document that I have entered? Based on this VBELN, I am going to fetch the required data.
    Regds
    Rajesh

    I believe it should be coming in thru NAST as the object key?  In our custom print programs for sales documents, there is entry routine in the program which is defined in config.  The subroutine is called and NAST is avaiable during runtime,  the OBJKY is the field with the sales document number in it.
    tables:
            nast,                          "Messages
            *nast.                         "Messages
    form entry using return_code us_screen.
      clear retcode.
      xscreen = us_screen.
    * Retrieve misc data.
      select single vbpa~vbeln vbpa~kunnr adrc~name1 adrc~street adrc~city1
                    adrc~region adrc~post_code1 adrc~tel_number
                    adrc~fax_number
                       into corresponding fields of formdata
                          from vbpa
                            inner join adrc
                               on  vbpa~adrnr = adrc~addrnumber
                                  where vbpa~vbeln = <b>nast-objky</b>                                and vbpa~parvw = 'AG'
                                    and adrc~date_to = '99991231'.
    endform.
    Regards,
    Rich Heilman

  • How to display "Non-Fatal Run-Time Error In Function Panel" dialog?

    I'm learning how to develop an IVI-C specific driver using LabWindows/CVI. When I run my function from its function panel and it returns an error, I would like to display a dialog with both the error code and error message (as opposed to simply returning an error code on the function panel). This would save the user from having to call Prefix_error_message() to translate the error code to its error message. NI-DCPower driver is a good example of this behavior (see attached error dialog). How do I show the "Non-Fatal Run-Time Error In Function Panel" dialog? Any help is greatly appreciated. Thanks!
    Attachments:
    ErrorDialog.png ‏8 KB

    Hi Shawn,
    Thank you for replying to my post. The checkErr is just an error handling macro defined in ivi.h to goto Error: tag when the function returns a non-zero value. I have been using the checkErr macro (as well as viCheckErr and other macros) in my driver.
    Using the same hp34401a specific driver as an example, please allow me to explain my question in more details:
    Let's take the hp34401a_close function as an example. It is a simple function with only a few lines of code:
    When the hp34401a_close function is run from its front panel using an invalid session handle (e.g. "8" in this screen capture):
    You will get three "Non-Fatal Run-Time Error" popup dialogs, one from each of the IVI library functions that it calls: Ivi_LockSession, Ivi_UnlockSession, and Ivi_Dispose. However, there is no "Non-Fatal Run-Time Error" popup dialog from the hp34401a_close itself.
    My IVI-C specific driver is behaving identical to the hp34401a specific driver.
    In comparison, if run niDCPower_close function from its front panel using an invalid session handle (using the same "8" in this screen capture):
    You will only get one "Non-Fatal Run-Time Error In Function Panel" from the niDCPower_close function itself:
    I think the behavior of niDCPower driver is much better than the hp34401a driver. It replaces the three "Non-Fatal Run-Time Error" popup dialogs from the IVI library with a single "Non-Fatal Run-Time Error In Function Panel" popup dialog from the driver function itself. I would like to do the same thing with my driver but have not figured out how to display a "Non-Fatal Run-Time Error In Function Panel" dialog. Thanks in advance for your help!

  • How to find Query with Running time

    dear frnds,
    I need to find the query details and query execution time from a DB USER. am using oracle 11g. how to generate this report
    please give me any idea.,
    thanks.
    Edited by: Velsjeya on May 14, 2012 1:07 AM
    Edited by: Velsjeya on May 14, 2012 1:07 AM

    Velsjeya wrote:
    thanks a lot,
    here i need to show query running time also...( how many mins that particular query ran) ... please help mePlease do search for the question's answer. V$SQL should be able to show you what you are looking for. Asktom's thread given below discusses the same,
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:912859800346801944
    Aman....

  • How to reduce excessive job run time

    Hi all,
    please any one let me know how to reduce excessive job run time

    What you exactly mean by excessive run time?  Job runtime is due to many factors like data to be processed , many jobs running same time , waiting for another jobs , hardware bottleneck etc etc ...
    If this is not looking for please explain your question a bit more
    Thanks
    Prince Jose

  • How do I monitor VI run time?

    I have tried using the Elapsed Time express vi, in both the sub-vi as well as my main vi. What I get out is the elapsed time only updates on the "sub-vi" when it finishes each process, and the calling vi only updates the elapsed time when the sub-vi finishes. My sub-vi takes approximately 7 hours to run, so I would like continuous updates so the user knows about how long is left to run. Is there a better way to have an elapsed time displayed?
    Solved!
    Go to Solution.

    You could also use a reference. Some people in this forum are very hostile both global and locale variables. Just use them with care. They want ruin your application if you have a few containing a small amount of data, that are not updated to often
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

Maybe you are looking for

  • Confirmed quantity in sales order level

    Hai Guru,s My client scenario is like this. He takes the order from customer. After saving the order he  decides the confirmed quantity (more or less quantity)manually in order level  without changing the order quantity.  I am trying in confirmed qua

  • In an iPhone 3GS (or 4G), can a user configure the WiFi power-save to extend battery life?

    In an iPhone 3GS (or 4G when I upgrade), can a user configure the WiFi power-save operation to extend the battery life?  For example:  Can a user turn on/off WiFi power-save operation?  Can a user specify WiFi sleep duration?  Thanks in advance for a

  • Process of Sub Assets

    Hi Gurus, Can you please tell me the process of Sub Assets in AUC and in normal assets as well? How to capitalize it, retire it, what to do if any sub assets is gone for repairing? Please revert asap. Thank You

  • Power Plug for South Africa?

    I'm planning a trip to South Africa this summer and want to take my computer with me. I've heard of those conversion plugs that you can buy at Radio Shack and here are my questions: 1. Are those converters safe to use with my MBP? I've heard some sto

  • Call to createxml with a schema url does not create schema based xml

    Unfortunately I am unable to post the exact creates that I have done, but I am having a problem and none of my DBA's were able to help me. Basically what I have done is, I had existing tables in our database that have legacy data in them. Our ultimat