JTable question regarding Index/ID's from a VB guy

Greets!
So i am coming from VB6 where i use an ActiveX object table to display data from a SQL database table. When populating the table i include the 'ID' field from the database table as a hidden column. So when a user selects a row, i pull the hidden column's ID# and use that to do whatever (bring up another edit form, etc)
So here i am in Java now, i've been playing with jTable for a while now and seem to be getting the hang of the basics, but when i replicated the above scenario, hiding the ID column had weird results (cursor would dissappear when i scroll over with the arrow keys). I also saw another post where another person said that along with populating the jTable i should also have an array that stores the ID that matches the RowIndex from the jTable itself.
This is the table model that i am using:
public class jTableModel extends AbstractTableModel {
    private double xTotal;
    private int colnum;
    private int rownum;
    private String[] colNames;
    private  ArrayList<Object[]> ResultSets;
    private Icon zIcon;
    /** Creates a new instance of FoodTableModel */
    public jTableModel(ResultSet rs,frmMain frm) {
      ResultSets=new ArrayList<Object[]>(); 
      Icon icon1 = new ImageIcon(getClass().getResource("/main/images/bullet_ball_glass_blue.png"));
      Icon icon2 = new ImageIcon(getClass().getResource("/main/images/bullet_ball_glass_red.png"));
      Icon icon3 = new ImageIcon(getClass().getResource("/main/images/bullet_ball_glass_green.png"));
      try{
        while(rs.next()){
            switch (rs.getInt("Type")) {
                case 1: zIcon = icon1; break;
                case 2: zIcon = icon2; break;
                case 3: zIcon = icon3; break;
            Object[] row={zIcon,rs.getString("Name"),rs.getString("Description"),rs.getString("ID")};
            ResultSets.add(row);
        String[] zNames={
            "","Name","Description","ID"
        colNames = zNames;
        colnum=4;
      catch(Exception e){
          System.out.println("(jTableModel: There was an error: " + e);
    public Object getValueAt(int rowindex, int columnindex) {
       Object[] row=ResultSets.get(rowindex);
       return row[columnindex];
    public int getRowCount() {
        return ResultSets.size();
    public int getColumnCount() {
        return colnum;
    @Override
    public String getColumnName(int param) {
       return colNames[param];
    public double getTotal() {
        return xTotal;
    @Override
    public Class getColumnClass(int column) {
     return getValueAt(0, column).getClass();
    }Can anyone give me any tips in this area or point me in the right direction?
Any help would be appreciated.

Dear Poster,
As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
Best Regards,
SDN SRM Moderation Team

Similar Messages

  • Question regarding index function in fortran

    Hi guys,
    we are currently migrating to F90 from F77 fortran.
    When I link the code, I get link error on index function with f90 compiler, but it works fine with F77.
    Symbol not found error
    __f_index_a dbg/driver.o
    Can you please tell where can I find the symbol definition.
    -Prabhu

    As I mentioned before, the value of a constant that does not fit in the space allocated for it is undefined. Different compilers will handle it differently.
    Sun's f77 compiler was derived from the BSD UNIX f77 compiler, which in turn was derived from AT&T's f77 compiler. AT&T's f77 compiler was written by Stuart Feldman while he was at Bell Labs. Perhaps influenced by the C programming language, he chose to increase the space allocated for an integer constant if its value did not fit in the space that would normally be allocated for it, up to the size of the largest supported integer type.
    Sun's f90 and f95 compilers were derived from the CraySoft f90 compiler. The CraySoft compiler chopped off the high-order bits of integer values that did not fit in the available space.
    Sun's Fortran team recognized that the behavior of Sun f90 and f95 in this regard would be a problem for some users. We devised a scheme that would resolve the problem in most cases. The scheme has been partially implemented, but there is still a lot of work left to be done.
    Robert Corbett

  • Question regarding Exchange ActiveSync migration from Exchange 2003

    Hello,
    I am a bit confused about info about requirements when migrating Exchange ActiveSync (EAS) from 2003 to 2010. Now this question is related to EAS only, forget about other services, such as OWA or Outlook Anywhere, for a while.
    Basically, all migration guides state that you have to configure and setup a legacy url for legacy services for co-existence. Based on that, I have had an understanding that Exchange 2010 CAS cannot proxy EAS users that are still on Exchange 2003, but issues
    a redirect command to EAS client.
    However, this article shows information that, based on my understanding, states that Exchange 2010 CAS DOES proxy EAS clients that are still on 2003: http://blogs.technet.com/b/exchange/archive/2009/12/08/3408985.aspx
    For migration from 2007 EAS to 2010 EAS the article shows redirecting, but not with 2003.
    So my question is: While talking about only EAS, do I need to configure legacy external url/namespace/name resolution or not?
    Thanks for answering!

    Hello,
    I agree with Rajith's suggestion.
    Additional article for your reference.
    http://technet.microsoft.com/en-us/library/bb310763(v=exchg.141).aspx
    Cara Chen
    TechNet Community Support

  • Questions regarding jsp file download from blob

    Hi developers, i'm doing jsp file download from a blob column in DB2 using struts,
    1) How do i design the jsp page such that the page will show perhaps a hyperlink for me to download the file?
    2) What about struts-config.xml? Do i need to modify any mappings there?
    It would be great if some kind developers were to provide some sample codes for me. Thanks alot. Your effort is kindly appreciated.

    http://kr.forums.oracle.com/forums/thread.jspa?threadID=1982213 - looks similar, you may need to change contentType as per use case

  • Question Regarding upgrading weblogic server from 10.3.5 to 10.3.6 in OBIEE

    Here is what was done.
    1) Create a 11.2.0.3 database and create the repositories required from Enterprise BI Install
    2) Install OBIEE 11.1.1.6.0. The option chosen was 'Enterprise Install' which installed and configured the domain and the instance
    3) Shutdown all services and apply Patches to bring the install to 11.1.1.6.8
    The application is working fine. But In production, I plan to the use install method of
    1) Install Weblogic 10.3.6 and Use JRockIt
    2) Install OBIEE 11.1.1.6.0 and plan to choose 'Software Only Install)
    3) Apply the 11.1.1.6.8 patchset.
    4) Configure the doamin.
    Here is what I plan to do in the Development Environment
    1) Just to keep the Version of Weblogic Version, the same in development also, I plan to upgrade the Weblogic in Devlopment install to 10.3.6 as the Weblogic Version that comes with OBIEE install is 10.3.5.
    2) Aslo use the latest version of 64-bit install of JRockit
    Please point me to the documentation that would help me achive this.
    Thanks a ton. This forum is awesome.

