Applet won't display.

Hi,
This is probably very simple, but I can't get this to work. I am
writing an Applet that will display two panels, the first one being a
panel to display graphics, and the other panel displaying the controls
to manipulate the graphics panel.
Derived from JApplet, my init() method has the following:
Container content=getContentPane();
display = new JPanel();
controls = new JPanel();
displayPanel = new DataDisplayPanel( this );
displayPanel.setPreferredSize(new Dimension( 840, 712 ));
displayPanel.setBackground( Color.BLACK );
display.add( displayPanel );
content.add( display );
content.add( controls );
DataDisplayPanel is just derived from JPanel, with MouseListener
interfaces overriden. I have embedded the applet tag in a webpage (the
relevant code is '<applet code="IceDisplayApplet.class" width="1000"
height="1000">
</applet>'). Now I know that init() is called, as I have a call to
initialise data before the above calls to initialise
the gui are called, and the data init process works just fine.
But when I try and display the applet using appletviewer, I get
nothing at all. Can anyone suggest why?
One thing I do think of was that I have written all my class
declarations in one file, and when I run the compiler,
these of course get split into different files, Class1.class,
Class2.class etc. I have combined these classes into
a jar file and added this is an archive tag in the above applet code
snippet but it still doesn't work. What am I doing wrong? Someone on
another forum suggested to another poster that a .pack() call was
missing, but I have run JApplets without this call, and they work just
fine.
Best wishes
Paul

Have you set the preferred size of the two JPanels, something like
display.setPreferredSize(new Dimension(x, y));
controls.setPreferredSize(new Dimension(x, y));
content.add( display );
content.add( controls );

Similar Messages

  • Parts of applet won't display until later

    I have this very simple applet (a clock) and everything is working the way is should except that the image of my clock won't display until I press one of the buttons.
    here's part of the code:
    public class horlogeVue extends JApplet{
    public void init(){
    Container c = getContentPane();
    c.setLayout(new FlowLayout());
         hourPlus = new JButton("h+");
    ... (more buttons)
    hour = new JLabel("heure");
    minute = new JLabel("minute");
    seconde = new JLabel("seconde");
    c.add(hour);
    hModele = new horlogeModele(this);
    hControle = new horlogeControle(hModele);
    hourPlus.addActionListener(hControle.new hourP());
    public void display(int timeH, int timeM, int timeS){
    time = "heure="+timeH+", minute="+timeM+", seconde="+timeS;
    repaint();
    public void paint(Graphics g){
    super.paint(g);
    g.drawString(time, 100, 75);
    g.drawArc(xcenter-50, ycenter-50, 100, 100, 0, 360);
    g.drawString("9", xcenter-45, ycenter+3);
    g.drawString("3", xcenter+40, ycenter+3);
    g.drawString("12", xcenter-5, ycenter-37);
    g.drawString("6", xcenter-3, ycenter+45);
    xs = (int) (Math.cos(timeS * Math.PI / 30 - Math.PI / 2) * 45 + xcenter);
    ys = (int) (Math.sin(timeS * Math.PI / 30 - Math.PI / 2) * 45 + ycenter);
    xm = (int) (Math.cos(timeM * Math.PI / 30 - Math.PI / 2) * 40 + xcenter);
    ym = (int) (Math.sin(timeM * Math.PI / 30 - Math.PI / 2) * 40 + ycenter);
    xh = (int) (Math.cos((timeH *30 + timeM / 2) * Math.PI / 180 - Math.PI / 2) * 30 + xcenter);
    yh = (int) (Math.sin((timeH *30 + timeM / 2) * Math.PI / 180 - Math.PI / 2) * 30 + ycenter);
    g.drawLine(xcenter, ycenter, xh, yh);
    g.drawLine(xcenter, ycenter, xm, ym);
    g.drawLine(xcenter, ycenter, xs, ys);
    So, yeah, basically how do I display all the stuff in paint as soon as I open my applet?

    To get best help with any problem, I recommend posting an SSCCE rather than 'part of the code'.
    <http://www.physci.org/codes/sscce.html>
    Also, when posting code, using a little indent and [src][src] elements around it (where you would change 'src' to 'code' to show any text between the two as formatted source code) makes it a lot more readable as well.
    But as a general comment on the code. It is not usually a good idea to override the paint() of a root level component, I would recommend a JComponent/JPanel instead.
    The JPanel(JComponent) can then be used in the JApplet, JFrame, JDialog, JOptionPane, JWindow.. as needed.

  • Applet won't display in Internet Browser.

    import javax.swing.JTextField;
    import java.util.ArrayList;
    import javax.swing.*;
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Quiz extends JApplet implements ActionListener {
        int AnswersCorrect=0;
        JTextField textfields[] = new JTextField[18];
        JLabel labels[] = new JLabel[18];
        JLabel score = new JLabel();
        JLabel questions[] = new JLabel[18];
        JFrame frame = new JFrame();
        JScrollPane scroller = new JScrollPane(frame);
        JButton button = new JButton("Check Answers");
        GridLayout layout = new GridLayout();
        //ArrayList that will contain the User's Answers
        ArrayList<String> UsersAnswers = new ArrayList<String>(18);
        //Array of Strings that are the correct answers for the quiz
        String[] answers={
        "Answer 1 goes here",
        "Answer 2 goes here",
        "Answer 3 goes here",
        "Answer 4 goes here",
        "Answer 5 goes here",
        "Answer 6 goes here",
        "Answer 7 goes here",
        "Answer 8 goes here",
        "Answer 9 goes here",
        "Answer 10 goes here",
        "Answer 11 goes here",
        "Answer 12 goes here",
        "Answer 13 goes here",
        "Answer 14 goes here",
        "Answer 15 goes here",
        "Answer 16 goes here",
        "Answer 17 goes here",
        "Answer 18 goes here",};
    public void init() {
    //Makes the components
    for(int ii=0;ii<questions.length; ii++){
        textfields[ii] = new JTextField();
        questions[ii] = new JLabel();
        textfields[ii].setColumns(50);
        questions[ii] = new JLabel((ii + 1) + "." + " Question" + (ii + 1) + " goes here");
        frame.add(questions[ii]);
        frame.add(textfields[ii]);
    button.addActionListener(this);   
    frame.add(button);
    frame.add(score);
    frame.setLayout(layout);
    this.add(frame);
    //frame.add(scroller);
    frame.setVisible(true);
    this.setVisible(true);
    frame.setSize(500,500);
    this.setSize(500,500);
    public void actionPerformed(ActionEvent e){
    //checks to see if button was pressed
    if(e.getSource()==button){
        for(int ans=0; ans<questions.length; ans++){
        //Adds answers to the arraylist so that they can be checked
        UsersAnswers.add(textfields[ans].getText());
        //Checks for right answers
        for(int foo=0; foo<questions.length;foo++) {
            if(answers[foo].equalsIgnoreCase(UsersAnswers.get(foo))) {
            textfields[foo].setText("Correct");
            textfields[foo].setEditable(false);
            AnswersCorrect++;
             else {
            textfields[foo].setText("Incorrect");
            textfields[foo].setEditable(false);
    //Displays the score
    score.setText(AnswersCorrect + "/18");
    }When I run this applet in a browser, I get this error:
    Java Plug-in 1.6.0_13
    Using JRE version 1.6.0_13 Java HotSpot(TM) Client VM
    User home directory = C:\Users\Matthew
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    java.lang.IllegalArgumentException: adding a window to a container
         at java.awt.Container.checkNotAWindow(Unknown Source)
         at java.awt.Container.addImpl(Unknown Source)
         at javax.swing.JViewport.setView(Unknown Source)
         at javax.swing.JScrollPane.setViewportView(Unknown Source)
         at javax.swing.JScrollPane.<init>(Unknown Source)
         at javax.swing.JScrollPane.<init>(Unknown Source)
         at Quiz.<init>(Quiz.java:16)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at java.lang.Class.newInstance0(Unknown Source)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.IllegalArgumentException: adding a window to a container
    I am using this html code to run my applet:
    *<html>*
    *<head>*
    *<title>Lets take a Quiz*
    *</title>*
    *</head>*
    *<body>*
    *<applet code="Quiz.class" width=500 height=500></applet>*
    *</body>*
    *</html>*
    Does anyone know what is wrong?

    Here is what I have now. I think I changed the things you told me to (I am probably wrong), but it is still not working.
    import javax.swing.JTextField;
    import java.util.ArrayList;
    import javax.swing.*;
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Quiz extends JApplet implements ActionListener {
        int AnswersCorrect=0;
        JTextField textfields[] = new JTextField[18];
        JLabel labels[] = new JLabel[18];
        JLabel score = new JLabel();
        JLabel questions[] = new JLabel[18];
        JFrame frame = new JFrame();
        JScrollPane scroller = new JScrollPane();
        JButton button = new JButton("Check Answers");
        GridLayout layout = new GridLayout();
        JPanel panel = new JPanel();
        //ArrayList that will contain the User's Answers
        ArrayList<String> UsersAnswers = new ArrayList<String>(18);
        //Array of Strings that are the correct answers for the quiz
        String[] answers={
        "Answer 1 goes here",
        "Answer 2 goes here",
        "Answer 3 goes here",
        "Answer 4 goes here",
        "Answer 5 goes here",
        "Answer 6 goes here",
        "Answer 7 goes here",
        "Answer 8 goes here",
        "Answer 9 goes here",
        "Answer 10 goes here",
        "Answer 11 goes here",
        "Answer 12 goes here",
        "Answer 13 goes here",
        "Answer 14 goes here",
        "Answer 15 goes here",
        "Answer 16 goes here",
        "Answer 17 goes here",
        "Answer 18 goes here",};
    public void init() {
    //Makes the components
    for(int ii=0;ii<questions.length; ii++){
        textfields[ii] = new JTextField();
        questions[ii] = new JLabel();
        textfields[ii].setColumns(50);
        questions[ii] = new JLabel((ii + 1) + "." + " Question" + (ii + 1) + " goes here");
        panel.add(questions[ii]);
        panel.add(textfields[ii]);
    button.addActionListener(this);   
    panel.add(button);
    panel.add(score);
    panel.setLayout(layout);
    scroller.add(panel);
    this.add(frame);
    frame.getContentPane().add(scroller);
    panel.setVisible(true);
    frame.setVisible(true);
    this.setVisible(true);
    frame.setSize(500,500);
    this.setSize(500,500);
    public void actionPerformed(ActionEvent e){
    //checks to see if button was pressed
    if(e.getSource()==button){
        for(int ans=0; ans<questions.length; ans++){
        //Adds answers to the arraylist so that they can be checked
        UsersAnswers.add(textfields[ans].getText());
        //Checks for right answers
        for(int foo=0; foo<questions.length;foo++) {
            if(answers[foo].equalsIgnoreCase(UsersAnswers.get(foo))) {
            textfields[foo].setText("Correct");
            textfields[foo].setEditable(false);
            AnswersCorrect++;
             else {
            textfields[foo].setText("Incorrect");
            textfields[foo].setEditable(false);
    //Displays the score
    score.setText(AnswersCorrect + "/18");
    }

  • IE won't display my applets!

    Hello,
    I installed the Java SDK on my machine several months ago, and use TextPad to code Java Applets. Everything was working fine when I last checked, but i've recently come back to some of my old applets (havent coded any java for a few months), and when i run them either through TextPad or IE i get a blank white screen with "Applet Started" in the bottom left corner. When the applet is running (in textpad), if i go to the menu and choose restart, the applet will be displayed, but it won't allow me to enter any information into any of the text boxes. I believe I am using SDK 1.502 or something of the like. If anyone could shed any light it would be much appreciated.
    Regards,
    Ben.

    The plot thickens....=)
    I attempted to follow the instructions given in that
    link, but when I opened up Java in control panel it
    appeared as a blank grey box, with only the title
    bar! Maybe i should upgrade my SDK?That is quite an possiblility, which version are you using? Another possibility is your instalation being corrupted for some reason. Are you able to run java applications? Maybe you just have to fix your instalation.

  • Applet won't proceed past "activate" command

    I am unable to work around this any longer.
    I have a script saved as an application bundle:
    (*BEGIN SCRIPT FOR APPLET 1*)
    set BA_ to ((path to me as Unicode text) & "Contents:Resources:BeepApplet.app")
    beep 3
    display dialog "Okay, this dialog shows.  But will the one AFTER the activate command show?"
    tell application BA_ to activate --should cause another 5 beeps, and probably will
    --But will the following dialog show?
    display dialog "Foiled Again?"
    --THE ANSWER IS NO!
    (*END SCRIPT FOR APPLET 1*)
    As you can see, the applet contains a second applet (in the bundle, but it could be anywhere if its path is properly specified).
    When the second applet is called (tell application BA_ to activate), the second applet does its thing properly (provides another 5 beeps), but for me the first applet won't proceed past the "activate" command.
    I've tried calling application BA_ in a variety of ways, but always seem to get the same result.  Is this normal behavior?  Is there a way around it?
    (Here's the very simple underlying script for application BA_:
    beep 5)

    Please see my response to red_menace.  I've indicated that both your and his response were "helpful"
    It appears that my response to red_menace has disappeared.  Basically, it provided a version of the applet script that seems to work;
    (*BEGIN REVISED SCRIPT FOR APPLET 1*)
    set BA_ to ((path to me as Unicode text) & "Contents:Resources:BeepApplet.app")
    beep 3
    display dialog "Okay, this dialog shows.  But will the one AFTER the launch-run command show?"
    tell application BA_ to launch
    tell application BA_ to run
    --But will the following dialog show?
    display dialog "Foiled Again?"
    --THE ANSWER IS (it seems to)!
    (*END REVISED SCRIPT FOR APPLET 1*)
    I also experimented with the load script/run script approach; while promising, it wasn't suited to my purposes.

  • My iPhone 5 won't display smart text options.

    My iPhone 5 won't display smart text. It did when I initially downloaded the new OS, now those options don't appear at all. Did I click something to make them disappear?
    I went into Settings to see if there was a component of it within Messages. I don't see anything.
    Thoughts please.....
    Thanks much
    Ginger

    Awwww......that's it....the dash! I tapped it. Tried to drag it up/down and it didn't move. Now I swiped and it's back!
    So I need to remember to drag up/down and now swipe.....
    Thanks much!
    Ginger

  • ITunes won't display current voice memos from my iPhone 4S. How can I tranfer this data without loosing it?, iTunes won't display current voice memos from my iPhone 4S. How can I tranfer this data without loosing it?

    Please help! My iTunes won't display my voice memos from iPhone 4S when trying to sync data. Files are to large for emailing. I want to back up the files on to my computer.

    JustinV72 wrote:
    How do I get the audiobook onto my iphone without erasing anything?
    You transfer the purchases to the computer you use to sync the iPhone.  You can use a thumb drive or an external HD, etc.  Read this: iTunes for Mac - How to copy purchases between computers:  http://support.apple.com/kb/HT1373

  • I updated to iOS 7 and now some of my apps won't display in landscape mode and they did before the update. Any ideas on how to fix it?

    I updated to iOS 7 and now some of my apps won't display in landscape mode and they did before the update. Any ideas on how to fix it?

    This could be from having restrictions enabled. Icons completely disappear when "restricted"

  • IMac 2.66 Radeon HD 2600 Pro: some Excel files won't display in ppt decks

    Running Leopard 10.5.8 and MS Office 2004
    Two iMac (8.1) 2.66 GHz with ATI Radeon HD 2600 Pro video won't display some Excel files in PowerPoint decks, but iMac 1.83 GHz Core Duo will display o.k. as will MacBook Pro, MacBook, etc. Installing a trial version of Office 2008, both iMac 2.66 GHz display the PowerPoint files o.k.
    I could downgrade the users to Intel iMac 1.83 GHz, or buy two copies of Office 2008 and support them, neither of which is a great solution.
    Looking for a simple fix or workaround on what seems to be a video card issue. Don't seem to see this problem or a fix on the ATI site. I've googled this but haven't run into a similar issue.

    Well, Office 2008 is only $110 USD at http://www.amazon.com/Microsoft-Office-2008-Home-Student/dp/B000X86ZAS/ref=sr11?ie=UTF8&s=software&qid=1251560959&sr=8-1
    That seems the least expensive solution to me.

  • ITunes won't play music and won't display some of my album art.

    iTunes won't play music and won't display some of my album art. I'll click play but the song wont play and some of my album art doesnt appear anymore. When I go on iTunes music store non of the pictures will appear it will just be black where a picture should be. What can i do to fix all of this?????

    I am having the exact same problem and have been trying to solve it for a couple of weeks. So far I havent found a soulution. But if you get one can you please let me know? Good Luck

  • Difficulty using a projector. I have a MBP 17" and am running 10.6.8. Often I need to make a Powerpoint or other presentation  at a client and I want to connect my computer to their projector. Either it won't display on the projector at all. HELP!

    Difficulty using a projector. I have a MBP 17" and am running 10.6.8. Often I need to make a Powerpoint or other presentation  at a client and I want to connect my computer to their projector. Either it won't display on the projector at all. Once it displayed but the presentation mode was on the big screen and the presentation I wanted to show was on my MBP screen. I have the adapter( white ones) to attached to the projector cables.  I am so frsutrated...it looks so silly not to have a computer work during a presentation..
    Another problem one the rare occasion that it shows on the screen is that the presentation does show just my desk top.  Any ideas?
    Thanks !

    You often have to turn off Mirroring to be able to set the second "screen"s resolution to something reasonable. When you do, the two screens become an "Exceeded Desktop" joined along one edge, and the Arrange pane in displays prefs can allow you to specify what edge. Initially, it will show a vacant extension of the built-in screen's desktop.
    The mouse moves freely across that shared edge, and can allow you to drag the presentation window across to the the projector screen and re-size it to fit.

  • Private Photos App - pictures not displaying This app was working fine, then suddenly it won`t display any of the photos.

    This app was working fine, then suddenly it won't display any of the photos. One day the photos were there, gone the next. It still shows how many photos are there but just shows a white screen. I can't export anything to the photo album. Adding photos to existing folders yields the same result, only white screen displayed. However, I can create new albums and add photos to those without issue. Does anybody know how to recover the "missing" photo"  I was going to try reinstalling the app but it's no longer available in the iTunes App Store. Thanks, Tracy

    1, you can't at the moment, though with iOS 5 in the Autumn, from http://www.apple.com/ios/ios5/features.html#photos :
    Even organize your photos in albums — right on your device
    2, by removing it from you synced from and re-syncing. Only photos taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites etc can be deleted directly on the iPad (either via the trashcan icon in the top right corner if viewing the photo in full screen, or via the icon of the box with the arrow coming out of it in thumbnail view)
    3, the location of the photos that you synced to the iPad should be listed on the iPad's Photos tab when connected to your computer's iTunes.
    4, you can copy the photos from your iPad to your computer : http://support.apple.com/kb/HT4083 . You should also be able to delete them from the iPad as part of the transfer process to your computer, and it's then your choice whether to add them to your sync photo list so as to copy them back to the iPad. Copying them to your computer would allow you to organise them into folders and therefore be able to sync them back into separate albums.
    5, I don't use Dropbox either. There are some third-party browser apps in the iTunes App Store that allow you to download pages so that you can view them when offline e.g. Atomic Web (the whole page is saved within Atomic Web, it doesn't place a photo into the Photos app)
    6, deleting content should help. If you remove an app from your iPad then you also remove the content that it's got on the iPad - so if you then decide to reinstall it back onto the iPad then you will need to manually add back any content that you want in it. None of the Apple built-in apps (including Photos) can be removed from the iPad

  • Database field won't display

    I'm new to Crystal Reports in .NET but I do have my 1st report working except for one field that I'm trying to use in a sub report.  It's in my database fields just like the other field for the sub report.  I can see data for both fields in the Browse Data.  One field and it's heading display just fine but I can't see the other one anywhere.  The field heading that's created when I drag it into the Detail area won't display in the report either.  I've tried deleting the field and readding it but nothing helps.  As far as I know I've done nothing to suppress this field from printing.  I REALLY need to get this working.  Thanks for your help.

    Hello Paul,
    I recommend to post this query to the [.NET Development - Crystal Reports|SAP Crystal Reports, version for Visual Studio; forum.
    That forum is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports .NET Development queries remain in one place and thus can
    be easily searched in one place.
    Thanks a lot,
    Falk

  • HP Photosmart Plus B210a all-in-one won't display any networks in the list.

    Hi, I recently purchased a HP Photosmart Plus all in one printer and I've been having trouble with it from day one.
    First off, it won't connect wirelessly.
    It won't display any networks in the list when searched for, it won't take my network details when I manually input them and it won't take any static IP address I've tried from other suggestions.
    Secondly, the print quality is very bad. Streaks and fading are occuring and after using up 70% of my ink trying to sort it out through troubleshooting it's still bad.
    It's extremely important for me to be able to have web access using the printer as all members of my household use it and it'll get fustrating having to car laptops and computers around to print.
    Can anybody help at all?

    Top line says "The wireless radio is not functioning. Contact HP support"
    I take this as a very bad sign and needs replacing?
    The tests I done produce streaks, fading and lines. I printed off two photos, one from a memory card and one from a scan. The memory card produced heavy blocked lines of color and the scan was just dull.
    I'm using a Wanadoo Wireless Livebox and Windows 7 64 Bit
    One other question... is this like a brilliant printer for photos mainly? I'm a Graphics design student and although my final prints are made from home I would like accurate and decent printouts for my portfolios. Should I keep this or go for another one with similar features and better print quality?

  • Over half my albums in iPhoto won't display the enlarged photo. How can I correct this?

    Over half my albums in iPhoto won't display the enlarged photo. How can I correct this?

    There are several possible causes for the Black Screen issue
    1. Permissions in the Library: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Include the option to check and repair permissions.
    2. Minor Database corruption: Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    3. A Damaged Photo: Select one of the affected photos in the iPhoto Window and right click on it. From the resulting menu select 'Show File (or 'Show Original File' if that's available). (On iPhoto 11 this option is under the File -> Reveal in Finder.) Will the file open in Preview? If not then the file is damaged. Time to restore from your back up.
    4. A corrupted iPhoto Cache: Trash the com.apple.iPhoto folder from HD/Users/Your Name/ Library/ Caches...
    5. A corrupted preference file: Trash the com.apple.iPhoto.plist file from the HD/Users/ Your Name / library / preferences folder. (Remember you'll need to reset your User options afterwards. These include minor settings like the window colour and so on. Note: If you've moved your library you'll need to point iPhoto at it again.)
    If none of these help: As a Test:
    Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

Maybe you are looking for

  • Sequence Number for messages

    Hi, I need to implement a sequence number in the target structure for each time a message mapping is executed. As far as i can see on this forum and on sap.help.com it can be easily done with RFClookup inside the message mapping, and best implement s

  • BEx : Day wise report

    Hi Experts , I have a requirement for the report, where for the current week it should display the respective week and then day wise. I have created a variable where it is taking the current week but i need to know how i can make that report display

  • How to post this invoice ?

    Hi, i want to post a vendor invoice with Tcode FB60 because i can't post it with Tcode MIRO (i have a lot of errors due to a PO). - So How to close this PO without invoice it by MIRO ? - and how to regularize GR/IR account ? Please help Regards.

  • MacBook Pro, how to set up duel monitors?

    I have a MacBook Pro from 2011 and I need to connect it to two monitors, how do I do that?

  • NOT SEE BIP FOLDER ASSIGNED BY USING BIEE EXTERNAL DATABASE TABLE AUTHENTIC

    All users using BIEE external database table authentication cannot see the BI Publisher folders and data source assign to their roles. ### Steps to Reproduce ### 1) I create one table in Oracle database to store user name, password, group name and et