Problem with combo box in a Matrix column

hi every one, i  have a user form with a matrix(uid = 37) with some columns and one column is combo box. in that combo box i have to get values  from OSTC table (Code)...i have written this code ..i dont know how to access the combo box so that i can get values to combo box when i execute the prg....
oitem = oForm.Items.Item("37")  37 is uid of omatrix2
            oMatrix2 = oitem.Specific
            oColumns = oMatrix2.Columns
            oForm.DataSources.UserDataSources.Add("CSR1", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 1)
            oColumn = oColumns.Item("V_6")                      ''for accessing the combo box item [V_6 is col uid ]
            oCombo = oColumn.Cells.Item(omatrix2.row).Specific            ''''''''problem line
            oCombo.DataBind.SetBound(True, "", "CSR1")
            rset = oDICompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
            query = "select Code from OSTC"
            rset.DoQuery(query)
            Dim tc As String
            rset.MoveFirst()
            For row = 0 To rset.RecordCount - 1
                tc = rset.Fields.Item("Code").Value
                oCombo.ValidValues.Add(tc, row)
                rset.MoveNext()
            Next
            oMatrix2.Columns.Item("V_6").DataBind.SetBound(True, "@SALE_CHILD", "U_Tax")

Call objMain.objUtilities.LoadComboValuesForMatrix(FormUID, "27", "SELECT Code,Name FROM OSTC Order by Code", "V_19", objMatrix.RowCount)
Public Sub LoadComboValuesForMatrix(ByVal FormUID As String, ByVal ItemUID As String, ByVal strQuery As String, ByVal MtrxColId As String, ByVal Rowcount As Integer)
        Dim inti As Integer
        objRecSet = objMain.objUtilities.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
        Try
            Dim objmatrix As SAPbouiCOM.Matrix
            Dim objCombo As SAPbouiCOM.ComboBox
            objForm = objMain.objApplication.Forms.Item(FormUID)
            objItem = objForm.Items.Item(ItemUID)
            objmatrix = objItem.Specific
            objCombo = objmatrix.Columns.Item(MtrxColId).Cells.Item(Rowcount).Specific
            objItem.DisplayDesc = True
            objRecSet.DoQuery(strQuery)
            If objRecSet.RecordCount > 0 Then
                If (objCombo.ValidValues.Count > 0) Then
                    For inti = 0 To objRecSet.RecordCount - 1
                        objRecSet.MoveNext()
                    Next
                End If
                If (objCombo.ValidValues.Count <= 0) Then
                    objCombo.ValidValues.Add("", "")
                    For inti = 0 To objRecSet.RecordCount - 1
                        objCombo.ValidValues.Add(Convert.ToString(objRecSet.Fields.Item(0).Value), Convert.ToString(objRecSet.Fields.Item(1).Value))
                        objRecSet.MoveNext()
                    Next
                End If
            End If
        Catch ex As Exception
            Throw ex
        Finally
            System.Runtime.InteropServices.Marshal.ReleaseComObject(objRecSet)
            GC.WaitForPendingFinalizers()
            GC.Collect()
        End Try
    End Sub

