How to Use Picture Box

i need the code for picture box

Hi david,
   This is my XML Source
<item uid="btnCamera" type="4" left="205" tab_order="0" width="15" top="102" height="14" visible="1" enabled="1" from_pane="0" to_pane="0" disp_desc="0" right_just="0" description="" linkto="" forecolor="-1" backcolor="-1" text_style="0" font_size="-1" supp_zeros="0" AffectsFormMode="1">
              <AutoManagedAttribute/>
              <specific image="Camera" ChooseFromListUID="BtnCamera"/>
            </item>

Similar Messages

  • How to use check box in flash 8?

    How to use check box in flash 8?

    If you want it to happen when someone clicks the checkbox, then you need to add a listener for that event.
    var cbListener:Object = new Object();
    cbListener.click = function (evt:Object) {
        if (cb.selected) {
              gotoAndStop(2);
    cb.addEventListener("click", cbListener);
    (Note: "cb" and "cbListener" are names that were made up for this example.  They could be anything you want to name them)

  • How to use check box & dropdownlist in smart forms

    can anybdy explain(any examples) how i can use check box or drop down list in smart forms.is ther any provision like that

    Hi Ranjith,
    To use Check box in smartform do the following:
    Change the editor to 'PC Editor' and take the menu.
    in text editor of TEXT ELEMENTS..
    Insert -> Characters -> SAP Symbols
    in print preview u can't see these changes..
    for more details check this link..
    How to create checkbox in smartforms??
    Ashven

  • How to use input box LOV in query panel (search region)

    Hi,
    We are having JDeveloper version 11.1.2.4.0
    In one of the JSF page, we are showing some data (absences).
    Requirement is to add search region at the top so that user can filter the data, based on search parameters like Business Group, Job etc.
    The search parameters are inter-dependent e.g. Job is dependent on Business Group. So when user selects some particular Business Group, Job search field should show jobs for that Business Group only.
    This works fine we use Choice List for both Business Group and Job.
    However since there are huge number of jobs, Job choice list makes page rendering very slow.
    So we tried to use Input box with LOV for Job.
    But now when job is selected in the LOV popup and returned to main page, job search field shows job id instead of job name.
    Please note that our base VO (AbsencesVO) contains JobId attribute. We have added List of Values on JobId, which fetches Job Name through JobVO1 view accessor.
    How to make Job LOV field show selected Job Name instead of ID? Kindly advise.
    Thanks,
    Vivek

    Thanks Timo/Bangaram, for prompt replies
    Timo, the link mentioned by you talks about showing IDs (DepartmentId, ManagerId etc.) in the search region. I need to show names in the form of Input box LOV.
    Bangaram, as per your suggestion I tried using transient JobName attribute. However now when I select any value in the Job LOV popup and return to main page, it shows first Job Name in the Job Name search field.
    Also when I click 'Search' button in Search panel, it shows error - Attempt to set a parameter name that does not occur in the SQL: BindJobName
    Please note that I have added both JobName and JobId in the List configuration as you suggested.
    In View criteria, I have removed previous item (condition) on JobId and added condition on JobName.(This is required because JobId condition shows JobId search field)
    I also tried making JobName dependent on JobId..still same behaviour.
    Kindly advise.
    Thanks,
    Vivek

  • How to use picture in picture in imovie 9.0.7

    how can i do to use picture in picture in imovie 9.0.7

    It seems I can build app using jdk 1.4 but when I deploy to standalone oc4j instance I get runtime error java.lang.NoSuchMethodError because this method is missing in JDK 1.3!?
    Why is this happening?
    thanks,

  • How to use Vision Box as PVR

    How do I use my Vision Box on another tv to view recordings without being connected to BT?
    When I power up it tries to search for a connection and goes no further.

    bds1958 wrote:
    How do I use my Vision Box on another tv to view recordings without being connected to BT?
    When I power up it tries to search for a connection and goes no further.
    Hi,
    Your Vision box needs to be connected to your BT BB to boot-up. If it's not connected, it wont.
    If you boot your box up whilst it is connected, then disconnect it from your BB, you WILL be able to view your recordings and use the box to watch Freeview. But you won't have an EPG. And you won't be able to record any further programmes on the box. It would basically be a makeshift doorstop.
    Hope that helps.
    Rank - Mostly Harmless.

  • How to use text boxes or rich text boxes inside loops in array format

     Help me,
        I try to use text boxes load automatically showing the character in the text box.One text box showing one character (ex: " A"). I use 5 text boxes.I try to code using   for loop but i don't know how to use array format.
    Please explain any solution.
    I am using Microsoft Visual Basic 2008 Express Edition

    Hi
    And yet again, this version uses a list of textbox names (IN REQUIRED ORDER) to fill.
    ' this is an overly simplified example
    ' in the form of a Project
    ' start a new Project with a default
    ' Form1 with many TextBoxes.A list of
    ' required textboxes to fill IN THE
    ' REQUIRED ORDER is used.
    ' Copy/paste this code to replace
    ' all Form1 code with this.
    ' NOTE: there is plenty of oppertunity
    ' for exceptions as no exception handling is
    ' included here.
    Option Strict On
    Option Explicit On
    Option Infer Off
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles Me.Load
    Dim tbNames As New List(Of String)
    ' add names IN THE ORDER required
    tbNames.AddRange({"TextBox2", "TextBox5", "TextBox1", "TextBox3", "TextBox4"})
    Dim s As String = "boxes"
    Dim counter As Integer = 0
    For Each name As String In tbNames
    For Each c As Control In Me.Controls
    If c.GetType() Is GetType(TextBox) Then
    If c.Name = name Then
    c.Text = s(counter)
    counter += 1
    End If
    End If
    Next
    Next
    End Sub
    End Class
    Regards Les, Livingston, Scotland

  • How to change picture box into sentence

    I need to make 3 picture boxes disappear when one of them is clicked and a sentence to appear in their place. For example if picture box 1 is clicked they all three disappear and the sentence "you have chosen picture box 1 appears"

    Put a label and three pictureboxes on your form from the Toolbox.
    The code below alters the label for the name of a picturebox clicked on and the picturebox's "disappear". Clicking on the label will make the label text return to "Waiting" and the picturebox's will "reappear". The label is
    centered in the form whenever its text is changed.
    Option Strict On
    Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.Location = New Point(CInt((Screen.PrimaryScreen.WorkingArea.Width / 2) - (Me.Width / 2)), CInt((Screen.PrimaryScreen.WorkingArea.Height / 2) - (Me.Height / 2)))
    Label1.Text = "Waiting"
    Label1.Left = CInt((Me.ClientRectangle.Width / 2) - (Label1.Width / 2))
    End Sub
    Private Sub Label1_Click(sender As Object, e As EventArgs) Handles Label1.Click
    Label1.Text = "Waiting"
    Label1.Left = CInt((Me.ClientRectangle.Width / 2) - (Label1.Width / 2))
    PictureBox1.Visible = True
    PictureBox2.Visible = True
    PictureBox3.Visible = True
    End Sub
    Private Sub PictureBox_Click(sender As Object, e As EventArgs) Handles PictureBox1.Click, PictureBox2.Click, PictureBox3.Click
    Label1.Text = DirectCast(sender, PictureBox).Name & " was selected."
    Label1.Left = CInt((Me.ClientRectangle.Width / 2) - (Label1.Width / 2))
    PictureBox1.Visible = False
    PictureBox2.Visible = False
    PictureBox3.Visible = False
    End Sub
    End Class
    La vida loca

  • How to use list box parameter in crystal Reports

    Hi Experts,
                   How to acheive list box parameter in sap B1 crystal reports.
    Regards
    Vinoth

    Hi,
    check this thread
    Crystal Report Drop Down Selection List
    Drop down list parameter
      https://scn.sap.com/thread/1782598

  • How to use COMBO box in prc application

    am using KVM -kjava to create a graphical user interface application.First i want to put combo box in my prc appliction,i have found a class implementing combo box but i could not understand if an item is selected from combo box then the screen below the combo box is painted ,so how to restore(repaint) the screen below the combo box ...can any body send me the code..

    What combo box ? Did you create it ?
    As to re-painting: Determine what components were covered by the combo, and repaint them.

  • How to use check box in SQL Query

    Hi
    I have a reagion with check boxes. Now I am creating another region which is
    PL/SQL function/block returning query.
    here' the block. When I save it give me error
    Query cannot be parsed within the Builder. If you believe your query is syntactically correct, check the ''generic columns'' checkbox below the region source to proceed without parsing. ORA-00900: invalid SQL statement
    Here is the code
    DECLARE
    p_str VARCHAR2(2000);
    p_col_name varchar2(100);
    p_flg char(1);
    BEGIN
    p_flg := 'N';
    for i in 1 .. htmldb_application.g_f01.count
    LOOP
    p_flg := 'Y';
    p_col_name := htmldb_application.g_f01(i);
    IF i = 1
    THEN
    p_str := 'SELECT ' || p_col_name;
    ELSE
    p_str := p_str || ', ' || p_col_name;
    END IF;
    END LOOP;
    p_str := p_str || ' FROM UALDBA_V';
    RETURN p_str;
    END;
    Please advice
    Sunil

    Sunil - The htmldb_application.g_fxx arrays are empty during page rendering. A query cannot be generated using them.
    Scott

  • How i use list box in runtime or fill runtime asper user given data

    hi master
    my user want he writ any word such as a writ in text box then show the list box that have the name who's start with a character and select any one name and transfer name and code in other text box.
    please give me sample or setp or code
    i am new in oracle
    Thanking you
    Aamir

    Aamir, appears that you are asking Forms questions in the wrong area, please note you are in the Collaboration Suite area, which does not use Forms.
    Try posting your question to Forms

  • How to use check box in a table

    i have a field in a internal table in which i have to put "X" if the user checks on a check box, for a particular row.
    please provideme with the required code .
    Thankyou.
    Upendra

    Hi upendra
    There are slight changes in the sivas code.Where is the data coming into the table.If its from a Model Node then iterate each element of the source node get that value compare and set the corresponding value in the element of the node binded to table.
    Create a boolean attribute "select" in the table node and bind it to checked property of the check box.
    for(int i=0;i<wdContext.node<tablenode>()..size();i++)
    if(wdContext.node<tablenode>().get<tablenode>ElementAt(i).select())
    wdContext.node<tablenode>().get<tablenode>ElementAt(i).set<yourattribute>(true);
    else
    wdContext.node<tablenode>().get<tablenode>ElementAt(i).set<yourattribute>(false);
    See the attribute is boolean so pass true or false as a values in setter methods.
    Regards
    Kalyan

  • How to Use Combo Boxes

    Hi, i download the code of this tutorial
    and i want to insert this in a Jdialog, i create a new JComboBox() with the name of the class that i download, i Set the path , i extend the class to JComboBox , i made the class super(); but throw me an Exception: "cannot be cast to Integer" at the
    public Component getListCellRendererComponent(
    JList list,
    Object value,
    int index,
    boolean isSelected,
    boolean cellHasFocus) {
    //Get the selected index. (The index param isn't
    //always valid, so just use the value.)
    int selectedIndex = ((Integer)value).intValue(); // here throw me the exception cannot be cast to Integer.//
    if (isSelected) {
    setBackground(list.getSelectionBackground());
    setForeground(list.getSelectionForeground());
    } else {
    setBackground(list.getBackground());
    setForeground(list.getForeground());
    //Set the icon and text. If icon was null, say so.
    ImageIcon icon = images[selectedIndex];
    String pet = petStrings[selectedIndex];
    setIcon(icon);
    if (icon != null) {
    setText(pet);
    setFont(list.getFont());
    } else {
    setUhOhText(pet + " (no image available)",
    list.getFont());
    return this;
    what should i do??
    Sorry for my English...Thanks.

    I set it manualy
    int selectedIndex = 3; it works but shows me only one selection, actually the thirt selection....i must call this method anywhere to fill the selectedIndex ?

  • How to use a check box in smart forms????

    Hi All,
    Pls let me know how to use check boxes in smartforms.....??
    there are check boxe available which are crossed (i.e,, selected checkboxes) in the smartforms..
    But i need a checkbox which are not selected.( i.e.., which are not crossed).
    Its really urgent...
    Quick responses are highly appreciable..
    Bye

    Refer this thread
    Re: how to display symbols in smartforms
    We can create symbols in smartforms. For this, change the editor to text editor and then goto insert->characters->SAP Symbols and select the symbol you want.
    You cannot see the symbols in print preview, it'll appear only on a hard copy.
    You can also create as Text Element. In the left side of the right window,you can see a icon called Editor.Click it.
    Then in the Menu,
    go to->Change Editor
    Then in the menu,
    Insert->Characters->Displayable characters,select the character you want.Otherwise,if you want to insert SAP Icon,select that option instead of Displayable Character.

Maybe you are looking for

  • Based on a SQLException how to know if the database is down?

    Hi How can I know based on a SQLException that the database is down?. I know I can check the errorCode but which error codes indicate that the database is DOWN or not available? Regards, Néstor Boscán

  • Why three flavours for line cards?

    What are the main differences between modular services cards, forwarding processor cards and label switch processor cards? I'm looking for the reason why completely new names were created, i.e. what new functions were added so that MSC name had to be

  • Dbassist generates XML how can I use

    The dbassist tool in 9i generates XML files for the template definitions. Are there any DTD for this XML? How can I use this templates in silent mode (without GUI) to generate the creation scripts.

  • Import optimization

    Hello everyone. I am a C++ programmer who knows enough Java to be dangerous. I have been assigned to port one of our existing applications to a Java/J2ME environment to be run on a cell phone. I am trying to find out the best techniques for writing e

  • Convert from utf16 to utf8 ?? er?

    Dear list, I have recently seen a sample to convert a utf16 string to utf8. I am a little bit confused. I thought utf16 was a superset of utf8. Could please someone explain why this is necessary sometimes ? regards Ben