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);
}

Similar Messages

  • How do you get the text box text properties dialog box to appear on a MAC?

    how do you get the text box text properties dialog box to appear in Adobe Reader XI on a MAC? I know windows is Ctrl-E but can't figure out what to hit for Mac.

    Right-click the toolbar and you should find it there (including the short-cut, which is probably Cmd+E).

  • Problem of Date format in Parameter dialog box

    This problem happen In Crystal XI but not in version 8.5. When a parameter dialog box showing up it provides a calander for users to select a date. When the user select a date from the calander the prompt alway return a date in the format of (yyyy-mm-dd) regardless of whatever we set in the Windows's "Regional Settings". In our region we set date as dd-mm-yyyy.
    When we edit the date in the parameter field box to dd-mm-yyyy and click OK the prompt complains and says "the date should be in the format of "yyyy-mm-dd"". Why?. Could Business Objects or anyone let me know is there a way to edit option. In our regional our clients are used to with the date format of dd-mm-yyyy. 
    Thanks,
    Robert

    Thank Sastry,
    With an IT professional or a computer expert it does not seem to be a matter as they understand this is just another way to write date but many of our clients already used to with the dd-mm-yyyy and they are not American. If you say this was by design howcome in CR 8.5 the date in this dialog box follows the format in the regional settings. In CR 8.5 when you change date format in regional setting it reflect immediately in the parameter box. Asume what you say is true I would like to ask Business Objects that this is a backward development or just a way to purse every one in this world to follow the American style.
    Come back to the parameter box. Our clients have used our software that uses CR 8.5 for many years. Not all but many of them just type in the date directly to the box. If this can't be fixed how will our support staff tell our customers? I would like to hear something from Business Objects.
    Rob

  • Suggestion: Firefox should not hold up a windows shutdown with a multiple tab close dialog box.

    I did not know where to send a suggestions, so am posting it here. Please redirect this to the appropriate place.
    When I shut down windows and firefox is running with multiple tabs, it pops up a dialog box and prevents windows from shutting down. Last Friday I set the computer to shutdown before leaving work and found that it was still on when I returned to work on Monday. Reason - Firefox.
    I prefer to shutdown computers when I am away for extended period of time to save power.

    I do not have AVG installed.

  • 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 ...

  • Annoying problem with shift key in limit dialog Brio 6.6.4

    <p>My company uses Brio Insight & Designer v6.6.4.  We (meaning almost all users) are encountering an annoying problem whenadding a limit to a query using the limit dialog.  When try toenter a limit value using the shift key, as in Shift T to enter acapital T, the limit value field ends up with a value like"TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT".  Thisis very annoying and widespread problem with us.  It seemed tostart when we upgraded to Win XP SP2.  Is there a solution forother than to "upgrade to the latest version"?</p>

    Unfortunately not. The only way we avoided this issue was to upgrade or write the text into a text editor and cut and paste the text into the section name box.

  • If the "unresponsive script" dialog box appears while another dialog box (e.g. a "Save As" box), the two dialog boxes lock each other out

    FF 7.0.1 on MacOSX 10.6.8 (not this machine!)
    While doing a "Save As", and while the "Save As" dialog box is showing, a second dialog box "unresponsive script" shows up. I can't deal with the "unresponsive script" box as it doesn't have focus, and I can't complete the "Save As" operation because its script has become unresponsive. I end up having to Force-Quit Firefox via the Activity Monitor.
    Any less brutal suggestions?

    figured it out:
    - power off mac and turn back on while holding down Command + R (dont do it on an external keyboard just to be safe)
    - choose the re-install Lion option (I'm sure there is another way to re-install Lion, this is just the way I did it, not saying its the best or only method)
    - DO NOT INSTALL MACBOOK (Mid 2012) Software Update 1.0 - THIS SCREWS ADOBE UP!

  • 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

  • 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

  • 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)
    }

  • Any problems with WL 11gR1 on the same box as WL 10MP1?

    I currently have WebLogic 10MP1 installed on my laptop. I'd like to install WebLogic 11gR1 (10.3.1) on the same box and do some experiments with it, without impacting in any way my 10MP1 installation. In the past, it's usually been very safe to install two versions at the same time in the same BEA distribution, and neither will conflict with each other, although there have been a couple of small exceptions to that. Before I run the 11gR1 installer, I want to be sure I know of any possible issues. Can anyone say whether they've had no issues with installing 10MP1 and 11gR1 at the same time?

    I have not had that explicitly that combination yet. I have 10.3 and 10.3.1 in the same machine but in separate MIDDLEWARE_HOME directories and have had no issues.

  • Problem with CS3 Master Collection on new Box & WinXP

    I just got a new computer, specs given bellow, that I just installed CS3 Master Collection.  The installation was reported as successful but when I try to run any of the CS3 programs (Flash, Photoshop, etc) the process starts (I checked this with Widows Task Manager/Process) but then nothing happens at all.  I haven't been able to find anything like this phenomenon with Google searches so I'm now posting here.
    Sys Specs:
    AMD A10-6800K APU with Radeon HD Graphics
    4.09 GHz, 2.21 GB Ram
    500 GB HD with 166G Free space after CS3 installation.Motherboard is a A55M-E33
    Message was edited by: James Daniel

    Try running the Creative Suite Cleaner Tool, and then try installing again.

  • How to  define and work with bind-variables without the dialog-box ?

    I want to select different tables with the same bind_variables,
    but do want not fill the bind-variables-dialogbox
    everytime I use the select statements
    because I could simple edit and bind this bind-variables once
    at the first select.
    select col1, col2 into :bind1, :bind2 from mybasictable_10 where col3 = 'ABCD':
    select * from mytable_b where b1 = :bind1 and b2 = :bind2 ;
    select * from mytable_c where c1 = :bind1 and c2 = :bind2 ;
    select * from mytable_d where d1 = :bind1 and d2 = :bind2 ;
    select * from mytable_e where e1 = :bind1 and e2 = :bind2 ;
    it doesn't work and I didn't find that in help,
    how does it work in sql-developer ?
    regards

    david,
    back to the root of my question:
    I do use an 10 years old low-end sql / plsql-tool where I can simple and fast do sql-things like that:
    select col1, col2 into :bind1, :bind2 from mybasictable_10 where col3 = 'for_example_ABCD':
    select * from mytable_b where b1 = :bind1 and b2 = :bind2 ;
    select * from mytable_c where c1 = :bind1 and c2 = :bind2 ;
    select * from mytable_d where d1 = :bind1 and d2 = :bind2 ;
    select * from mytable_e where e1 = :bind1 and e2 = :bind2 ;
    I would like to use oracles SQL-Developer instead of this 'old' tool,
    and want to use my 'old' sql / plsql scripts
    but the SQL-Developer in this matter seems is to much complicate to use,
    I can do complex and big things with sql-dev,
    but not simple using bind-variables ;-)( .

Maybe you are looking for

  • How do I transfer pictures from Messages on my iPhone, to iPhoto?

    IPhone 4s, up to date on software. My daughter sends me adorable pix of our granddaughter through Messages. I can't figure out how to get them to transfer to iPhoto, either on my computer <MBPro> or even on the iPhone. Any suggestions? Kris

  • Two  Warehouse can Assigned to one Storage Loc

    Dear All, Is it possible having : "Two  Warehouse can Assigned to one Storage Loc  ?????" If yes how it can be achieved. Regards, Rocky Edited by: Csaba Szommer on Sep 8, 2011 7:46 AM

  • Representation 2 ratios in a query

    Good Morning Gurus, I have the following in a query. I have these 2 ratios defined in the lines in the query and broken down by cost center, and I would like to be represented in the report as follows. PREVENTA                                       

  • Folder with Question Mark, to Apple Icon, to Kernel Screen at Startup.

    At startup Folder with Question Mark, Followed all steps to resolve it to no avail, I try to re-install Snow Leopard and Apple Icon with Grey screen appears, then Kernel screen. I cannot get past the Kernel screen.  No options to click anything, like

  • Missing plugin for youtube video

    i'm trying to add youtube videos to my website in iweb.  when i click on the widget and paste my url, it says "missing plugin."  what do i do?