Are there any init.ora parameters which can't be changed at all ?

DB version: 11gR2
We have the following two types of initialization parameters
Dynamic - Which can be changed without a DB bounce (example CURSOR_SHARING)
Static  - Which can be changed only with a DB bounce (example MEMORY_MAX_TARGET )
Both types of init parameters mentioned above can be changed with or without a DB bounce. Are there any initialization parameters which cannot be changed at all  with or without a DB bounce?

Max wrote:
Oracle documentation which describes init.ora parameters is 'Oracle Database Reference 11gRelease 2'. It doesn't answer my question
Maybe it does.
from DB_BLOCK_SIZE
The value for DB_BLOCK_SIZE in effect at the time you create the database determines the size of the blocks. The value must remain set to its initial value.

Similar Messages

  • Are there any simple photoshop tricks which can help to get rich look to our online inspiration magazine blog?

    We created our online web design inspiration magazine blog a year ago. Just wondering how can we utilize rich look to our blog
    Thanks in advance!

    It sounds to me like you have created a valid MP3, or AAC or some other audio format iTunes can recognize, but you have not yet made an RSS+XML file as described here:
    http://www.apple.com/itunes/store/podcaststechspecs.html
    A file like that should probably work just fine if you open it up with iTunes. On Windows, you may need to make the filename end in .xml or .rss to get it to work right.
    You also could consider installing Apache (http://apache.org) an Open Source (free) web-server which is in use on a majority of "real" web servers on the Internet.
    This would effectively give you your own tiny little Intranet of one (1) computer, so that you could "surf" to your own computer, just like a real website, only not, for testing purposes.
    That's real handy for checking out how something will "flow" on the real website, and can help avoid a lot of pitfalls.
    You do have to be aware that different configurations of web servers can cause different results; but that's generally something that you acquire with experience, and you just re-configure Apache to be more and more like the "real" server you use, in an ongoing behaviour-shaping model -- like working with that problem kid to convert them into the model student. It's not an overnight process, but it's very do-able, and the rewards are immense.
    Not that I ever had any problem kids in my classroom, oh no.

  • Nas on airport extreme not recognized by time machine. same nas was previously used as time machine backup on different airport extreme. are there any configuration files that i can delete to fix this problem ?

    nas on airport extreme not recognized by time machine. same nas was previously used as time machine backup on different airport extreme. are there any configuration files that i can delete to fix this problem ?

    Time Machine has been working just fine, but in the last week or two it has given up the ghost. I reset the connections to the drive, and it will basically save a few bytes of data and then hang.
    Although Apple originally announced, prior to the release of the first 802.11n AirPort Extreme Base Stations (AEBSn), that it would support Time Machine backups to AirPort Disks, they removed that option before they did finally release the base station for sale.
    Since then, Apple has posted (as you have noted) that they DO NOT support Time Machine backups to AirPort Disks. As far as I know, they have not changed from that position and those who do these backups find that they become corrupted over time. Sorry, but it sounds like you just confirmed that for yourself.
    1) Has one of the recent updates either on the AE (firmware) or OSX disabled this function?
    No. Again, this feature has never been supported by Apple for every generation of AEBSn released.
    2) Are there any changes I can make to get this working again?
    If your data backups are critical to you, then you will want to use a different solution for your Time Machine backup destination drive strategy. I would suggest that you connect your WD My Book directly to your Mac in the mean time.
    Your other options would be to either use a Time Capsule (which interestingly does support TM backups to AirPort Disks) or a non-Apple solution like the Drobo FS or HP MediaSmart server.

  • I bought ilife 11 but cant update it. Is there any e-mail address which can i get help about ilife 11

    i bought ilife 11 but cant update it. Is there any e-mail address which can i get help about ilife 11?
    i bought it from Turkey website. apple.com.tr and i paid the price bu i cant update it and there are nothing i can do? i called the turkey's apple but they said i should mail this to apple.com. So, i didnt find any e-mail support address for ilife 11.
    what should i do? apple support center is really bad for unplanned situations.

    Apple doesn't have an e-mail address. Unfortunately you'll have to resort to snail mail, for anything that can't be answered by phone or the website. 
    iLife '11 has had no updates issued so far:
    http://support.apple.com/downloads/#ilife
    If it should ever get an update, it would likely be at that link.

  • Are there any clustering deployment parameters for MDB ?

    Hi all,
              Are there any clustering deployment parameters for MDB ?
              We set the Default Load Algorithm to weight-based on the Administration
              Console,
              and three servers in the cluster have the folloing weights:
              Server1: 100
              Server2: 1
              Server3: 50
              Put 10000 messages to the queue which a MDB is listening. The three servers
              consume messages:
              Server1: 4154
              Server2: 3181
              Server3: 2665
              If we set th Algorithm to round-robin and put 10000 messages again, the
              result is:
              Server1: 3559
              Server2: 2696
              Server3: 3745
              It seems that the weight-based setting doesn't work.
              Except the settings on the Administration Console, are there any clustering
              deployment parameters for MDB to have different behaviors?
              TIA
              Alan.
              

    Thanks that was very helpful. My problem however wasn't with using Message driven beans or with sending/receiving messages to/from queue/topics from clients within the application ear file but from outside the ear file , like a remote client. When I follow the exact same steps for a remote client, except getting the context ofcourse, though I am able to lookup the queues and queue connection factories, I am not able to send messages to those queues. It's then that the client throws an exception that it couldn't connect to the JMS Server.
    The server throws the following exception:
    java.lang.NullPointerException
    at com.evermind.server.jms.JMSServer.removeClient(JMSServer.java:724)
    at com.evermind.server.jms.JMSRequestHandler.run(JMSRequestHandler.java:
    278)
    at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExec
    utor.java:796)
    at java.lang.Thread.run(Thread.java:484).
    The client throws the following exception:
    Exception in thread "main" javax.jms.JMSException: Unable to connect to JMSServe
    r (localhost/127.0.0.1:9127)
    at com.evermind.server.jms.EvermindQueueConnection.connect(EvermindQueue
    Connection.java:144)
    at com.evermind.server.jms.EvermindQueueConnection.send(EvermindQueueCon
    nection.java:94)
    at com.evermind.server.jms.EvermindQueueSession.send(EvermindQueueSessio
    n.java:117)
    at com.evermind.server.jms.EvermindQueueSender.send(EvermindQueueSender.
    java:75)
    at com.evermind.server.jms.EvermindQueueSender.send(EvermindQueueSender.
    java:36)
    at com.evermind.server.jms.EvermindQueueSender.send(EvermindQueueSender.
    java:31)
    at examples.jms.queue.QueueSend.send(QueueSend.java:71)
    at examples.jms.queue.QueueSend.readAndSend(QueueSend.java:120)
    at examples.jms.queue.QueueSend.main(QueueSend.java:106)
    Any idea what might be causing this? Or is a remote client not allowed to send/receive messages from queue with oc4j?
    Thanks again,
    Bakul.

  • I have Windows 7, and I am being told that it does not support the newest Ai Illustrator, Are there any other alternate routes I can take to get adobe illustrator and photoshop on my computer? Perhaps an earlier version? Thanks! ~

    I have Windows 7, and I am being told that it does not support the newest Ai Illustrator, Are there any other alternate routes I can take to get adobe illustrator and photoshop on my computer? Perhaps an earlier version? Thanks! ~

    houseofrest,
    According to this page, you can use it for CC:
    Adobe Illustrator CC for Mac, Windows, PC - Tech specs
    Or you can buy CS6:
    http://helpx.adobe.com/x-productkb/policy-pricing/system-requirements-illustrator.html

  • Are there any german user? They can help me in german?

    Are there any german user? They can help me in german?

    As Linc Davis weist darauf hin:
    "Stellen Sie eine Frage in deutscher Sprache. Wenn Sie eine Antwort in Englisch (oder eine andere Sprache) und bekommen es nicht verstehen, verwenden Sie Google Translate."

  • Simple question. Since apple has extinguished iDVD Are there any other Software programs that can produce the end product iDVD did?

    There are many a thousands of people who are producingvideos on completed DVDs. As an amateur videographer using iMovie first nowusing Final Cut pro to produce completed ready to distribute DVDs, I find ithard to believe at the meeting you mentioned anyone with common sense wouldhave explained the scenario above. On an amateur level so many folks have beencreating videos of Weddings, Home Movies, and many different Special Events. Onin particular are sports events. I shoot a sports event like Mix Martial ArtsEvents utilizing several video cameras. Then editing with Final cut Pro andsometimes iMovie. All of my completed videos that have been edited in either ofthese two programs are shared (like hand in glove) with iDVD. Short of steppinginto the commercial world Apple has deleted many people from producing a semiprofessional looking product.
    I do not know if the can be answered here in the format buthere it goes!!
    Simple question. Since apple has extinguished iDVD Are thereany other Software programs that can produce the end product iDVD did? Googlesearches with years of outdated info does not give good references. Withoutlooking to go commercial, the Apple Macintosh Computers built internal Softwareprogram like iDVD is the only program I know of that can help folks on mylevel!!
    It doesn't seem there are any programs that takes off fromwhere iDVD left off. My end products (complete videography from start tofinished printed and burned DVD) needs to have the mapping and control usingthe semi professional look iDVD gave!
    Have any ssuggestions?

    Thank you Klaus 1
    I have 4 latest Macs All have iDVD. The question was not where to get iDVD.
    The question for anyone who knows is: Since apple has extinguished iDVD Are there any other Software programs that can produce the end product iDVD did?
    I appreciate your input but it realy does not answer the question. iDVD will soon not be able to work with newer versions of Macs as it has been left behind by Apple!
    Once again:
    It doesn't seem there are any programs that takes off from where iDVD left off.
    My end products needs to have the mapping and control using the semi professional look iDVD gave me.
    Imovie cannot do this. More importantly imovie cannot save the project to Video_TS folders like iDVD did.
    Anyone have suggestions?
    My full post is just below:
    There are many a thousands of people who are producing videos on completed DVDs. As an amateur videographer using iMovie first now using Final Cut pro to produce completed ready to distribute DVDs,
    On an amateur level so many folks have been creating videos of Weddings, Home Movies, and many different Special Events. One in particular are sports events. I shoot sports event like Mix Martial Arts Events utilizing several video cameras. Then editing with Final cut Pro and sometimes iMovie. All of my completed videos that have been edited in either of these two programs are shared (like hand in glove) with iDVD. Short of stepping into the commercial world Apple has deleted many people from producing a semi professional looking product.
    I do not know if anyone can this question but here it goes!!
    Simple question. Since apple has extinguished iDVD Are there any other Software programs that can produce the end product iDVD did? Google searches with years of outdated info does not give good references. Without looking to go commercial, the Apple Macintosh Computers built internal Software program like iDVD is the only program I know of that can help folks on my level!!
    It doesn't seem there are any programs that takes off from where iDVD left off. My end products (complete videography from start to finished with printed and burned DVD) needs to have the mapping and the control by using the semi professional look iDVD gave!
    More importantly imovie cannot save the project to Video_TS folders like iDVD did. Something for folks like myself who need this to burn to our multi burning DVD all in one printers!!
    Anyone have suggestions?

  • Are there any free TV channels that can be received on the Apple TV?

    Are there any free TV channels that can be received on the Apple TV?

    No, it's not a TV tuner.  It's primarily marketed as a rental vehicle for iTunes store movies/purchases and for playback of compatible (see specs) media from iTunes.
    Some subscription streams are available eg Netflix, MLB as well as youTube and some limited internet content (no browser).
    Check the Apple tech pages.

  • Are there any 3rd party tools which provide Microsoft Azure IaaS diagnostics?

    Are there any 3rd party tools currently, which can be used for giving detailed diagnostics Information about the IaaS environment (like on VM's, Virtual Network etc.) in a detailed report format periodically? Please note that I am looking for any such tools
    around IaaS environment diagnostics here, and not about Application diagnostics.

    Hi Bahree,
    Microsoft does not suggest  a specific third-party product. However, we do use them, and see lots of other customers use them.
    Paraleap: Monitoring tool - http://www.paraleap.com/AzureWatch , You may browse to these site and few others to learn more, and chat with their folks directly on how they support Windows Azure.
    I see that Microsoft has published a self-help diagnostic package for running Windows-based virtual machines (VMs) in Azure IaaS and this this diagnostic package does not require opening a Support Request with
    Microsoft
    This package helps to diagnose and resolve common issues on running Windows-based VMs in Azure IaaS
    We may download the diagnostic package from Microsoft's Support Diagnostics Self-Help Portal:
    https://home.diagnostics.support.microsoft.com/SelfHelp?knowledgebaseArticleFilter=2976864
    You might want to see
    Microsoft Azure Virtual Machine Monitoring with Azure Diagnostics Extension
    Regards,
    Shirisha Paderu

  • Are there any apple experts online that can help me with my problem?

    My problem is outlined here.
    http://discussions.apple.com/message.jspa?messageID=4109139#4109139
    I have spent months messing around on this site and other forums trying to get a response but there isn't much of a solution out there. Is there a way to e-mail someone at apple who can give me answers?
    Thanks.

    Hello,
    If a sad iPod icon or an exclamation point and folder icon appears on your iPod’s screen, or with sounds of clicking or HD whirring, it is usually the sign of a hard drive problem and you have the power to do something about it now. Your silver bullet of resolving your iPod issue – is to restore your iPod to factory settings.
    http://docs.info.apple.com/article.html?artnum=60983
    If you're having trouble, try these steps at different levels one at a time until the issue is resolved. These steps will often whip your iPod back into shape.
    Make sure you do all the following “TRYs”
    A. Try to wait 30 minutes while iPod is charging.
    B. Try another FireWire or USB through Dock Connector cable.
    C. Try another FireWire or USB port on your computer .
    D. Try to disconnect all devices from your computer's FireWire and USB ports.
    E. Try to download and install the latest version of iPod software and iTunes
    http://www.apple.com/itunes/download/
    For old and other versions of iPod updater for window you can get here
    http://www.ipodwizard.net/showthread.php?t=7369
    F. Try these five steps (known as the five Rs) and it would conquer most iPod issues.
    http://www.apple.com/support/ipod/five_rs/
    G. Try to put the iPod into Disk Mode if it fails to appear on the desktop
    http://docs.info.apple.com/article.html?artnum=93651
    If none of these steps address the issue, you may need to go to Intermediate level listed below in logical order. Check from the top of the lists to see if that is what keeping iPod from appearing on your computer in order for doing the Restore.
    Intermediate Level
    A. Try to connect your iPod with another computer with the iPod updater pre-installed.
    B. Still can’t see your iPod, put it in Disk Mode and connect with a computer, instead of doing a Restore on iPod Updater. Go and format the iPod instead.
    For Mac computer
    1. Open the disk utility, hope your iPod appears there (left hand side), highlight it
    2. Go to Tab “Partition”, click either “Delete” or “Partition”, if fails, skip this step and go to 3
    3. Go to Tab “Erase” , choose Volume Format as “MAC OS Extended (Journaled), and click Erase, again if fails, skip it and go to 4
    4. Same as step 3, but open the “Security Options....” and choose “Zero Out Data” before click Erase. It will take 1 to 2 hours to complete.
    5. Eject your iPod and do a Reset
    6. Open the iTunes 7 and click “Restore”
    For Window computer
    Go to folder “My Computer”
    Hope you can see your iPod there and right click on the iPod
    Choose “Format”. Ensure the settings are at “Default” and that “Quick Format” is not checked
    Now select “Format”
    Eject your iPod and do a Reset
    Open the iTunes 7 and click “Restore”
    In case you do not manage to do a “Format” on a window computer, try to use some 3rd party disk utility software, e.g.“HP USB Disk Storage Format Tool”.
    http://discussions.apple.com/thread.jspa?threadID=501330&tstart=0
    C. Windows users having trouble with their iPods should locate a Mac user. In many cases when an iPod won't show up on a PC that it will show up on the Mac. Then it can be restored. When the PC user returns to his computer the iPod will be recognized by the PC, reformatted for the PC, and usable again. By the way, it works in reverse too. A Mac user often can get his iPod back by connecting it to a PC and restoring it.
    Tips
    a. It does not matter whether the format is completed or not, the key is to erase (or partly) the corrupted firmware files on the Hard Drive of the iPod. After that, when the iPod re-connected with a computer, it will be recognized as an fresh external hard drive, it will show up on the iTunes 7.
    b. It is not a difficult issue for a Mac user to find a window base computer, for a PC user, if they can’t find any Mac user, they can go to a nearest Apple Shop for a favor.
    c. You may need to switch around the PC and Mac, try to do several attempts between “Format” and “Restore”
    http://discussions.apple.com/thread.jspa?messageID=2364921&#2364921
    Advance Level
    A. Diagnostic mode solution
    If you have tried trouble shooting your iPod to no avail after all the steps above, chances are your iPod has a hardware problem. The iPod's built-in Diagnostic Mode is a quick and easy way to determine if you have a "bad" iPod.
    You need to restart your iPod before putting it into Diagnostic Mode. Check that your hold switch is off by sliding the switch away from the headphone jack. Toggle it on and off to be safe.
    Press and hold the following combination of buttons simultaneously for approximately 10 seconds to reset the iPod.
    iPod 1G to 3G: "Menu" and "Play/Pause"
    iPod 4G+ (includes Photo, Nano, Video, and Mini): "Menu" and "Select"
    The Apple logo will appear and you should feel the hard drive spinning up. Press and hold the following sequence of buttons:
    iPod 1G to 3G: "REW", "FFW" and "Select"
    iPod 4G+ (includes Photo, Nano, Video, and Mini): "Back" and "Select"
    You will hear an audible chirp sound (3G models and higher) and the Apple logo should appear backwards. You are now in Diagnostic Mode. Navigate the list of tests using "REW" and "FFW". The scroll wheel will not function while in diagnostic mode. For further details on Diagnostic mode can be found at http://www.methodshop.com/mp3/ipodsupport/diagnosticmode/
    Try to do the 5in1, HDD R/W and HDD scan tests. Some successful cases have been reported after the running the few tests under the Diagnostic mode. In case it does not work in your case, and the scan tests reports show some errors then it proves your iPod has a hardware problem and it needs a repairing service.
    B. Format your iPod with a start disk
    I have not tried this solution myself, I heard that there were few successful cases that the users managed to get their iPod (you must put your iPod in disk mode before connecting with a computer) mounted by the computer, which was booted by a system startup disk. For Mac, you can use the Disk Utility (on the Tiger OS system disk), for PC user, you can use the window OS system disk. Try to find a way to reformat your iPod, again it does not matter which format (FAT32, NTFS or HFS+) you choose, the key is to erase the corrupted system files on the iPod. Then eject your iPod and do a Reset to switch out from Disk Mode. Reboot your computer at the normal way, connect your iPod back with it, open the iPod updater, and hopefully your iPod will appear there for the Restore.
    If none of these steps address the issue, your iPod may need to be repaired.
    Consider setting up a mail-in repair for your iPod http://depot.info.apple.com/ipod/
    Or visit your local Apple Retail Store http://www.apple.com/retail/
    In case your iPod is no longer covered by the warranty and you want to find a second repairing company, you can try iPodResQ at your own risk
    http://www.ipodresq.com/index.php
    Just in case that you are at the following situation
    Your iPod warranty is expired
    You don’t want to pay any service charges
    You are prepared to buy a new one
    You can’t accept the re-sell value of your broken iPod
    Rather than leave your iPod as paper-weight or throw it away.
    You can try the following, but again, only do it as your last resort and at your own risk.
    Warning !!!! – It may or may not manage to solve your problem, and with a risk that you may further damage your iPod, which end up as an expensive paper weight or you need to pay more higher repairing cost. Therefore, please re-consider again whether you want to try the next level
    Last Resort Level
    1. . Disconnecting the Hard Drive and battery inside the iPod – Warning !! Your iPod warranty will be waived once you open the iPod.
    In Hong Kong there are some electronic shops offering an iPod service for Sad iPod, the first thing they do is to open up the iPod’s case and disconnecting the battery and the Hard Drive from the main board of the iPod. Wait for 5-10 minutes and reconnecting them back. The reason behind which I can think of is to do a fully reset of a processor of the iPod. In case you want do it itself and you believe that you are good on fixing the electronics devices and have experience to deal with small bits of electronic parts, then you can read the following of how to open the iPod case for battery and HDD replacement (with Quicktimes)
    http://eshop.macsales.com/tech_center/index.cfm?page=Video/directory.html
    2.Press the reset button on the Hard Drive inside the iPod – Suggestion from Kill8joy
    http://discussions.apple.com/thread.jspa?messageID=2438774#2438774
    Have I tried these myself? No, I am afraid to do it myself as I am squeamish about tinkering inside electronic devices, I have few experiences that either I broke the parts (which are normally tiny or fragile) or failed to put the parts back to the main case. Therefore, I agree with suggestion to have it fixed by a Pro.
    2. Do a search on Google and some topics on this discussion forum about “Sad iPod”
    Exclamation point and folder and nothing else
    http://discussions.apple.com/thread.jspa?messageID=3597173#3597173
    Exclamation point and folder and nothing else
    http://discussions.apple.com/thread.jspa?messageID=2831962#2831962
    What should I do with my iPod? Send it or keep it?
    http://discussions.apple.com/thread.jspa?threadID=469080&tstart=0
    Strange error on iPod (probably death)
    http://discussions.apple.com/thread.jspa?threadID=435160&start=0&tstart=0
    Sad Face on iPod for no apparent reason
    http://discussions.apple.com/thread.jspa?threadID=336342&start=0&tstart=0
    Meeting the Sad iPod icon
    http://askpang.typepad.com/relevanthistory/2004/11/meeting_thesad.html#comment-10519524
    Sad faced iPod, but my computer won’t recognize it?
    http://discussions.apple.com/thread.jspa?messageID=2236095#2236095
    iPod Photo: unhappy icon + warranty question
    http://discussions.apple.com/thread.jspa?messageID=2233746#2233746
    4th Gen iPod Users - are we all having the same problem?
    http://discussions.apple.com/message.jspa?messageID=2235623#2235623
    Low Battery, and clicking sounds
    http://discussions.apple.com/thread.jspa?messageID=2237714#2237714
    Sad faced iPod, but my computer won’t recognize it
    http://discussions.apple.com/thread.jspa?messageID=2242018#2242018
    Sad iPod solution
    http://discussions.apple.com/thread.jspa?threadID=412033&tstart=0
    Re: try to restore ipod and it says "can't mount ipod"
    http://discussions.apple.com/thread.jspa?threadID=443659&tstart=30
    iPod making clicking noise and is frozen
    http://discussions.apple.com/thread.jspa?messageID=2420150#2420150
    Cant put it into disk mode
    http://discussions.apple.com/thread.jspa?messageID=3786084#3786084
    I think my iPod just died its final death
    http://discussions.apple.com/thread.jspa?messageID=3813051
    Apple logo & monochrome battery stay
    http://discussions.apple.com/thread.jspa?messageID=3827167#3827167
    I am not suggesting that you should follow as well, but just read them as your reference. You are the person to make the call.
    Finally, I read a fair comments from dwb, regarding of slapping the back of the iPod multiple times
    Quote “This has been discussed numerous times as a 'fix'. It does work, at least for a while. In fact I remember using the same basic trick to revive Seagate and Quantam drives back in the mid to late 1980's. Why these tiny hard drives go bad I don't know - could be the actuator gets stuck in place or misaligned. Could be the platter gets stuck or the motor gets stuck. 'Stiction' was a problem for drives back in the 80's. Unfortunately the fix can cause damage to the platter so we temporarily fix one problem by creating another. But I know of two instances where a little slap onto the table revived the iPods and they are still worked a year or more later.”UnQuote

  • Are there any common LookAndFeel's that can be used/bought?

    I have searched the internet for some. But for the most part, they were side projects of people,. and haven't been updated as new versions of java are released.
    anyone have any suggestions to some professional cross-platform look & feels?
    thanks!

    Hello gmoniey
    I think you can try this code
         JFrame frame;
         JTextField txtTest;
         JPanel panel;
         JComboBox cmbTest;
         String items[]={"First","Second"};
         try {
    // UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
    // UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    // UIManager.setLookAndFeel("com.sun.java.swing.plaf.motif.MotifLookAndFeel" );
    UIManager.setLookAndFeel("com.sun.java.swing.plaf.gtk.GTKLookAndFeel");// Introduced in release 1.4.2.
              frame=new JFrame("Look and Feel");
                   txtTest=new JTextField(10);
                   cmbTest=new JComboBox(items);
                   panel=new JPanel();
                   panel.add(txtTest);
                   panel.add(cmbTest);
                   frame.setSize(500,600);
                   frame.getContentPane().add(panel);
                   frame.setVisible(true);
              } catch (Exception e)
              System.err.println("Could not switch look and feel " );
    The last one is Introduced in release 1.4.2.
    At command line you can say
    java -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel MyApp

  • Are there any examples for using a CAN card via XNET on a real time system?

    I am programming a real time application and I have a PXI 8512 card.  My first order of business is to get 5-byte messages from transducers that are broadcasting at 10 Hz on known message IDs.  There are no CAN/XNET samples in my "realtime" CVI sample folder.  I have found some in the nixnet folder but they are Windows based so I have to hack a lot of stuff out of them.
    Thank you.
    Michael Chadwell
    Department of Engine and Vehicle R&D
    Southwest Research Institute

    In other words, I just need to do something very similar to this with no user interface:
    NOTE: See attachment
    Michael Chadwell
    Department of Engine and Vehicle R&D
    Southwest Research Institute
    Attachments:
    CAN Bus Monitor.jpg ‏83 KB

  • Are there any tips and tricks or can you learn all from Help menu?

    Basically. GBand is great but i was wondering if there are any special techniques or features that may be hidden and not in the help menu.. maybe there are GBand websites with tips and tricks? or no?

    Basically. GBand is great but i was wondering if
    there are any special techniques or features that may
    be hidden and not in the help menu.. maybe there are
    GBand websites with tips and tricks? or no?
    easy. you got gb experts here that have faqs+ for all levels of users. heres just a couple:
    http://www.bulletsandbones.com/GB/GarageBand.html
    http://wikivid.com/index.php/GarageBand
    enjoy good luck

  • Are there any apps for Businesses that can sell time

    We are looking for an app that can sell time. 

    Do you mean you just want a sketching/drawing/painting app for the iPad?  If so, there are tons of them.  Everything from simple free pen and pencil sketch apps, to paid apps with an overwhelming set of options.  There are technical drawing apps for structural type drawings, apps designed for comic-theme sketches, simple black and white sketch apps, apps to mimic watercolor painting, oil painting - you name it, in terms of sketching or painting, there is almost certainly an app for it.
    You will need to do some searching in the app store - a few free ones I can recall of the top of my head are
    Doodle Buddy
    ColorBox HD
    Bamboo Paper
    Pen & Ink
    Sketches (although that may only have been free for a short period, and no longer so).

Maybe you are looking for

  • Creative cloud for teams installation

    I have a registered licence for Adobe cloud for teams. After I install the creative cloud and try to install some of the applications it only lets me install the trial version for some reason... Anyone know how to solve this? Thanks

  • The tip of my headphones broke off and is now stuck inside my ipod,How do I get it out?

    My ipod (4th gen.) fell in my bathroom while it had the headphones in.The headphone had came out but I just picked it up and didnt look at it.I plugged my ipod in and left for an hour or so,when i came back I wanted to listen to my music.I tried plug

  • Size and position of Finder Window at reboot

    I realize this issue has been covered, but I haven't been able to find and answer to my specific problem. Recently I have noticed that when I reboot my MacBook(10.6.8) the Finder Window opens in its default size and position.  I set the size and posi

  • Aperture needs to issue support for raw for Nikon 1aw

    When will Aperture have support for raw photos for Nikon 1aw, the new fabulous underwater camera?  i have lots of great raw photos and want to completepost work in Aperture

  • Programati​cally close a USB port

    Is there any way to programatically close a USB port? Sometimes when accessing my USB device if an error is encountered the port will not close properly and then will not allow the device to be accessed the next time without unplugging or reseting th