    Okay. This might help you then. Refer to :
    1.Upgrade the Weblogic in Devlopment install to 10.3.6 - http://gerardnico.com/wiki/weblogic/patch
    2. Also use the latest version of 64-bit install of JRockit [https://blogs.oracle.com/pa/entry/obiee_11_1_1_steps]
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10539/c4_installing.htm#autoId6
    3. Software only 64 bit install guidelines : http://docs.oracle.com/cd/E23943_01/doc.1111/e14770/biee.htm#CACGIBAE
    Hope this helps.
    Thanks,
    SVS

  • New question regarding iPod Video (converting from a DVD)

    First off...thanks again for those who helped me before. iSwuint seemed to work best for mac conversions for the new ipod. My new question is how to copy a dvd to make it compatible also using a mac. I know there is a program for pc that works, but I am using a g4 laptop. Thanks again in advance.

    The problem seems to be that it is seeing all the chapters as titles. The longest title is 22 min and it is like a hour and a half movie. Has anyone else had this problem.
    HandBrake sometimes has a problem listing all of the titles contained on a DVD. When HandBrake scans the title you may notice that it reads them all but when the list is generated, some entries in the list are omitted. This is likely what happened here. There are two approaches you can try. The first is to switch to an alternate application. The second would be to rip/extract the main title using a separate application like MacTheRipper and then use HandBrake's "browse" function to navigate to the appropriate VIDEO_TS folder files.

  • License questions regarding CUCM/CUC upgrade from 9.1.2 to 10.5.2

    Hi All,
    I am set to upgrade CUCM/CUC cluster and have read the upgrade guides multiple times, just need some input from folks who've actuall done and survived the ordeal.
    I have already installed a stand-alone PLM 10.5 and just need an idea what to expect with license migration once the CUCM/CUC has hurdled through the upgrade.
    After CUCM/CUC has upgraded to 10.5, can I run the migrate license utility via e-fulfillment and UC instance license will automatically/electronically update its license. And if so, how long does this process take.
    Or do I need to send a request to cisco licensing support via the generated request form from migrate licenses tool. Also how long does this process take. 
    Thanks in advance

    Hi,
    are u using standalone or co-resident ELM.Just refer the link
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/cucm/plm/10_5_1/releasenotes/CUCM_BK_P64D2D8C_00_plm-rn-1051/CUCM_BK_P64D2D8C_00_plm-rn-1051_chapter_00.html
    For a standalone Enterprise License Manager deployment, use the Prime License Manager ISO:
    To upgrade to Cisco Prime License Manager Release 10.5(1), use the following ISO file: CiscoPrimeLM_64bitLnx_10.5.1.XXXXX-XX.sgn.iso.
    Where: X represents the specific branch and build number.
    For a co-resident Enterprise License Manager deployment, Enterprise License Manager is upgraded to Cisco Prime License Manager along with your Unified Communications product upgrade.
    You can upgrade a standalone Enterprise License Manager Release 9.1(2) deployment to a standalone Cisco Prime License Manager Release 10.x deployment.
    For co-resident deployments, you can upgrade Enterprise License Manager Release 9.1 to Cisco Prime License Manager Release 10.x with Release 10.x of a Unified Communications application (Cisco Unity Connection or Cisco Unified Communications Manager) upgrade.
    regds,
    aman

  • Hi, I want to downgrade from OSX LEOPARD to OSX TIGER but I have a few questions regarding this. My iMac is originally from 2007 it came preloaded with tiger. I have original install tiger discs version 10.4.10. Is it safe to downgrade or not please help

    Hi, I want to downgrade from OSX LEOPARD to OSX TIGER but I have a few questions regarding this. My iMac is originally from Sep 2007 it came preloaded with tiger. I have original install (2) tiger discs version 10.4.10.  I want to know if it is safe and what are the necessary steps to do so. Also by downgrading im wondering if a lot of apps nowadays support tiger for example I have photoshop version 5 and 4 these are very important to me. One last question does anyone know of any reliable virus protection for mac that doesnt slow down your computer? because I have read that a lot of them do so. If anyone can help me I would greatly appreciate it! Here are the specs for my iMac 
    Model Name:
    iMac
      Model Identifier:
    iMac7,1
      Processor Name:
    Intel Core 2 Duo
      Processor Speed:
    2 GHz
      Number Of Processors:
    1
      Total Number Of Cores:
    2
      L2 Cache:
    4 MB
      Memory:
    2 GB
      Bus Speed:
    800 MHz

    Most of the time a perception of general slow performance is the result of installing third party junk alleged to speed up, "clean" or "optimize" your Mac, or to look for viruses that don't exist. Ideally you would know what you installed so you can uninstall it, but if you don't know or aren't sure there are techniques such as Safe Mode and creating a temporary user account to confirm that suspicion.
    If you open Activity Monitor it may show a process, or processes, that occupy a lot of your system's time.
    Slowness confined solely to web browser activity is often the result of an inexorable progress toward websites that demand ever more processor-intensive tasks. If your slow performance is strictly limited to web browsing, you might try disabling Flash by either uninstalling it, or use utilities such as ClickToFlash that allow you to control what Flash content gets loaded. Flash in itself is not inherently evil, but there is nothing to stop websites or the advertisers who pay for them from writing horrible Flash code that can do everything from hogging 100% of your CPU's time to causing random crashes. You can watch Activity Monitor as in the above to correlate these troublesome web pages with performance degradation.
    You are correct; if your computer shipped with Tiger you may certainly revert to it. I forgot that Tiger was shipping on new Macs as recently as five years ago. To downgrade it would be necessary to completely erase your hard disk and boot with the Tiger installation DVD, followed by installing it anew. Such drastic measures are not necessary and you are unlikely to be satisfied with the results anyway.
    Assuming your system is free of third party parasitic junk attached to OS X in an ill-conceived attempt to improve upon it, that your hard disk drive is sound and the boot volume has enough free space to work with, by far the best performance-enhancing improvement would be to add more memory. Buy as much as your computer can use and that you can afford. 2 GB is not that much any more.
    Read the following for some recommended troubleshooting techniques from Apple:
    General purpose Mac troubleshooting guide: Isolating issues in Mac OS X
    Creating a temporary user to isolate user-specific problems: Isolating an issue by using another user account
    Memory limitations: Using Activity Monitor to read System Memory and determine how much RAM is being used
    Identifying resource hogs and other tips: Runaway applications can shorten battery runtime
    Starting the computer in "safe mode": Mac OS X: What is Safe Boot, Safe Mode?

  • Question regarding Polling data from database using DB Adapters in BPEL

    Hi,
    I have the following question regarding Polling data from database using DB Adapters in BPEL -
    If I am selecting data from multiple tables/view to ultimately generate hierarchical xml document, is there a way that I specify polling all of these tables/views. Is polling limited only to one table/view?
    Thanks
    Ravi

    Hi Ravi,
    your question seems to have been answered for the question of polling a set of tables with one as the root, and getting back a hierarchical xml representing multiple related tables.
    However you can also poll for changes to both the root table and its related tables. Not sure if this was your question or the one already answered. If the former please check out the sample
    bpel/samples/tutorials/122.DBAdapter/advanced/polling/PollingForChildUpdates
    Thanks
    Steve

  • Is anyone from Apple Support reading these questions regarding Numbers for IOS crashing?

    Is anyone from Apple Support reading these questions regarding Numbers for IOS crashing?

    This is a user – user forum.
    Leave Apple feedback here: https://www.apple.com/feedback/numbers_ios.html

  • This question regarding sending mail from sap

    hi to all,
    this question regarding sending mail from sap
    rt now iam able to send mails from 500 clint, what r the setting i need to do send mails from my another client 700,
    iam using ecc 6.0 with sql database
    regards,
    krishna
    Moderator message: FAQ, please search for available information before asking.
    locked by: Thomas Zloch on Aug 16, 2010 2:11 PM

    hi to all,
    this question regarding sending mail from sap
    rt now iam able to send mails from 500 clint, what r the setting i need to do send mails from my another client 700,
    iam using ecc 6.0 with sql database
    regards,
    krishna
    Moderator message: FAQ, please search for available information before asking.
    locked by: Thomas Zloch on Aug 16, 2010 2:11 PM

  • Question regarding buying phone from Amazonwireless

    Hi, I have two questions regarding amazonwireless.
    I have a nationwide 700 family plan and my phone is eligible for an upgrade now.
    Amazonwireless has a good basic phone ( Samsung) that verizon don't have.  If I buy it from Amazon and extend contract for 2 more years, does this work? Will I be moved to new share all plan or keep my old family plan? Or is there a catch?
    My other question is the AmazonWireless Instant Discount Policy, if another line on my family plan upgrades to iphone in a few month ( when it's eligible for upgrade) and adds data plan ( we currently don't have any data plan), would this violate Amazon's policy since the contract is changed? I attached their policy below for reference.
    I know it's a long read, but thank you for helping!
    AmazonWireless Instant Discount Policy
    When you purchase your device with service from AmazonWireless.com, we automatically pass along an instant discount from the carrier to you.  This discount has been provided to you based on your agreement to (a) activate a new, or extend an existing, line of service for this device with the carrier, and (b) maintain this service in good standing for a minimum of 181 consecutive days.  If you do not activate or extend a line of service in connection with this device, or if your service is canceled/disconnected before 181 consecutive days, AmazonWireless.com will charge you $250 per device, plus applicable taxes.

    From the Amazon Wireless FAQ:
    I need a new phone, but my line isn't eligible for an upgrade. Another line in my family account is eligible. Can I get a new phone for my line by using the upgrade of the other line in my family account?
    While carriers may offer the option to swap upgrades between different lines on the same family account, this option isn't available through AmazonWireless. Phones purchased from AmazonWireless must remain on the line upgraded for 181 days. If you move the device to an alternate line within the first 181 days, you'd be subject toadditional charges by AmazonWireless of up to $250 (per phone), plus applicable taxes.

  • Questions regarding upgrade from 4th gen to 5th gen iPod

    I recently received a new 80 gig 5th gen iPod and had 2 questions regarding it and my old 40 gig 4th gen. PC meets minimun requirements and is running XP Pro.
    1) Do I need to do anything before synching the new 5th gen iPod with my existing Library (i.e. uninstall iPod Updater for 4th gen)?
    2) If I don't need to uninstall the 4th gen Updater, can I run both iPods off the same Library, same user (obviously not simultaneously)?
    tia - joggy
    N/A   Windows XP Pro  

    Hey, joggy!
    1) No, I don't believe you do. Be sure to disconnect the 4th gen iPod before connecting the 5th generation iPod to the computer.
    2) Yes, you can.
    There are basically two methods with managing muleiple iPods on one computer:
    Method 1 - Create different Windows users accounts for each resgistered iPod on this computer.
    Method 2 - Create a playlist in iTunes for each iPod.
    To make Method 2 work, connect one of your iPods, and click on it in the left-source panel.
    Under the "Music" tab, and set your option for a specific playlist(s) under the "Sync Music" option.
    Do the same with your other iPod; not connected at the same time, though.
    For more details on this matter, check out Apple's Support article about it:
    How to manage multiple iPods using one computer
    I hope that helps you.
    -Kylene

  • I have some questions regarding setting up a software RAID 0 on a Mac Pro

    I have some questions regarding setting up a software RAID 0 on a Mac pro (early 2009).
    These questions might seem stupid to many of you, but, as my last, in fact my one and only, computer before the Mac Pro was a IICX/4/80 running System 7.5, I am a complete novice regarding this particular matter.
    A few days ago I installed a WD3000HLFS VelociRaptor 300GB in bay 1, and moved the original 640GB HD to bay 2. I now have 2 bootable internal drives, and currently I am using the VR300 as my startup disk. Instead of cloning from the original drive, I have reinstalled the Mac OS, and all my applications & software onto the VR300. Everything is backed up onto a WD SE II 2TB external drive, using Time Machine. The original 640GB has an eDrive partition, which was created some time ago using TechTool Pro 5.
    The system will be used primarily for photo editing, digital imaging, and to produce colour prints up to A2 size. Some of the image files, from scanned imports of film negatives & transparencies, will be 40MB or larger. Next year I hope to buy a high resolution full frame digital SLR, which will also generate large files.
    Currently I am using Apple's bundled iPhoto, Aperture 2, Photoshop Elements 8, Silverfast Ai, ColorMunki Photo, EZcolor and other applications/software. I will also be using Photoshop CS5, when it becomes available, and I will probably change over to Lightroom 3, which is currently in Beta, because I have had problems with Aperture, which, until recent upgrades (HD, RAM & graphics card) to my system, would not even load images for print. All I had was a blank preview page, and a constant, frozen "loading" message - the symbol underneath remained static, instead of revolving!
    It is now possible to print images from within Aperture 2, but I am not happy with the colour fidelity, whereas it is possible to produce excellent, natural colour prints using its "minnow" sibling, iPhoto!
    My intention is to buy another 3 VR300s to form a 4 drive Raid 0 array for optimum performance, and to store the original 640GB drive as an emergency bootable back-up. I would have ordered the additional VR300s already, but for the fact that there appears to have been a run on them, and currently they are out of stock at all, but the more expensive, UK resellers.
    I should be most grateful to receive advice regarding the following questions:
    QUESTION 1:
    I have had a look at the RAID setting up facility in Disk Utility and it states: "To create a RAID set, drag disks or partitions into the list below".
    If I install another 3 VR300s, can I drag all 4 of them into the "list below" box, without any risk of losing everything I have already installed on the existing VR300?
    Or would I have to reinstall the OS, applications and software again?
    I mention this, because one of the applications, Personal accountz, has a label on its CD wallet stating that the Licence Key can only be used once, and I have already used it when I installed it on the existing VR300.
    QUESTION 2:
    I understand that the failure of just one drive will result in all the data in a Raid 0 array being lost.
    Does this mean that I would not be able to boot up from the 4 drive array in that scenario?
    Even so, it would be worth the risk to gain the optimum performance provide by Raid 0 over the other RAID setup options, and, in addition to the SE II, I will probably back up all my image files onto a portable drive as an additional precaution.
    QUESTION 3:
    Is it possible to create an eDrive partition, using TechTool Pro 5, on the VR300 in bay !?
    Or would this not be of any use anyway, in the event of a single drive failure?
    QUESTION 4:
    Would there be a significant increase in performance using a 4 x VR300 drive RAID 0 array, compared to only 2 or 3 drives?
    QUESTION 5:
    If I used a 3 x VR300 RAID 0 array, and installed either a cloned VR300 or the original 640GB HD in bay 4, and I left the Startup Disk in System Preferences unlocked, would the system boot up automatically from the 4th. drive in the event of a single drive failure in the 3 drive RAID 0 array which had been selected for startup?
    Apologies if these seem stupid questions, but I am trying to determine the best option without foregoing optimum performance.

    Well said.
    Steps to set up RAID
    Setting up a RAID array in Mac OS X is part of the installation process. This procedure assumes that you have already installed Mac OS 10.1 and the hard drive subsystem (two hard drives and a PCI controller card, for example) that RAID will be implemented on. Follow these steps:
    1. Open Disk Utility (/Applications/Utilities).
    2. When the disks appear in the pane on the left, select the disks you wish to be in the array and drag them to the disk panel.
    3. Choose Stripe or Mirror from the RAID Scheme pop-up menu.
    4. Name the RAID set.
    5. Choose a volume format. The size of the array will be automatically determined based on what you selected.
    6. Click Create.
    Recovering from a hard drive failure on a mirrored array
    1. Open Disk Utility in (/Applications/Utilities).
    2. Click the RAID tab. If an issue has occurred, a dialog box will appear that describes it.
    3. If an issue with the disk is indicated, click Rebuild.
    4. If Rebuild does not work, shut down the computer and replace the damaged hard disk.
    5. Repeat steps 1 and 2.
    6. Drag the icon of the new disk on top of that of the removed disk.
    7. Click Rebuild.
    http://support.apple.com/kb/HT2559
    Drive A + B = VOLUME ONE
    Drive C + D = VOLUME TWO
    What you put on those volumes is of course up to you and easy to do.
    A system really only needs to be backed up "as needed" like before you add or update or install anything.
    /Users can be backed up hourly, daily, weekly schedule
    Media files as needed.
    Things that hurt performance:
    Page outs
    Spotlight - disable this for boot drive and 'scratch'
    SCRATCH: Temporary space; erased between projects and steps.
    http://en.wikipedia.org/wiki/StandardRAIDlevels
    (normally I'd link to Wikipedia but I can't load right now)
    Disk drives are the slowest component, so tackling that has always made sense. Easy way to make a difference. More RAM only if it will be of value and used. Same with more/faster processors, or graphic card.
    To help understand and configure your 2009 Nehalem Mac Pro:
    http://arstechnica.com/apple/reviews/2009/04/266ghz-8-core-mac-pro-review.ars/1
    http://macperformanceguide.com/
    http://www.macgurus.com/guides/storageaccelguide.php
    http://www.macintouch.com/readerreports/harddrives/index.html
    http://macperformanceguide.com/OptimizingPhotoshop-Configuration.html
    http://kb2.adobe.com/cps/404/kb404440.html

  • Question Regarding Mesh with 3702 and non AC ap´s

    Hello! 
    quick question regarding MESH deployments with 2 different sorts of AP´s: AC and non-AC modells: If my 3702i is my root AP´s, and 3602i my MAP - will AC still work in 80Mhz, or will I have to switch to 40mhz (and thus crippling (???) AC performance?) 
    Not 100% sure on this... I *think* it should still work for the normal 802.11n connection, but I´m not sure if the 80mhz channel width (needed??) for AC, will cause the non-ac 3602i to be stranded? 
    Thanks alot for your insight! 

    Currently, my network DHCP server is a software based DHCP server. In reading over your post if I understood correctly it sounds like the managed switch would have its own hardware based DHCP server to assign IP addresses to those clients identified on the "external" VLAN. Did I understand that correctly or did misread something?
    DHCP server will be software based, even though you defined it on your switch, it is DHCP service running on its OS.
    I am configuring this setup for a small business application and will need to purchase a managed switch with 16 or 24 ports. Do you have any recommendations on a particular managed switch that will handle the VLAN configuration and include POE while keeping costs in mind.
    In this forum, most of us discussed about Cisco enterprise grade wireless. Here is 2960X series switch detail, if you are interested
    http://www.cisco.com/c/en/us/products/switches/catalyst-2960-x-series-switches/index.html
    You may need to check the pricing with your Cisco account manager or from a Cisco partner.
    HTH
    Rasika
    **** Pls rate all useful responses ****

Maybe you are looking for

  • Default Excise and series group

    Dear All, We have maitnain the Excise group and series group defaults for one sales area and shipping point and the plant and series group and excise group. The requirement is with the same combition we are doing local sale and the deemed export.We c

  • Speakers echoing

    I am having a problem with my sound sounding like its echoing.  its not at all the quality of sound that its suppose to sound like. is there any way to change the settings on the sound to make it sound normal?

  • How to restore icons

    How to restore icons purchased ones and the ones that came with ipad

  • Programming and Automator Related Post?

    Hello Mac OS X users, I have some questions regarding programming on Mac OS X with either the Automator app or using the developer tools. Is this an appropriate category to post questions regarding programming on the Mac? If not, where could I post?

  • Photoshop Elements 10 - changing default file time

    When I scan a file in Photoshop Elements 10 the default file type is always BMP.  Is there anyway to make it default to JPEG?  I work with a lot of files and having to change each one is an extra step I would like to get rid of.  Thanks Karen