Similar Messages

  • Problem with combo boxes and the reset button in certain situations

    Hi Everyone,
    i have a problem to make the reset-button function properly in an what-if analysis dashboard.
    The dashboard uses two combo boxes that are not visible at the same time. In my application the second combo box only appears when a dedicated menu (label based menu button) has been activated.
    So i have combo box 1 when menu A is active an dand combo box 2 when menu 2 is active.
    After starting the dashboard initial values are fine. If you then directly change to menu 2 (seeing combo box 2 with
    the correct default value) and press the reset button, the dashboard returns to the initial view, showing
    the menu 1 with the correct default value. If you now switch back  to menu 2, you will see, that the combo box 2
    is empty (i.e. nothing selected).
    I also tracked the destination cells for the combo box value results as well as the source cells for the "selected item" and the
    destination cells for the "Insert Selected Item". All this values seem to be correct. Therefore i assume that
    this is an issue of event handling. Maybe the combo box 2 does not refresh its selected value because it is already
    invisible when the values are restored.
    This case can easily be simulated by placing two combo boxes and a push button (that changes the visibility of
    the combo boxes) and the reset button on the canvas.
    Maybe someone can help. I am able to provide a test xlf, if neccessary.
    Thanks,
    Oliver
    P.S. I am using Xcelsius SP4 (Version 5.4.0.0)

    Hello Debjit_Singha_86,
    thank you for your support. At the moment i have the following setting:
    label based menu
    - General: Insertion Type "value" from a list of ID's for the menu-items to a dedicated cell (current menu ID, say tab1!$A$1)
    - Behavior: Selected item (position) fixted to item 1
    hidden combo box
    - General: Insertion Type "position" to a dedicated cell with the current choice (say tab1!$B$1)
    - Behavior: Selected item (position) to the same cell (tab1!$B$1)
    Can you give me a hint on how to connect the two components according to your solution, so that the label based menu sets the default for the hidden combox box only in case, that the reset button is pressed?
    Thanks,
    Oliver

  • Problem with Combo Box in a Dialog Box

    I have a dialog box that includes a combo box.
    For some reason the combo box shows up under the first text box. In other words, the combo box is not separate from the first field. It has the following:
    ComboBox with Sequence showing, then Enter Identifyer
    Textbox URL
    Textbox Enter Resource 1
    Textbox Enter Resource 2
    Textbox Enter Resource 3
    Textbox Enter Resource 4
    Textbox Enter Resource 5
    It's putting the combo box in the first text field...it should be
    ComboBox with Sequence showing
    URL Textbox
    Enter Identifyer Textbox
    Enter Resource 1 Textbox
    Enter Resource 2 Textbox...
    Here is my code:
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import dl.*;
    * Dialog to enter container information
    public class AddContainer extends JDialog {
    private JTextField valueBox1;
    private JTextField valueBox2;
    private JTextField valueBox3;
    private JTextField valueBox4;
    private JTextField valueBox5;
    public String value1;
    public String value2;
    public String value3;
    public String value4;
    public String value5;
    private JTextField identifyerBox;
    private JTextField URLBox;
    private JTextField attrBox;
    public String identifyer;
    public String URL;
    public int choice;
    * Constructor.
    public AddContainer(Frame parent) {
    super(parent, "Add Container", true);
    JPanel pp = new JPanel(new DialogLayout2());
    pp.setBorder(new CompoundBorder(
    new EtchedBorder(EtchedBorder.RAISED),
    new EmptyBorder(5,5,5,5)));
    String[] ContStrings = {  "Sequence", "Bag", "Alternative" };
    // Add action listener.
    ActionListener contlst = new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    JComboBox cb = (JComboBox)e.getSource();
    int choice = (int)cb.getSelectedIndex();
    //Create the combo box, select the item at index 0.
    //Indices start at 0, so 2 specifies the Alternative
    JComboBox ContList = new JComboBox(ContStrings);
    ContList.setSelectedIndex(0);
    ContList.addActionListener(contlst);
    //Add combo box to panel.
    pp.add(ContList);
    pp.add(new JLabel("Enter Identifyer"));
    identifyerBox = new JTextField(16);
    pp.add(identifyerBox);
    pp.add(new JLabel("URL"));
    URLBox = new JTextField(16);
    pp.add(URLBox);
    pp.add(new JLabel("Enter Resource 1"));
    valueBox1 = new JTextField(25);
    pp.add(valueBox1);
    pp.add(new JLabel("Enter Resource 2"));
    valueBox2 = new JTextField(25);
    pp.add(valueBox2);
    pp.add(new JLabel("Enter Resource 3"));
    valueBox3 = new JTextField(25);
    pp.add(valueBox3);
    pp.add(new JLabel("Enter Resource 4"));
    valueBox4 = new JTextField(25);
    pp.add(valueBox4);
    pp.add(new JLabel("Enter Resource 5"));
    valueBox5 = new JTextField(25);
    pp.add(valueBox5);
    JPanel p = new JPanel(new DialogLayout2());
    p.setBorder(new EmptyBorder(10, 10, 10, 10));
    p.add(pp);
    ActionListener lst = new ActionListener() {
    public void actionPerformed(ActionEvent evt) {
    identifyer = identifyerBox.getText();
    URL = URLBox.getText();
    value1 = valueBox1.getText();
    value2 = valueBox2.getText();
    value3 = valueBox3.getText();
    value4 = valueBox4.getText();
    value5 = valueBox5.getText();
    dispose();
    JButton saveButton = new JButton("ADD");
    saveButton.addActionListener(lst);
    getRootPane().setDefaultButton(saveButton);
    getRootPane().registerKeyboardAction(lst,
    KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),
    JComponent.WHEN_IN_FOCUSED_WINDOW);
    p.add(saveButton);
    JButton cancelButton = new JButton("Cancel");
    lst = new ActionListener() {
    public void actionPerformed(ActionEvent evt) {
    dispose();
    cancelButton.addActionListener(lst);
    getRootPane().registerKeyboardAction(lst,
    KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0),
    JComponent.WHEN_IN_FOCUSED_WINDOW);
    p.add(cancelButton);
    getContentPane().add(p, BorderLayout.CENTER);
    pack();
    setResizable(false);
    setLocationRelativeTo(parent);

    Seems the problem is in your DialogLayout2 class which must be in package dl. I tried a grid layout and got something that looks like what you described. I laid out pp with a gridbag layout.
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    //import dl.*;
    * Dialog to enter container information
    public class jello extends JDialog {
      private JTextField valueBox1;
      private JTextField valueBox2;
      private JTextField valueBox3;
      private JTextField valueBox4;
      private JTextField valueBox5;
      public String value1;
      public String value2;
      public String value3;
      public String value4;
      public String value5;
      private JTextField identifyerBox;
      private JTextField URLBox;
      private JTextField attrBox;
      public String identifyer;
      public String URL;
      public int choice;
      * Constructor.
      public jello(JFrame parent) {
        super(parent, "Add Container", true);
        GridBagLayout gridbag = new GridBagLayout();
        GridBagConstraints gbc = new GridBagConstraints();
        JPanel pp = new JPanel(gridbag);
                            //(new GridLayout(0,2));
                            //(new DialogLayout2());
        pp.setBackground(Color.red);
        pp.setBorder(
          new CompoundBorder(
            new EtchedBorder(EtchedBorder.RAISED),
            new EmptyBorder(5,5,5,5)));
        String[] ContStrings = { "Sequence", "Bag", "Alternative" };
        // Add action listener.
        ActionListener contlst = new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            JComboBox cb = (JComboBox)e.getSource();
            int choice = (int)cb.getSelectedIndex();
        //Create the combo box, select the item at index 0.
        //Indices start at 0, so 2 specifies the Alternative
        JComboBox ContList = new JComboBox(ContStrings);
        ContList.setSelectedIndex(0);
        ContList.addActionListener(contlst);
        //Add combo box to panel.
        gbc.insets = new Insets(2,2,2,2);
        gbc.anchor = gbc.WEST;
        gbc.gridwidth = gbc.REMAINDER;
        pp.add(ContList, gbc);
        gbc.anchor = gbc.EAST;
        gbc.gridwidth = gbc.RELATIVE;
        pp.add(new JLabel("Enter Identifyer"), gbc);
        identifyerBox = new JTextField(16);
        gbc.anchor = gbc.WEST;
        gbc.gridwidth = gbc.REMAINDER;
        pp.add(identifyerBox, gbc);
        gbc.anchor = gbc.EAST;
        gbc.gridwidth = gbc.RELATIVE;
        pp.add(new JLabel("URL"), gbc);
        URLBox = new JTextField(16);
        gbc.anchor = gbc.WEST;
        gbc.gridwidth = gbc.REMAINDER;
        pp.add(URLBox, gbc);
        gbc.anchor = gbc.CENTER;
        gbc.gridwidth = gbc.RELATIVE;
        pp.add(new JLabel("Enter Resource 1"), gbc);
        valueBox1 = new JTextField(25);
        gbc.gridwidth = gbc.REMAINDER;
        pp.add(valueBox1, gbc);
        gbc.gridwidth = gbc.RELATIVE;
        pp.add(new JLabel("Enter Resource 2"), gbc);
        valueBox2 = new JTextField(25);
        gbc.gridwidth = gbc.REMAINDER;
        pp.add(valueBox2, gbc);
        gbc.gridwidth = gbc.RELATIVE;
        pp.add(new JLabel("Enter Resource 3"), gbc);
        valueBox3 = new JTextField(25);
        gbc.gridwidth = gbc.REMAINDER;
        pp.add(valueBox3, gbc);
        gbc.gridwidth = gbc.RELATIVE;
        pp.add(new JLabel("Enter Resource 4"), gbc);
        valueBox4 = new JTextField(25);
        gbc.gridwidth = gbc.REMAINDER;
        pp.add(valueBox4, gbc);
        gbc.gridwidth = gbc.RELATIVE;
        pp.add(new JLabel("Enter Resource 5"), gbc);
        valueBox5 = new JTextField(25);
        gbc.gridwidth = gbc.REMAINDER;
        pp.add(valueBox5, gbc);
        JPanel p = new JPanel();//(new DialogLayout2());
        p.setBackground(Color.blue);
        p.setBorder(new EmptyBorder(10, 10, 10, 10));
        p.add(pp);
        ActionListener lst = new ActionListener() {
          public void actionPerformed(ActionEvent evt) {
            identifyer = identifyerBox.getText();
            URL = URLBox.getText();
            value1 = valueBox1.getText();
            value2 = valueBox2.getText();
            value3 = valueBox3.getText();
            value4 = valueBox4.getText();
            value5 = valueBox5.getText();
            dispose();
        JButton saveButton = new JButton("ADD");
        saveButton.addActionListener(lst);
        getRootPane().setDefaultButton(saveButton);
        getRootPane().registerKeyboardAction(lst,
          KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, 0),
          JComponent.WHEN_IN_FOCUSED_WINDOW);
        p.add(saveButton);
        JButton cancelButton = new JButton("Cancel");
        lst = new ActionListener() {
          public void actionPerformed(ActionEvent evt) {
            dispose();
        cancelButton.addActionListener(lst);
        getRootPane().registerKeyboardAction(lst,
          KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE, 0),
          JComponent.WHEN_IN_FOCUSED_WINDOW);
        p.add(cancelButton);
        parent.getContentPane().add(p, BorderLayout.CENTER);
        parent.pack();
        parent.setResizable(false);
    //    setLocationRelativeTo(parent);
        parent.setVisible(true);
      public static void main(String[] args) {
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        new jello(frame);
        frame.setLocation(0,200);
    }

  • Adobe Reader app on my ipad air problem with combo boxes filling in

    I am using Adobe Reader app on my ipad air and when filling out forms, and making a selection from a combo box, my selection dissappears.  Not visible, not printable, not savable, just blank.  It works well on my Reader on my Windows desktop.  Any ideas?

    cas ecowater,
    We can examine your PDF forms and determine the cause of the problem.
    Would you send the PDF forms as email attachments to [email protected]?  Please include the link to this forum post (https://forums.adobe.com/thread/1634405) in your email message for reference.
    Thank you.

  • PROBLEM WITH COMBO BOXES..

    HI,
    I AM HAVING TWO COMBO BOXES>>
    COMBO1------ DEPT NAME
    COMBO2------EMPLOYEE NAMES
    I AM COLLECTING DATA OF COMBO1 FROM THE DATABASE.....DEPENDING UPON THE FIRST COMBO i.e DEPT NAME...USING THAT DEPT NAME I HAVE TO COLLECT EMPLOYEES NAMES DATA FROM THE DATABASE AND PLACED IN COMBO2 >>....
    ANY PLS HELP ME......
    I WANT FULL CODE FOR THAT......

    You do this by combining JSPs with a central servlet. I don't know how to do it with just one JSP on its own.
    The JSP does a <form> POST to the servlet. The servlet fetches the combo box values into a List, puts it into request scope, and forwards the response back to the JSP. The JSP gets the List out of request scope and populates the drop-down. You do the same thing when there's a selection in the drop-down: onChange does a POST back to the servlet, which gets the selected value as a parameter, takes the appropriate action, and forwards the response with new data in request scope back to the JSP.
    The trick is to have the data in request scope so the JSP can get it. I think you need a servlet to do that.

  • Small Problem with Combo Boxes

    Hi again everyone
    I am currently trying to add results to a Java league system.I am trying to update the number of games played for the team that has been selected by the combo box1 but it will will not compile
    The code for this is below
    newLeague.getTeams()[jComboBox1.getSelectedItem()].setGP() = newLeague.getTeams()[jComboBox1.getSelectedItem()].setGP() +1;
    Any help is greatly appreciated
    Thanks

    Thanks for your response
    I have tried that code but there are 4 compilation errors
    UpdateLeague.java [103:1] incompatible types
    found : java.lang.Object
    required: int
    newLeague.getTeams()[jComboBox1.getSelectedItem()].setGP(newLeague.getTeams()[jComboBox1.getSelectedItem()].getGP()+1);
    ^
    UpdateLeague.java [103:1] cannot resolve symbol
    symbol : method getGP ()
    location: class Team
    newLeague.getTeams()[jComboBox1.getSelectedItem()].setGP(newLeague.getTeams()[jComboBox1.getSelectedItem()].getGP()+1);
    ^
    UpdateLeague.java [103:1] incompatible types
    found : java.lang.Object
    required: int
    newLeague.getTeams()[jComboBox1.getSelectedItem()].setGP(newLeague.getTeams()[jComboBox1.getSelectedItem()].getGP()+1);
    ^
    UpdateLeague.java [103:1] cannot resolve symbol
    symbol : method setGP (java.lang.String)
    location: class Team
    newLeague.getTeams()[jComboBox1.getSelectedItem()].setGP(newLeague.getTeams()[jComboBox1.getSelectedItem()].getGP()+1);
    ^
    4 errors
    Errors compiling UpdateLeague.
    The method code is below
    private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
    int x,y;
    x = 0;
    y = 0;
    try
    String s = jTextField1.toString();
    String t = jTextField2.toString();
    x = Integer.parseInt(s);
    y = Integer.parseInt(t);
    catch (NumberFormatException e){
    if (x > y )
    newLeague.getTeams()[jComboBox1.getSelectedItem()].setGP(newLeague.getTeams()[jComboBox1.getSelectedItem()].getGP()+1);
    else
    if (x == y)
    else
    if (y > x)
    }

  • "Paste" problem in Combo box...

    I have a number of forms with combo boxes in them. These Combo Boxes contain addresses. I want to "add" and "item" to the list.
    When I try, it will only let me phsically type the addess into the add item box!
    I have a dozen forms I need to add the exact same address to. PLEASE tell me this is some kind of sick joke that you cannot use a *basic* windows convention to "paste" into an input box!!!??? Please tell me that I am missing something very basic here. Adobe was supposed to *save* time, not waste it!
    This problem is also compunded by the fact that there is no option to center items entered into the form from the drop-down list! So I have to manually add spaces to get it close to centered. C'mon guys.... where is the justification optin for this?
    HELP!

    OK, there is a first time for everything....
    Seems the computers in question have a little utility installed called "Pure Text". I have used this with no compatibility problems - until now. What it does is provide a key-stroke method for cuting and pasting only the text - so it strips out all formatting.
    For whatever reason, this utility does not work with Actobat Standard 9. As soon as I exit the utility (it loads on boot), then pasting works just fine.
    I have already e-mailed the Author.
    Double checked the "appearance" tab - no alignment options there.
    Live & learn! Now it's getting close to lunch... where are those crows...

  • I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    You are absolutely right.  Thought Enter meant Enter.  I was wrong.  Thank you for the help.
    Rod Rogers, Broker
    Accredited Land Consultant (ALC)
    Metcalf Land Company, Inc.
    Office: 864-585-0444
    Mobile: 864-316-0297
    Fax: 864-583-6000
    <http://www.metcalfland.com> www.metcalfland.com

  • Help with Combo box

    I am having problems with displaying items on a combo box.
    The combo box will allow a user to select a fixed list of values for a database column.
    I created the combo box and set the dataItemUsageMode property in the property inspector to "USE FOR UPDATE". The list is bound to the corresponding column of the query RowSetInfo.
    In the code, I hard coded the items to be displayed using comboboxName.addItem(). When I run the form, the list of hard coded values shows up. However, when I select an item, the selected item is not displayed on the screen.
    Could anyone tell me what I am doing wrong?
    null

    I had a problem like this when I inserted a new row into the given Rowset.
    Try setting initial value for the attribute that you are using for update.
    eg. if you have this:
    comboBoxControl1.setDataItemNameForUpdate("infobus:/oracle/sessionInfo1/rowSetInfo1/Status");
    comboBoxControl1.addItem(new String("Silver"));
    comboBoxControl1.addItem(new String("Gold"));
    comboBoxControl1.addItem(new String("Platinum"));
    set the attribute as follows:
    StatusrowSetInfo1.getImmediateAccess().setValue(new String("Silver"));
    or any other way you can set that attribute.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by kms98 ():
    I am having problems with displaying items on a combo box.
    The combo box will allow a user to select a fixed list of values for a database column.
    I created the combo box and set the dataItemUsageMode property in the property inspector to "USE FOR UPDATE". The list is bound to the corresponding column of the query RowSetInfo.
    In the code, I hard coded the items to be displayed using comboboxName.addItem(). When I run the form, the list of hard coded values shows up. However, when I select an item, the selected item is not displayed on the screen.
    Could anyone tell me what I am doing wrong? <HR></BLOCKQUOTE>
    null

  • Problem with combo in js IE - new Option(t,v) not working

    hello! Did somene had experience some problems with
    adding new options in select object (combo box) in javascript? I can change text or value property, delete option by setting it to null, but when I want to add new, there is a problem!?
    why this code doesn't work?
    <script>
    ref = window.document.frmExample["cbo1"];
    alert(ref.length);
    ref.options[ref.length] = new Option("text'","value1");
    alert(ref.length);
    </script>
    interesting thing is that this works in Netscape (6), but it is not working in IE(5.5), and this is my first and last example where Netscape is 'better'...
    Can someone help, please?
    regards...
    Vlada

    you are right, it works in the 'mother' page, but if I want to add some options from popup window (window.open...), and when I accessing combo throught opener propery, than I have problem, because it is not working!?
    code sample...
    ... 'mother' page function ...
    function fAdd(){
    var popupW;
    popupW = window.open("page.html","name",attr);
    if (!popupW.opener)
    popupW.opener = window;
    ... popup window function...
    function fClick(){
    var opt;
    var ref = window.opener.document.frmExample1["cbo1"];
    alert(ref.length);
    opt = "new";
    ref.options[ref.length] = new Option(opt,opt);
    window.close();
    I get alert with the number ofoptions in combo, so ref is OK. I can delete some of them, change, but not to add new! Then I get Error message.
    any sugestion!? Strange, but it works in Netscape ...

  • Problems with text box borders, tabbing and saving doc in Acrobat Pro 7.1.0

    When I view my form document in Acrobat Reader, there is a red border around several text boxes
    in which I've selected 'NO border'
    Also, I've selected 'column order' for tabbing, but tabs continue to function in order in which I inserted form item (text box, check box or radial button). Since I didn't insert these consecutively, tabs no jump all around the form instead of proceeding in order from top to bottm and left to right.
    I've checked for Mac Acrobat Pro updates and see that there are three  - 7.1.1, 7.1.3, and 7.1.4, and am downloading them for install.
    Do any of the updates fix these problems? Or how can it be fixed?
    On opening document in Reader, I also get a message informing that document cannot be saved with changes and must be printed, even though I've created it with fillable forms.
    Is there some setting for allowing document to be saved?
    I want to be able to have recipient be able to download form, fill it out, save changes, attach to email and return it to me.

    This has been a problem since version 8 on the mac. Acrobat 7 on the mac worked fine with the right side trim but not on the PC.
    We are still having this problem with Acrobat 9.4.0 on the Mac & PC.
    This has now been an issue for 2 versions of Acrobat Pro.(8 & 9)
    Being in Pre Press and having to constantly set the trim for jobs, this is now taking up too much time and costing money.
    Please fix this Adobe.
    and on another note. how hard would it be to display the trim (if set) next to where the page size is?
    If the trim is set it should display it! why should we have to go to document/crop pages>trim.
    Im in a busy Pre Press Dept and the amount of times you have to check a trim size is stupid.
    I always set prefs to display crop / trim / and bleed boxes and this helps but it should display it if its set.
    Thanks
    Hope this is resolved soon.

  • Problem w/"combo boxes" cause the user to double click for the dropdown menu, but not for everyone.

    I have created a form with Adobe Acrobad Pro 9.
    There are a few "drop-down" boxes for people to choose options from.  I created them with the "Combo box" option.  They work perfectly fine on my laptop (Lenovo T500 windows 7, with all updates up to date.)  I sent the file to another exact same computer and that's when the problem came up.  When you click on the drop-down, the list will quickly appear and then disappear.  Then if you click it again it will stay open so you can choose your option.  However this only happens on "some" computers but not everyone's.  I emailed the exact same form out to other people in my office and they do not have any problems with the form.  There is no need to double click the drop down, it will just open up properly for them.
    Has anyone come across this? And if so, is there maybe a setting on these specific laptops that is preventing the "combo box" to not work properly?  I need to use this specific laptop as a "Kiosk" like a "check out" station for users to fill out the form to check out equipment.  I will be running in Reader so people can not make changes to the form.  (both the Acrobat Pro 9 version and the (most up to date) Reader version of the PDF form does the same "double-click" problem)  I need a date drop down and an equipment type drop down.
    Any suggestions would be greatly appreciated !
    Thanks !

    I've got this kind of problem with a form of mine (designed with LCD) :
    - combo boxes with font-color changing event handlers on :enter
    - on Acrobat 9 Pro : no problem
    - on Reader 8.3 :
          - first click seems to execute the event handler but stops the combo's opening
          - second click does open the combo
    Do you have event handlers on combo:enter ?
    Could the difference between comps where it works and comps where it doesn't be Acrobat's version ?

  • Combo box in a table column

    I have dragged and dropped one of my view objects as a table on a JClient form. Is there a way I can show one of the columns as a combo box?
    Milos

    URGENT!!!!!!!! Using a topic title like "URGENT" followed by exclamations is one sure way to not get an answer from people on the forum.
    This is urgent... Not for us it isn't. Implying that your question is any more important than any other question on the forum is another way to not get a response.
    Anyway your question is like big run on sentence and I have no idea what you are asking or what your problem is or what your code looks like.
    If you need further help then you need to create a [url http://homepage1.nifty.com/algafield/sscce.html]Short, Self Contained, Compilable and Executable, Example Program that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    And don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • Having trouble with combo box in action script 3

    I have created a combo box in action script 3.0 and have some things working and others not. I am creating a store for shirts, caps, etc..... so need different things and rates. Can anyone help me?
    [email protected]

    Creating a STORE for my website and used combo buttons with types of shirts for one button, 2nd button with color, and third with sizes.
    Using Action Script 3.0 making these work and having trouble.
    HELP meaning if you can connect to my computer remotely and see where my problem is. I am happy to pay if works.

  • Filtering my DataGridView with Combo Boxes

    Hello everyone! I have recently started working with windows form application and I must say it is really
    awsome! I have came up with a project but I came across a little problem and I hope some of you might help me!
    I have established a local database and managed to connect it to a DataGridView, awsome I can see my database
    in my windows form! I have also made 7 combo boxes, each with its strings in it, then i added a button that should filter the data grid view according to the strings the user selected in the combo boxes. My question is, how do i do that? I mean how do i make
    the button fillter my DataGridView according to the strings selected in my combo boxes?
    Hope for a quick answer, sorry for my english and lack of knowledge in windows form!

    Maybe you could go this way:
    Populate the combobox manually, first adding "All", then adding the items from industryGroupsDataSet.Tables[0].
    Add a BindingSource between companiesDataSet.Tables[0] and dataGridView1.DataSource.
    In the SelectedIndexChanged event of the combobox, alter the Filter property of the BindingSource. If the selected index is zero ("All"), set the Filter to null, otherwise set the filter to String.Format("groupID = '{0}'", cmbBxGroupFilter.SelectedValue).
    You may also have a look at these too:
    filtering data from a
    data table to populate combo box on a datagridview based on the user selection
    How to search the datagridview
    based on values selected in combo box, just like a search based on combo box values
    Happy Coding!

Maybe you are looking for

  • Material Master Update through BAPI - Follow up material not updated

    Hi Experts, I am updating the material master through a custom transaction using the BAPI  'BAPI_MATERIAL_SAVEDATA'. Rest of the fields are updating correctly except for discontinuation ind., effective out date & follow-up material. When I try to upd

  • Can connect at the Apple Store, but no longer at my home

    Hi, After I "reset" my network settings on my ipT, I can no longer connect to my home network. I had an appt with the Genius Bar today and the ipT connected fine to the Apple network. They told me to reset my router at home. I came home and did that.

  • Unable to change Security Questions

    So today I decided to make a purchase on a game I've been enjoying for a while now, however to do so I need my security questions I sorted over two years ago, so I have no clue what they could be. I've added a rescue e-mail onto my account as in http

  • Embedding a Captivate 7 SWF into a Captivate 7 project causing error "R6025".

    Good day, I am wondering if anyone else has encountered this issue and how it was resolved (if at all). Recently, one of our clients contacted us to request we resend a source file (originally built with Captivate 6) due to perceived file corruption.

  • Upgrading from 10.2 to 10.3

    I am trying to update from 10.2 to 10.3 and I need to update my firmwere how do i do this