Logger doesn't log fine() messages

I setup the Logger like so
try {
     FileHandler handler = new FileHandler("JEL.log");
     handler.setFormatter(new SimpleFormatter());
     gLogger = Logger.getLogger("com.sidkwakkel.jel");
     gLogger.addHandler(handler);
     // The logging level can be set from the application options file
     if(mOptions.getProperty("Logger_level").equalsIgnoreCase("all")) {
          gLogger.getHandlers()[0].setLevel(Level.ALL);
          gLogger.setLevel(Level.ALL);
     } else if(mOptions.getProperty("Logger_level").equalsIgnoreCase("debug")) {
          gLogger.getHandlers()[0].setLevel(Level.INFO);
          gLogger.setLevel(Level.INFO);
     } else if(mOptions.getProperty("Logger_level").equalsIgnoreCase("warnings")) {
          gLogger.getHandlers()[0].setLevel(Level.WARNING);
          gLogger.setLevel(Level.WARNING);
     } else if(mOptions.getProperty("Logger_level").equalsIgnoreCase("off")) {
          gLogger.getHandlers()[0].setLevel(Level.OFF);
          gLogger.setLevel(Level.OFF);
     gLogger.info("test info");
     gLogger.fine("test fine");
}catch(IOException e) {}If I set my option file to
Logger_level               :     allit still only captures messages that are made using info(). All of my messages that use fine() are ignored. Any ideas?

Following up after further investigation.
It's not just .exiting() that is failing to log the class/method names.
All methods on Logger fail to log the supplied class/method names.
Even manually creating a LogRecord and explicitly calling setSourceClassName()
and setSourceMethodName() fails to log the names.
Presumably this is because the supplied names are being ignored.
Anyone have any idea why this would happen?/
Thanks, Alan
PS. All this refers to java.util.logging.Logger

Similar Messages

  • Logger.exiting() method doesn't log class/method names

    I'm trying to setup logging in a ResourceAdapter running in
    Appserver 8. For some reason, when the Logger.exiting() method
    is called, the class and method names are not logged.
    Any ideas why this is happening ?
    Thanks, Alan
         private static final String _CLASSNAME = "MyResourceAdapter";
         private static final String _PACKAGE = "com.wombat.myRA";
         protected static Logger mLogger = null;
         private void Initialise () {
              mLogger = Logger.getLogger(_PACKAGE);
              try {
                   mLogger.setLevel(Level.FINEST);
              } catch(Exception e ) {
                   e.printStackTrace();
              mLogger.exiting(_CLASSNAME,"Initialise","OK");
              mLogger.exiting(_CLASSNAME,"Initialise");
         }The log output looks like this :
    [#|2004-11-11T13:59:10.351+0000|FINER|sun-appserver-pe8.1|com.wombat.myRA|_ThreadID=10;|RETURN {0}|#]
    [#|2004-11-11T13:59:10.351+0000|FINER|sun-appserver-pe8.1|com.wombat.myRA|_ThreadID=10;|RETURN|#]

    Following up after further investigation.
    It's not just .exiting() that is failing to log the class/method names.
    All methods on Logger fail to log the supplied class/method names.
    Even manually creating a LogRecord and explicitly calling setSourceClassName()
    and setSourceMethodName() fails to log the names.
    Presumably this is because the supplied names are being ignored.
    Anyone have any idea why this would happen?/
    Thanks, Alan
    PS. All this refers to java.util.logging.Logger

  • Logging app messages into another file than server.log

    Hello:
    I'm working with Application Server Enterprise Edition 7 2004Q2 and I'd like logging application messages into another file than server.log.
    I tried to set up a logging configuration file as
    com.appname.handlers = java.util.logging.FileHandler
    ( where all packages in my application are named like com.appname.* )
    and pass it as
    -Djava.util.logging.config.file
    But nothing happens. Indeed , no file is created.
    I tried with
    handlers = java.util.logging.FileHandler
    and works fine but, obviusly, are wrote server messages too.
    So, the problem is 'com.appname.handlers ' property, but I dont know why.
    any workaround to perform this ?
    what's wrong ?
    Thanks in advance.
    Best regards

    Hi,
    The samples are usaully in the samples directory of the appserver install dir. However, this might depend on the server install.
    Anyway, samples can be downloaded from:
    http://developers.sun.com/prodtech/appserver/reference/codesamples/index.html
    This is a zip file with all the samples stuff
    The actual code in there:
            // import for logging classes
            import java.util.logging.*;
            //Remove all handlers
            Handler[] h = logger.getHandlers();
            for (int i = 0; i < h.length; i++) {
                logger.removeHandler(h);
    //Set it to its parent handler so that it gets NOT (by Robert) printed on the server log
    // In the original sample this is set to true
    logger.setUseParentHandlers(false);
    The actual way of adding your own file log handler:
         // Create a file handler with a string as parameter for filename
          Handler fh = new FileHandler(<LOGFILENAME>);
           // Create a formatter to format the logger
           fh.setFormatter(new SimpleFormatter());
           // Add the handler to logger instance 
           logger.addHandler(fh);See the javadocs for formatting stuff,
    HTH Robert

  • WLST redirect command does not log print messages

    I am using redirect to log WLST messages in a logfile, while my WLST Jython script is running. However, I am using the print command to output various messages, but I am finding that these print messages are not in the logfile.
    How do I get such messages in the "redirect logfile" ?

    Hi, I have a similar situation.
    I am exec the WLST code from within an application.
    When using the WLST scripting, and trying to use the "print" statement for logging messages, we can see the message on the console, but the messages do not show up in our logfile (using java.util.logging.Logger).
    For example, if my script has: print "test message"
    This will apppear on the console output, but not in my logfile.
    But other messages derived from the script are logged.
    For example, if in the WLST script we call startEdit(), then the message "Starting an edit session..." will appear in both the console and logfile as expected.
    Not sure why the print statement will not get directed to the logfile. Have tried both using statements in single quotes and double quotes, but it doesn't seem to make a difference.
    Any idea how we can log from WLST to ensure our logs capture all messages?
    I don't want to explicitly open the logfile as shown in your example, as its already open by the logger.

  • PC Suite doesn't show the messages in memory card

    Hei,
    Phone - 6210 Navigator
    PC Suite - 7.1
    Memory in use: Memory card
    When I open the  Communication Centre from PC Suite, it doesn't show the messages. In the left pane, number of messages in the folders is shown as zero. This happens if the memory is set to memory card.
    On the other hand, if I set the memory to Phone memory, the messages are shown properly. Why is this happening and what's the solution?
    When I tried to take a backup, all data, except messages, is backed up. 
    Few days back, I could access all the messages via PC Suite. It worked fine. But, now, there's some problem.
    I've lots of messages in the memory card & I wanna move them to different folders. How else can I do it?
    -Babloo 

    Hello,
    I think I found the cause of the problem. There's some problem with the memory card.
    I set the memory for Camera also to memory card and when I take a snap, something something happens. If I set the memory to phone memory, it works fine. 
    But, I can access the files/folders in the memory card both from the mobile & via PC Suite. 
    Now, my question is "How do I retrieve the messages from the memory card?"
    Any help will be greatly appreciated.
    -Babloo 

  • OBIEE 10g UI shows logging in message while downloading a report.

    Hi Experts,
    We have a report on OBIEE Dashboard which show URLs (GO URLs) to download the report in .CSV format.
    Most of the times, It works fine... However, sometimes the user clicks on the link, the report starts downloading but the page (on which the link was clicked) keeps showing Logging In message.
    Has anyone faced this issue ever?
    (We are using OBIEE 10.1.3.4.1 on Solaris)
    Regards,
    Vishal

    Vishal,
    It would be great if you can provide us the screen shot?
    Thanks,

  • Logging Error Message in Console  [Servlet Error]-[Cannot find FacesContex]

    Hi,
    I am using Web Application with JSF . but when i log in into the web appl everthing is fine but in back end i mean the console of RAD Tool having some logging Error message:
    SRVE0026E: [Servlet Error]-[Cannot find FacesContext]: javax.servlet.jsp.JspException: Cannot find FacesContext
    at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java(Compiled Code))
    at com.sun.faces.taglib.jsf_core.ViewTag.doStartTag(ViewTag.java(Compiled Code))
    at org.apache.jsp._index._jspService(_index.java:86)
    at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(HttpJspBase.java(Compiled Code))
    at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet$JspServletWrapper.service(JspServlet.java(Compiled Code))
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.serviceJspFile(JspServlet.java(Compiled Code))
    at com.ibm.ws.webcontainer.jsp.servlet.JspServlet.service(JspServlet.java(Compiled Code))
    So could you please help me find out the solution for this :
    While i am using the code in jsp page:
    <%@taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@taglib uri="http://www.ibm.com/jsf/html_extended" prefix="hx"%>
    <%@taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <HTML>
    <HEAD>
    <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <META http-equiv="Content-Style-Type" content="text/css">
    <TITLE>Web App
         <f:view>
              <h:outputText value="#{dataInfo.info}"/>
         </f:view>
    </TITLE>
    Suggest me the solution:
    Regards,
    Prabhat

    This usually means that you call the JSF page the wrong way. Try something like http://hostname:port/servletcontextroot/faces/page.jspx
    --olaf                                                                                                                                                                                                                                                                                                   

  • Log a message when the buffer has been overwritten?

    Is there a way to configure the IOS to log a message when my configured buffer is full and the oldest log entry gets overwritten?
    Logging buffered 32768

    endasil wrote:
    I agree with baftos that a screen saver is a brilliant and simple way to handle this. I don't think for your purposes you need to use JNI though. This is how I would lay it out:
    2 Programs:
    -Listener
    -ScreenSaver
    The listener's only function is to continuously loop, (utilizing Thread.sleep() to not take up much in terms of resources) checking for the existence of some dummy file on your system, say C:\Temp\inactive. If the file doesn't exist, the program increments your study time by however long it's been since it last checked.
    The screensaver is just a small native (you could do this in VB in just a few lines of code) app which blanks the screen, and exits on a mouse move or keyboard event. When the Screensaver starts, it creates C:\temp\inactive. When it exits, it deletes that file.
    JNI would probably be more stable (for instance, if your screensaver is killed by forcibly killing the process, you'd be screwed), but it also has a learning curve. Using a dummy file, on the other hand, is an indirect but fairly simple way of passing messages between programs (another way is to ping a local port, I believe, which should also work).The file idea makes me think that this is a lot simpler. The screen saver writes the file like this:
    Started: 10:00:25-blabla (whatever time date format)
    Stopped: ...
    Started: .......
    Stopped:......
    The Java program is run only when you want a report. A simple java application that grabs the file and does whatever it
    wants with it.
    Edited by: baftos on Dec 7, 2007 4:54 PM

  • Mail doesn't show new messages

    Mail sometimes doesn't show new messages for an IMAP account. The badge in the dock says that there is a new mail but it doesn't show up in the inbox. I'm sure that I didn't just miss it, because, smart mailboxes will not find that new mail as well. When I restart mail, the mail finally shows up in the inbox as well.
    Anybody else seeing this and what can I do to resolve that issue?
    Thanks!

    I'll bring everyone up to speed on what's been happening with my family accounts. I first suspected Safari, because it seemed to be a local problem, but then, inexplicably, all mobileme mail accounts tied to that family account, which included 4 subaccounts and 1 mail-only account, not only did not work in mail.app, but also failed in other email clients I tested, including clients on Linux. Also, the webmail version was not working well, either.
    So, if your problem is isolated to a single computer and just to mail.app, or just with a particular network, then I think the local troubleshooting steps are the way to go.
    But, if your problem extends to other platforms, clients, and webmail, then it is likely an issue the engineers at Apple will have to figure out. I found the online chat service for mobileme users to be very helpful in checking through all the 'usual suspects' and after we had pretty much ruled out any of the usual culprits, it was escalated to the engineers, who are working on it now.
    They were able to release all the email that had been piling up, but there are still some glitches they are trying to iron out. As an aside, I have been personally managing various mail servers for a dozen years, and am well aware of the difficulties in diagnosing email problems, and it was stumping me, and I have intimate knowledge of Exim and Exchange and various email modules used with mx services.
    +While this 'should never happen', it's unrealistic for users to expect it never will. Of all the services provided on the Internet, email, is arguably the most complex service and it's become much more complex in the past few years. In my work, typically 94% of all email traffic hitting the server is filtered out as spam. So, the 6% that is allowed through is the stuff most of us see and are spending time and resources filtering out the 20-40% additional unwanted spam that the host let through because if they tightened it down any further the risk of false positives would become too great. I spend way more time on the mail service aspects of my job than the web services, and mail problems occupy at least 80% of my troubleshooting logs. So, while email seems more 'simple' than the exotic and bandwidth intensive services like video chat, voip, and web2 transactions, compared to the amount of wasted bandwidth and cpu cycles filtering packets, I think email is the number one problem service for most host providers. We tried to depend upon it for mission-critical communications, and it was never designed for that initially, and the spammers are making certain it won't achieve that status at least in the near future. If anything, email is your least dependable Internet service. Combine this with the growing array of user configurations, email clients, forwarding/retrieving/syncing scenarios, and user experience, and you may find yourself uttering a little prayer now and then for the poor email administrators and support personnel.+
    [end of sermon - thanx for letting me get that off my chest; I feel better now! I'll feel a lot better when my email is flowing smoothly, but that's out of my hands for now.]

  • PS cc doesn't show Fine art papers in the printer menu

    Hi
    I recently bought a new printer Epson Stylus Pro 3880 and I use it with PS cc. But in the printermenu I just can't choose Fine art papers - isn't highlighted.
    All my programs and drivers are up to date!
    Does anyone here have a solution to my problem?
    Thanks,
    Steen.

    Hi Trevor,
    I'll try. Thank you.
    Steen.
    Den 02/01/2014 kl. 22.55 skrev Trevor.Dennis <[email protected]>:
    Re: PS cc doesn't show Fine art papers in the printer menu
    created by Trevor.Dennis in Photoshop General Discussion - View the full discussion
    I bet there is a leaflet in the box the print paper came in, that gives a list of profiles for various printers.  Alternatively, go to the paper maker's website and look there.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5975086#5975086
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5975086#5975086
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5975086#5975086. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Photoshop General Discussion at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • IPad mini Network connection error when trying to log into Message

    I have an iPad mini and when I try to log into message it comes up with an error asking me to check the network connection. The iPad is connected to WiFi and the internet works fine, I have tried everything I have seen to test but am not having any success. Help please...

    Hi there L1975,
    Take a look at the article linked below, it provides a lot of great information and troubleshooting tips that can help you resolve the issue signing in to iMessage on your iPad mini.
    If you get an error when trying to activate iMessage or FaceTime - Apple Support
    So long,
    -Jason

  • My user doesn't log in

    Hi,
    I bought the Mountain Lion OSX, and after installed it my regular user doesn't log in.
    After I putted the right password the mac gave me a gray screen and come back to the first screen of users, anyone knows what I do to solute this?
    Thanks!

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login. Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on some Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem(s)?
    After testing, reboot as usual (i.e., not in safe mode.)

  • Iphoto doesn t start.  Message received: Your photo library is either in use by another application or has become unreadable

    Iphoto doesn t work.  Message received: Your photo library is either in use by another application or has become unreadable.
    I removed it and I tried several times to reinstall it without success. 

    Some of your user files (not system files) have incorrect permissions or are locked. This procedure will unlock those files and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Back up all data before proceeding.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Enter the following command in the Terminal window in the same way as before (triple-click, copy, and paste):
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button
    Select
               ▹ Restart
    from the menu bar.

  • Closing the browser in InfoView doesn't log the user off.

    In Business Objects XI R2 Infoview, closing the browser in InfoView doesn't log the user off no matter how you answer the subsequent popup question "A window has closed. Log off as well?" Is there a fix for this somewhere?

    hi,
    In InfoView, with Performance Management installed, user sessions fail to be released immediately when the Log Off button is clicked.
    If you click the logoff button in Infoview and watch the address bar you will notice that it actually goes to another page called default.htm. It does this really fast. That page is located at C:\Program Files\Business Objects\Tomcat\webapps\businessobjects\enterprise115\desktoplaunch\InfoView. Remove both the default.htm and index.html and reboot your Tomcat server. Open a browser and go to Infoview. Once you have gotten in to Infoview click the log off button. You will get and error from the tomcat server and that is because the page does not exist anymore. If you look in CMS under servers and CMS you will also notice it dropped the session as well. So if you create another Default.htm page of your own and just redirect to another page it all should work.
    However I did notice an interesting ADAPT in CHF15 :-
    http://support.businessobjects.com/CommunityCS/FilesAndUpdates/boxir2_en_chf15_readme.pdf
    ADAPT00576483 Patch ID: 39,216,665
    Also did u do any customization setting before ?

  • How to log the messages in program scheduled background

    Hi all,
    I have a program and it is to be scheduled to run in the background.
    I want to log the messages within the program while running.
    What could I do?
    (The standard job log is not what I want)
    Thanks.

    Ignore my previous post. It is good that you posted this question, as I learnt something new. Try the code below.
    Regarding help for why you require and why to go for application logs, refer this SAP Help
    http://help.sap.com/saphelp_47x200/helpdata/en/2a/fa0223493111d182b70000e829fbfe/frameset.htm
    DATA: ls_log  TYPE bal_s_log.
    DATA: p_log_handle TYPE balloghndl.
    ls_log-extnumber = 'YMYTEST'.
    ls_log-alprog = sy-repid.
    CALL FUNCTION 'BAL_LOG_CREATE'
      EXPORTING
        I_S_LOG                 = ls_log
      IMPORTING
        E_LOG_HANDLE            = p_log_handle
      EXCEPTIONS
        LOG_HEADER_INCONSISTENT = 1
        OTHERS                  = 2.
    IF SY-SUBRC <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    data: l_s_msg TYPE bal_s_msg.
    data: E_MSG_WAS_DISPLAYED type boolean.
    data: E_MSG_WAS_LOGGED type boolean.
    data: E_S_MSG_HANDLE type BALMSGHNDL.
    l_s_msg-msgid = '00'.
    l_s_msg-msgty = 'E'.
    l_s_msg-msgno = '001'.
    l_s_msg-msgv1 = 'This is a test message from 20130810'.
    CALL FUNCTION 'BAL_LOG_MSG_ADD'
      EXPORTING
        I_LOG_HANDLE              = p_log_handle
        I_S_MSG                   = l_s_msg
    IMPORTING
       E_S_MSG_HANDLE            = E_S_MSG_HANDLE
       E_MSG_WAS_LOGGED          = E_MSG_WAS_LOGGED
       E_MSG_WAS_DISPLAYED       = E_MSG_WAS_DISPLAYED
    EXCEPTIONS
       LOG_NOT_FOUND             = 1
       MSG_INCONSISTENT          = 2
       LOG_IS_FULL               = 3
       OTHERS                    = 4
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    data: I_T_LOG_HANDLE type BAL_T_LOGH.
    append p_log_handle to i_t_log_handle.
    CALL FUNCTION 'BAL_DSP_LOG_DISPLAY'
    EXPORTING
    *   I_S_DISPLAY_PROFILE          =
        I_T_LOG_HANDLE               = i_t_log_handle
    *   I_T_MSG_HANDLE               =
    *   I_S_LOG_FILTER               =
    *   I_S_MSG_FILTER               =
    *   I_T_LOG_CONTEXT_FILTER       =
    *   I_T_MSG_CONTEXT_FILTER       =
    *   I_AMODAL                     = ' '
    * IMPORTING
    *   E_S_EXIT_COMMAND             =
    EXCEPTIONS
       PROFILE_INCONSISTENT         = 1
       INTERNAL_ERROR               = 2
       NO_DATA_AVAILABLE            = 3
       NO_AUTHORITY                 = 4
       OTHERS                       = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Regards,
    Subramanian V.

Maybe you are looking for

  • How to add Purchase Order entry using B1WS?

    Hi, I have implemented B1WS in DI server, I am trying to add purchase order entry, but after adding it via B1WS, I am not able to find entry in SAP; My code using B1WS: public void SAPPurchaseOrder(string _SID)             _PIService = new PurchaseIn

  • Acrobat X Pro - PDF file to excel

    I would like to know how to take a pdf document(was generated from a report system) and turn that pdf document into a useable excel document.  I am able to view the document as a pdf in acrobat x pro but would like to export it to excel and view it i

  • Random auto copying and pasting after 10.6.6 update

    Since I upgraded to 10.6.6, I've been seeing random copy and paste behavior. If I leave my mouse in a text box and wait a little bit, the Mac pastes my clipboard. If I select some text, the Mac copies it without me telling it to. Any clue what's goin

  • JRE1.6 and Vista

    IS there any ISsue with JRE.16 on Windows Vista.

  • I2C access in NXT-G

    Hello All, I have been using labview since version 4, and I am very excited about the NXT platform from NI and Lego.  Being more on the software side of things, embedded programming has always been intimidating.  Yet, with tne NXT platform, one can d