How many JComboBox in my panel?

Hi,
I'm writing a simple JPanel which contains three JComboBox, one for the day, one for the month and one for the year. It works fine and the constructor is the following:
public class DatePanel extends JPanel implements ItemListener{
     * The combobox for the day.
    protected JComboBox comboDay = null;
     * The combobox for the month.
    protected JComboBox comboMonth = null;
     * The year.
    protected JComboBox comboYear = null;
     * A flag that indicates if the user has manually changed the date.
    protected boolean dateHasChanged = false;
     * Creates and set up each component of this panel.
    protected void setUpGUI(){
     // get the current date
     Calendar today = Calendar.getInstance();
     // create the components
     this.comboDay = new JComboBox();
     for(int i=1; i<=31; i++)
         this.comboDay.addItem(i);
     this.comboMonth = new JComboBox();
     for(int i=1; i<=12; i++)
         this.comboMonth.addItem(i);
     this.comboYear = new JComboBox();
     int currentYear = today.get(Calendar.YEAR);
     for( int i= (currentYear - 60); i< (currentYear + 5); i++)
         this.comboYear.addItem(i);
     // add the null values
     this.comboDay.addItem("--");
     this.comboMonth.addItem("--");
     this.comboYear.addItem("--");
     this.comboDay.setSelectedItem("--");
     this.comboMonth.setSelectedItem("--");
     this.comboYear.setSelectedItem("--");
     // add the listener
     this.comboDay.addItemListener(this);
     this.comboMonth.addItemListener(this);
     this.comboYear.addItemListener(this);
     // display components
     this.setLayout( new FlowLayout() );
     this.add(this.comboDay);
     this.add(this.comboMonth);
     this.add(this.comboYear);
     * Builds a panel without initializing it with a specific date.
    public DatePanel(){
     super();
     this.setUpGUI();
    }then I've got a subclass of the above panel which adds two comboes, one for the hour and one for minute. This is also working fine, and I've got a flag that says if the above three comboes should appear or not in the panel:
public class TimePanel extends DatePanel {
     * The comboHour selection combo box.
    protected JComboBox comboHour = null;
     * The comboMinute selection combo box.
    protected JComboBox comboMinute = null;
     * Builds the time panel with the specific comboboxes.
     * @param alsoDates true if also the dates should be visibles
    public TimePanel(boolean alsoDates){
     super();
     this.setUpGUI();
     // shuld the dates be available?
     if( ! alsoDates ){
         this.comboDay.setEnabled(false);
         this.comboMonth.setEnabled(false);
         this.comboYear.setEnabled(false);
         this.remove(this.comboDay);
         this.remove(this.comboMonth);
         this.remove(this.comboYear);
     * Sets up the components.
    @Override
    protected void setUpGUI() {
     super.setUpGUI();
     // add the time components
     this.comboHour = new JComboBox();
     for( int i=0; i<24; i++ )
         this.comboHour.addItem(i);
     this.comboHour.addItemListener(this);
     this.comboMinute = new JComboBox();
     for(int i=0; i<60; i++)
         this.comboMinute.addItem(i);
     this.comboMinute.addItemListener(this);
     this.add(new JLabel("hh:"));
     this.add(this.comboHour);
     this.add(new JLabel("mm:"));
     this.add(this.comboMinute);
    }As you can see, when I pass false to the constructor of the TimePanel, the comboes of the date panel are removed from the layout of the panel itself, thus showing only the hour and minute ones.
Now I was writing a JUnit test for this, and surprisingly when I run a code like the following:
     TimePanel tp1 = timePanel = new TimePanel(false);
     Component[] components = tp1.getComponents();
     int comboCount = 0;
     // count how many jcombobox there are, since it has been initialized
     // with the time only, it should contain only 2 combobox (hour and minutes)
     for(int i=0;i<components.length; i++ )
         if( components[i] instanceof JComboBox )
          comboCount ++;I found that the number of comboes on my panel are 7[, that is more than the max (5) when all the components are displayed. What is wrong here?
Thanks,
Luca

I found that the problem seems to be in the setUpGui method, that is called from the parent constructor and from the child constructor, thus displaying 7 comboes. But if I remove the call from the child constructor then it seems as the parent comboes are uninitialized and thus I got a nullpointer exception.
If I modify the constructor of the TimePanel into this:
   public TimePanel(boolean alsoDates){
     this.setUpGUI();
     // shuld the dates be available?
     if( ! alsoDates ){
         this.comboDay.setEnabled(false);
         this.comboMonth.setEnabled(false);
         this.comboYear.setEnabled(false);
         this.remove(this.comboDay);
         this.remove(this.comboMonth);
         this.remove(this.comboYear);
    }and explicity call the super.setupgui into the setupgui method
  protected void setUpGUI() {
     super.setUpGUI();
     // add the time components
     this.comboHour = new JComboBox();
     for( int i=0; i<24; i++ )
         this.comboHour.addItem(i);
     this.comboHour.addItemListener(this);
     this.comboMinute = new JComboBox();
     for(int i=0; i<60; i++)
         this.comboMinute.addItem(i);
     this.comboMinute.addItemListener(this);
     this.add(new JLabel("hh:"));
     this.add(this.comboHour);
     this.add(new JLabel("mm:"));
     this.add(this.comboMinute);
    }I got that the hour and minute comboes are added twice, and moreover the day,month and year are not removed. What is the right way to call the setupgui method to do what I'd like?
Luca

Similar Messages

  • How many Java in control panel??

    Would like to know how many Java I should have in add/remove programs (control panel -WinXP)
    There is: Java2 Platform Standard Edition Runtime Environment Version 5.0, SE v1.4 2_13, JavanPlatform, Standard Edition Runtime Environment Version 6.0.30, then Java 2.0 download manager.
    Also,after 6.0.30 installation I have problem with opening .pdf documents from any website. I have Adobe pdf 6.0
    Please help, as I don't know what I should do ! Many thanks.

    Sara84 wrote:
    Would like to know how many Java I should have in add/remove programs (control panel -WinXP)In my opinion, 1 or more. But you could have 0.
    There is: Java2 Platform Standard Edition Runtime Environment Version 5.0, SE v1.4 2_13, JavanPlatform, Standard Edition Runtime Environment Version 6.0.30, then Java 2.0 download manager.Okay
    Also,after 6.0.30 installation I have problem with opening .pdf documents from any website. I seriously doubt this has anything to do with your Java installation.

  • How many steps can be recorded in the History panel?

    In Photoshop, 20 steps can be recorded in the Histroy panel with the defult setting, and we can change the setting to record more or less steps by choosing "Edit> Preference".
    In Lightroom, how many steps can be recorded in the History panel with the defult setting? And how can we change the number of step to be recorded?

    I guess since the history is kept in the database (and not only in memory as with PS), there is not so much an issue in limiting them.
    Beat Gossweiler
    Switzerland

  • How many itens can I put inside a JComboBox or JList?

    How many itens can I put inside a JComboBox or JList?
    Thanks
    Renato de Melo

    Lots. I have put 10,000 in one, for example. !!! ComboBox with 10,000 items how did you solved
    scrolling slow down problem in ComboBox.
    I'm trying for weeks to speed up JComboBox
    what I did was
    1) I've created custom model with sorted
    items and I'm using binarySearch for getting and setting
    items in model this greatly improved performance
    2) I'm using setPrototypeDisplayValue(Object obj)
    function
    but still scrolling with arrow keys and PgUp,PgDown
    is too slow especialy in the end of the list.
    Any ideas ?

  • How many buttons can you have in Encore?

    I'm trying to make a disc containing about 33 separate clips, all listed in the Menu, and individualy selectable. But I find when I drag buttons to the menu,it will only accept 18, then no more buttons can be added.  Is this normal for Encore?  Is there an upper limit to how many buttons you can have?

    Tim,
    I like to keep my Scene Selection Menus rather clean, and lean, so normally limit the number of Buttons for a "cleaner" look, so with, say 16 Chapters/Scenes, I will likely do 4x Scene Selection Menus, with 4 Buttons each, or maybe 3 Menus with 6 Buttons in two, and 4 Buttons in the last one.
    In the Project Panel, you can Duplicate your first Scene Selection Menu, to provide the number of Scene Selection Menus, that you need. I recommend that one Rename each duplicate Scene Selection Menu, so that it is easy to identify each one.
    Then, from the Main Menu, add a Button that goes to the first Scene Selection Menu. Do all the linking, for say the 4 Scene Selection Buttons on that, and then add a "Next Menu" Button, that links to Scene Selection Menu # 2. That one will have the 4 Scene Selection Buttons, and the "Next Menu," going to Scene Selection Menu # 3, plus a "Previous Menu" Button, going back to Scene Selection Menu # 1. [Obviously, you can name those Buttons to suit, say "Next," and "Previous," or perhaps just "arrows" pointing to the right for "Next," and to the left for "Back."
    If, for instance, one has an odd number of Scene Selection Buttons, on the last Scene Selection Menu, just "Edit in Photoshop," and Delete the "extra" Button Layer Sets.
    I also like to add my own Button names in Photoshop, rather than let Encore automatically provide the names per the names of my Timelines. For instance, I name each Timeline in numerical order, so the names will read something like this: "01_Liz_Birthday," "02_Liz_Dance," etc.. On my Scene Selection Menu, I will nave the first Button "Liz's Birthday," the second Button "Liz Dance Recital," etc., without the numerals, that just help me know which Button I will be linking to, in numerical order. I also use Photoshop to edit the Button Layer Sets name, so that Button # 1 is named "01 Liz Birthday." That gives me the numerals in the Buttons' names in my Flowchart - with intricate navigation, that takes all of the guess work out of things - all names match up, and for the Timelines, I do not have any spaces, but do in the Text for each Button. A bit more work, but when it comes time to make my links, I can do it almost instantly, with no questions in my mind. I find that a little bit of preparation at the beginning, simplifies life down the line.
    Good luck, and hope that helps.
    Hunt

  • No matter how many times I start itunes on my pc I have to agree to the terms of service gain and when it does open my settings have all been changed.  why is it doing this and how can I satop it?  reinstalling does not fix it.

    No matter how many times I start itunes on my pc I have to agree to the terms of service again and when it does open my settings have all been changed.  Why is it doing this and how can I stop it?  Reinstalling/repairing does not fix it.

    McAfee AntiVirus by any chance? See the thread Why does iTunes delete my itunesprefs.xml?
    Or it could be an issue with the SC Info folder. See TS1277 - iTunes: Missing folder or incorrect permissions may prevent authorization for details.
    Or a repair install of iTunes from the Programs and Features control panel might fix the problem.
    tt2

  • I'm trying to back up 10.6.8 (snow leopard) and all my files before upgrade to Mavericks.  I have an old but sturdy external hard drive...how many GB available will I probably need to back up the whole thing? thanks!

    I'm trying to back up 10.6.8 (snow leopard) and all my files before upgrade to Mavericks.  I have an old but sturdy external hard drive...how many GB available will I probably need to back up the whole thing? thanks!

    You will need a separate partition unless you plan to use the entire drive. You will need an amount of space somewhat larger than the total space now used on your startup drive. If you select the startup drive's Desktop icon, then press COMMAND-I to open the Get Info window. Used space will be shown in the topmost panel. Add a GB or two to that number to determine how much space you'll need for the backup.
    Do not backup on a drive that has any files you want to keep. You can make a bootable backup as follows:
    Clone using Restore Option of Disk Utility
      1. Open Disk Utility in the Utilities folder.
      2. Select the destination volume from the left side list.
      3. Click on the Restore tab in the DU main window.
      4. Select the destination volume from the left side list and drag
           it to the Destination entry field.
      5. Select the source volume from the left side list and drag it to
          the Source entry field.
      6. Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.

  • How do I position to panels in a single frame?

    Hi,
    Can someone tell me how i can position two panels in a single frame using the BorderLayout class.
    I have included my code below. When it is run it shows two JPanels positioned at the top and the bottom, a text area to the right, a panel in the center and a panel on the left. I want to get the panel on the left - the yellow panel - to be positioned in the lower third of the center panel. I have tried to use the BorderLayout.SOUTH statement - but this positions the panel across the very bottom which causes the bottom JPanel and part of the text area to disappear.
    Can anyone help with this please???
    Many thanks
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Panels extends JFrame implements ActionListener
         private TopPanel topPanel;
         private BottomPanel bottomPanel;
         private JButton open;
         private JButton close;
         private JButton connect;
         boolean openClicked = false;
         boolean closeClicked = false;
         public Panels()
              super("Panels");
              setSize(1000,600);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              setVisible(true);
              Container contentArea = getContentPane();
              topPanel = new TopPanel();
              bottomPanel = new BottomPanel();
              JTextArea textArea = new JTextArea("Text Area",20,20);
              JScrollPane textScroller = new JScrollPane(textArea);
              open = new JButton("Open");
              open.addActionListener(this);
              close = new JButton("Close");
              close.addActionListener(this);
              connect = new JButton("Connect");
              connect.addActionListener(this);
              JPanel topBar = new JPanel();
              topBar.setBackground(Color.red);
              topBar.add(open);
              topBar.add(close);
              JPanel lowerBar = new JPanel();
              lowerBar.setBackground(Color.red);
              lowerBar.add(connect);
              bottomPanel.setPreferredSize(new Dimension(100,100));
              contentArea.add(topPanel);
         contentArea.add(bottomPanel,BorderLayout.WEST);
              contentArea.add(textScroller,BorderLayout.EAST);
              contentArea.add(lowerBar,BorderLayout.SOUTH);
              contentArea.add(topBar,BorderLayout.NORTH);
              setContentPane(contentArea);
    public void actionPerformed(ActionEvent e)
         if(e.getSource() == open)
         openClicked = true;
         topPanel.repaint();
         if(e.getSource() == close)
         {closeClicked = true;
         bottomPanel.repaint();
    class TopPanel extends JPanel
         public TopPanel()
         public void paintComponent(Graphics painter)
              super.paintComponent(painter);
              painter.setColor(Color.white);
              painter.fillRect(0,0,getSize().width,getSize().height);
              if (openClicked == true)
              drawTopMessage(painter);
         public void drawTopMessage(Graphics painter)
              painter.setColor(Color.black);
              painter.drawString("This is the top panel", 20,20);
    class BottomPanel extends JPanel
         public BottomPanel()
         public void paintComponent(Graphics painter)
              super.paintComponent(painter);
              painter.setColor(Color.yellow);
              painter.fillRect(0,0,getSize().width,getSize().height);
              if (closeClicked == true)
              drawBottomMessage(painter);
         public void drawBottomMessage(Graphics painter)
              painter.setColor(Color.black);
              painter.drawString("This is the bottom panel", 20,20);
    public static void main(String[] args)
         Panels example = new Panels();

    One solution would be to create a new panel, bothPanels and adding the two panels that you need to this panel.
    Once you have done that, you can add bothPanels to contentArea.add( bothPanels, BorderLayout.CENTER)
    hth

  • Does anyone know what this error code means?My itunes will not open, no matter how many times i downlaod and restore it??? "The procedure entry point xmlITexTextReaderName could not be located in the dynamic link library libxml2.dlll."

    Does anyone know what this error code means?My itunes will not even open, no matter how many times i downlaod and restore it??? "The procedure entry point xmlITexTextReaderName could not be located in the dynamic link library libxml2.dlll." Please let me know if your know anything! It is greatly apprecitated!

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. Head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (Although the procedure is for Vista and 7 and you've got XP, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever since I did that my itunes won't open any more.  Itunes starts but before anything loads a

  • How would i move a panel in a custom component ?

    Hi All
    I have a custom VGroup component that i am using for navigation on a web application.  In the VGroup i have 6 Panels and inside each Panel between 3 & 10 LinkButtons.  How would i move a Panel to below the first Panel of the VGroup Component, based on which LinkButton the User clicked ?
    This is roughly how my component looks
    <s:VGroup id="appNav">
    <s:Panel id="p1">
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    </s:Panel>
    <s:Panel id="p2">
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    </s:Panel>
    <s:Panel id="p3">
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    </s:Panel>
    <s:Panel id="p4">
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    </s:Panel>
    <s:Panel id="p5">
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    </s:Panel>
    <s:Panel id="p5">
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    <mx:LinkButton />
    </s:Panel>
    </s:VGroup>
    Many Thanks
    Whitetimer

    in your function it should be as simple as appNav.setChildIndex(p4,1);

  • HT3939 how do i find out how many gb my iphone 4 has without a sim?

    how do i find out how many gb my iphone 4 has without a sim?

    Check it through itunes by connecting your device to the computer. Go my device's in the library panel and double click device scroll to bottom of screen and it will show you.

  • XmlDataProvider .... is gone completely in my Xaml file. Why? How many different ways to deal with xml data source through WPF

    I followed a procedure described in a book.
    1. insert "Inventory.xml" file to a project "WpfXmlDataBinding" .
    2. add the XML data source through the data panel of "blend for 2013", named it "InventoryXmlDataStore" and store it in the current document.
    3. dragged and droppped the nodes from the Data panel onto the artboard.
    Then I checked my Xaml file against the one provided by the book
    Xaml file by the book:
    <Window.Resources>
    <!-- This part is missing in my xaml file --><XmlDataProvider x:Key="InventoryDataSource"
    Source="\Inventory.xml"
    d:IsDataSource="True"/>
    <!-- This part is missing in my xaml file -->
    <DataTemplate x:Key="ProductTemplate">
    <StackPanel>
    <TextBlock Text="{Binding XPath=@ProductID}"/>
    <TextBlock Text="{Binding XPath=Cost}"/>
    <TextBlock Text="{Binding XPath=Description}"/>
    <CheckBox IsChecked="{Binding XPath=HotItem}"/>
    <TextBlock Text="{Binding XPath=Name}"/>
    </StackPanel>
    </DataTemplate>
    </Window.Resources>
    <Grid>
    <ListBox HorizontalAlignment="Left"
    ItemTemplate="{DynamicResource ProductTemplate}"
    ItemsSource="{Binding XPath=/Inventory/Product}"
    Margin="89,65,0,77" Width="200"/>
    </Grid>
    my Xaml file:
    <Window x:Class="WpfXmlDataBinding.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="MainWindow" Height="922" Width="874">
    <Window.Resources>
    <DataTemplate x:Key="ProductTemplate">
    <StackPanel>
    <TextBlock Text="{Binding XPath=@ProductID}"/>
    <TextBlock Text="{Binding XPath=Cost}"/>
    <TextBlock Text="{Binding XPath=Description}"/>
    <CheckBox IsChecked="{Binding XPath=HotItem}"/>
    <TextBlock Text="{Binding XPath=Name}"/>
    </StackPanel>
    </DataTemplate>
    </Window.Resources>
    <Grid DataContext="{Binding Source={StaticResource InventoryXmlDataStore}}">
    <ListBox HorizontalAlignment="Left" Height="370"
    ItemTemplate="{DynamicResource ProductTemplate}"
    ItemsSource="{Binding XPath=/Inventory/Product}"
    Margin="65,55,0,0" VerticalAlignment="Top" Width="270"/>     
        </Grid>
    </Window>
    All looks quite the same except the <XmlDataProvider ....> part under <Window.Resources>, which is gone completely in my Xaml file.
    1, Why?
    2, How many different ways to deal with xml data source through WPF?
    Thanks, guys.
    (ps My "WpfXmlDataBinding" runs without problem through.)

    Never do yourself down Richard.
    Leave that to other people.
    It's quite common for smart developers to think they're not as good as they are.
    I coach a fair bit and it's a surprisingly common feeling.
    And to repeat.
    Never use anything ends .. provider.  They're for trivial demo apps.  Transform xml into objects and use them.  Write it back as xml.  Preferably, use a database.
    You want to read a little mvvm theory first.
    http://en.wikipedia.org/wiki/Model_View_ViewModel
    Whatever you do, don't read Josh Smiths explanation.  I used to recommend it but it confuses the heck out newbies. Leave that until later.
    Laurent Bugnion did a great presentation at mix10.  Unfortunately that doesn't seem to be working on the MS site, but I have a copy.  Download and watch:
    http://1drv.ms/1IYxl3z
    I'm writing an article at the moment which is aimed at beginners.
    http://social.technet.microsoft.com/wiki/contents/articles/30564.wpf-uneventful-mvvm.aspx
    The sample is just a collection of techniques really.
    I have a sample which involves no real data but is intended to illustrate some aspects of how viewmodels "do stuff" and how you use datatemplates to generate UI.
    I can't remember if I recommended it previously to you:
    https://gallery.technet.microsoft.com/WPF-Dialler-simulator-d782db17
    And I have working samples which are aimed at illustrating line of business architecture.  This is an incomplete step by step series but I  think more than enough to chew on once you've done the previous stuff.
    http://social.technet.microsoft.com/wiki/contents/articles/28209.wpf-entity-framework-mvvm-walk-through-1.aspx
    The write up for step2 is work in progress.
    https://gallery.technet.microsoft.com/WPF-Entity-Framework-MVVM-78cdc204
    Hope that helps.
    Recent Technet articles: Property List Editing;
    Dynamic XAML

  • 24" iMac - How many colors?

    The specs. for the 24" iMac display state simply "millions of colors." At the same time the specs. for, for example, a 23" cinema display state very specifically "16.7 million colors" (which I believe would be 24 bit color). So my question is, specifically, how many colors will the 24" iMac display really produce?

    Magnitude15 wrote:
    Do you know (or does anyone else know) how to tell if a monitor uses the 8-bit S-IPS panels?
    Is there a label on the monitor or is there a software test available to determine this?
    There are several possibilities:
    1) tftcentral.co.uk has an extensive database that lists LCD panel part numbers
    for many popular monitors. They also have a listing of panel specs -- sorted by
    manufacturer's part number.
    2) The monitor's "viewing angle" specs are a strong clue. 160 degrees or less is
    a fairly sure sign of a TN panel. 178 degrees generally indicates an S-IPS panel;
    panels in the 170-175 degree range are likely to be S-PVA or a similar type of
    high-quality panel. If it's not TN, it's almost certainly an 8-bit panel.
    3) For iMacs, you can download a copy of SwitchResX.app and interrogate the
    panel type with "Export DDC." The last few lines of the DDC information block
    indicate the manufacturer's part number of the panel -- and with that, you can
    find the specs on tftcentral.co.uk.
    4) Google. Online reviews by Xbitlabs.com, tomshardware.com, tftcentral.co.uk,
    etc. often reveal the panel type.
    Looby

  • How many pages have been printed?

    Photosmart Premium Fax AIO c309a.
    Is there a way to find how many pages have been printed?
    I'd like to track page yield, which so far has been way below even totaly miserable.

    How is the printer connected?  If a network connection then you can use the printer's built in web server by entering the IP address in your browser, then click on  "Usage report"  on the left.  If you are connected by USB you could print a report page from the front panel as follows:  Setup, Print report, OK, Print Status Report, OK.  Items 13 and 14 will have page usage information.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • How to find out how many items within folder (and sub folders)?

    Hi all,
    This may be a silly question - but if I have a folder (containing sub folders etc) is there a way to calculate how many file items are within this folder?
    I cant seem to do it using the info panel. And the standard view tells you how many file items are within the folder you are looking at, but not in the sub and sub sub folders etc.
    Thanks for any help!
    Paul

    or maybe
    SuperGetInfo
    http://www.barebones.com/products/super/index.shtml

Maybe you are looking for

  • Purchase order from production order !!  (Missing material no)

    Hi, This purchase order is created directly from production order.( My problem is the material number is no where shown on PO. but when I print it (print preview) i can see the material number along with the Production order number. I am writing a ne

  • Blackmagic only progressive?

    Hi, i use the Blackmagic Decklink 2 with Premiere CS6 and the (HDMI) Videooutput is always progressive. The Sequenzsettings are SONY XDCAM HD422 1080i/p and I use Sony XDCAM mxf files. Decklink 2 works fine with Sony Vegas (progressive AND interlaced

  • Acrobat reader 64bit print issues

    I have 2x networked 64bit PCs using Windows 7. Both will print files to a networked laser printer, but neither will print from a PDF. Am I alone, or is a problem with a solution?

  • OHS restarts automatically with a load test of 1500 users

    Hi All, We have performance issue with OAM 11.1.1.5. We have integrated with peoplesoft with OAM. When we test the users with a load of 1800 concurrent users, OHS gets restart Automatically. Can anyone let me know are there any performance tuning par

  • Setting of listener interface to any abnormal image

    I would like to know is there is a way to set the listener interface to the abnormal images i.e for circles, half circles other than squares/ rectangles since they are default.