Help with some questions I can't get answered

Can you give me the specs for P6 re. P7. Does it only go by hours rather than day?
I can't get any answers. I have been on the phone for three day and emailing also and no one has helped me yet.

Data is stored at the database level in hours. You can alter the client to display time units as days under Edit>User Preferences... however this simply converts the hours to the specified time unit.

Similar Messages

  • I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    For MS Visio (any version) only the appropriate version of Acrobat *PRO* provides PDFMaker for Visio.
    For Visio 2013 specifically you must have Acrobat XI Pro (updated to at least 11.0.1).
    See: 
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html  
    Be well...

  • I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio

    I purchased Adobe Acrobat x Pro recently and installed it, I have compatibility issues vision 2013. The adobe pdf converter  plug in stays inactive despite all my efforts to activate it, I need help with this? How can i get the plug in to work with Visio 2013?

    For MS Visio (any version) only the appropriate version of Acrobat *PRO* provides PDFMaker for Visio.
    For Visio 2013 specifically you must have Acrobat XI Pro (updated to at least 11.0.1).
    See: 
    http://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html  
    Be well...

  • Need help with Flash CS4 buttons/can't get buttons to control anything

    Hello,
    I need help with Flash CS4. I am making a banner with an animation (Image change into movie clip "3D Spiral") and added buttons but I cannot get the buttons to control the animation. Please help I am frustrated! If someone could help I would be most appreciated.

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • Now I've really done it.  I need help with iPhoto as I can't get into it at all.

    I sent a request earlier regarding my MacBook Pro.  I was trying to set up both computers so that I could network, mainly wanted to send my photos from the iMac (running OS X 10.6.8 and iPhoto '08).  After some trials I got the two computers so that they appeared to be networked.  I set system preferences so that PICTURES was what would be shared between the iMac and the MacBook Pro (running OS X 10.5.8 and iPhoto '11).
    I had both computers set to recognize each other, the passwords worked, and I thought that was it until I was ready to move my photos from the iMac to the MacBook Pro.  Before I knew what was going on, the MacBook got busy on its own and informed me that it was busy and that iPhotos had to do some updating because the photos (which I then assumed were the ones on the iMac) were too old as they were.  It took some time, during which I noticed that when it got to the point of updating faces there were a couple of faces I didn't think I had seen in my MacBook photos.  I let it finish what it was doing.
    HERE IS MY PROBLEM:  When it finally got finished I couldn't see any new photos on the MacBook, so I went to the iMac to see what had been done there.  Big surprise!  When I went to open iPhotos I got the message "The iPhone Library is locked, on a locked disc, or you do not have permission to make a change to it."  No matter what I tried I couldn't get into it, so I don't know whether I have photos any more or not.  
    As luck would have it, my extended warranty for technical help expired in June 2011!

    Locked disk issue:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Audio player with some extra's - can't get player realized

    I try to build an audio player with some extra's like looping between 2 time marks.
    Till now i have an interface that can play back audio files but after that the problems start.
    There is no way i can add functions without creating a {color:#ff0000}NotRealizedError{color}.
    According to the documentation the start() method should realize (etc) the player, but it doesn't in my program and neighter does the method player.realize();.
    Can someone give me a hint to get me on the road again.
    Thanks in advance.
    Here is the complete code which generates the NotRealizedError on the dp.setRate(); method:
    (most of it is older source from a basic player on the internet).
    package dictaplayer;
    import java.awt.*;*
    *import java.awt.event.*;
    import java.io.*;*
    *import java.net.MalformedURLException;*
    *import java.net.URI;*
    *import java.net.URL;*
    *import javax.swing.*;
    import javax.media.*;
    public class DictaPlayer extends JFrame {
    private Player dp;
    private URI uri;
    private URL url;
    private boolean realized = false;
    public DictaPlayer()
    super( "Testing DictaPlayer" );
    JButton openFile = new JButton( "Open file to play" );
    openFile.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e ) {
    openFile();
    createPlayer();
    getContentPane().add( openFile, BorderLayout.NORTH );
    setSize( 300, 300 );
    setVisible(true);
    private void openFile()
    File file = null;
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(
    JFileChooser.FILES_ONLY );
    int result = fileChooser.showOpenDialog( this );
    // user clicked Cancel button on dialog
    if ( result != JFileChooser.CANCEL_OPTION )
    file = fileChooser.getSelectedFile();
    try {
    uri = file.toURI();
    } catch (SecurityException e) {
    e.printStackTrace();
    // Convert the absolute URI to a URL object
    try {
    url = uri.toURL();
    } catch (IllegalArgumentException e) {
    e.printStackTrace();
    } catch (MalformedURLException e) {
    e.printStackTrace();
    private void createPlayer()
    if ( url == null )
    return;
    removePreviousPlayer();
    try {
    // create a new player and add listener
    dp = Manager.createPlayer( url );
    // blockingRealize();
    dp.addControllerListener( new EventHandler() );
    dp.start(); // start player
    dp.setRate(2);
    catch ( Exception e ){
    JOptionPane.showMessageDialog( this,
    "Invalid file or location", "Error loading file",
    JOptionPane.ERROR_MESSAGE );
    private void removePreviousPlayer()
    if ( dp == null )
    return;
    dp.close();
    Component visual = dp.getVisualComponent();
    Component control = dp.getControlPanelComponent();
    Container c = getContentPane();
    if ( visual != null )
    c.remove( visual );
    if ( control != null )
    c.remove( control );
    private synchronized void blockingRealize() {
    int teller = 1;
    dp.realize();
    while (!realized && teller <= 20) {
    try {
    wait(1000);
    System.out.println("not realized " +teller);+
    +teller++;
    } catch (java.lang.InterruptedException e) {
    System.exit(1);
    public static void main(String args[])
    DictaPlayer app = new DictaPlayer();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e )
    System.exit(0);
    // inner class to handler events from media player
    private class EventHandler implements ControllerListener {
    public void controllerUpdate( ControllerEvent e ) {
    if ( e instanceof RealizeCompleteEvent ) {
    Container c = getContentPane();
    // load Visual and Control components if they exist
    Component visualComponent =
    dp.getVisualComponent();
    if ( visualComponent != null )
    c.add( visualComponent, BorderLayout.CENTER );
    Component controlsComponent =
    dp.getControlPanelComponent();
    if (!realized) {
    System.out.println("not realized.");
    if ( controlsComponent != null )
    c.add( controlsComponent, BorderLayout.SOUTH );
    c.doLayout();
    }

    captfoss,
    Thank you for your comment.
    captfoss wrote:
    Start does realize the player, automatically, before it starts it... if it isn't realizing then it also isn't starting.Right, I thought so, but my test was wrong. I now tested it with getState() and I can see it's going from unrealized to realized.
    First off, you can only call setRate on a player that is realized but not started... further, any of the calls like configure, realize, start, stop, etc... are non-blocking calls...so you have to wait for them to finish before you go on to the next step.So you say that when the rate is changed (f.i. by a user in a gui) the program first has to bring player in non-started realized mode (stop + realize), call the setRate() and start the player again (on the exact position it was stopped)?
    The easiest solution would be to use Manager.createRealizedPlayer rather than Manager.createPlayer...Didn't find out yet why, but when i change this (only this), there is no playing.
    Also, ++teller++ is about the most-confused looking code I've ever seen...Just like all the asterisks, i now know that code changes when i toggle between the tabs (rich/plain/preview) in the message box.
    Beyond that, your "blocking realize" function doesn't appear to do anything except suggest you have no business coding anything this advanced. Your boolean value "realize" isn't ever changed, so, I'm not entirely sure what the point of that function is other than to wait 10 seconds.I got this somewhere from the internet. Thought it could help me realize the player, but it didn't (obvious) so i commented it out.
    Slowly I begin to understand the basics of JMF (at least i think so), but I also understand that there are other (Java) ways to build the application I need. Unfortunatly I have to little (hardly any) knowledge of all those (sound) API's (f.i. JLayer) to find my way through them and to decide which is the best for my use (user controled audio playback (at least WAV and MP3) with looping possiblities between 2 marked positions).
    If someone could give me an advise which API (method or whatever you call it) is best to focus on I shurely would appriciate that.

  • I need help with ISIGHT!  I can't get it to work with MSN!

    HI,
    My issue is this... I have AIM/AOL and I am able to see myself on webcam.. however noone else can unless they HAVE a webcam... My first question is- "DO you have to have a WEBCAM on both ends for both people to see you?" Does the person I am chatting with HAVE to have a webcam to see me? If so WHY? They should atleast be able to see ME if I want them to... Also if they are using windows for PC platform... can they use a pc webcam and still connect with me through my isight although I am on a mac?
    My second major ISSUE is.. WHY is the isight only compatible with AOL/AIM? I was told when I bought this it would be compatible with MSN Messenger for windows AND the MAC version... I have both and the isight does not show up on it... CAN ISIGHT be connected to msn messenger for MAC??? PLEASE help me!
    I called APPLE tech support and they couldn't even help me! They told me to call Microsoft! Anyhow- one guy did say he was able to get his ISIGHT working with the MSN messenger for MAC platform.. do you have ANY idea how to do that?? The thing is ALL my freinds are on PC's and have MSN messenger..
    ALSO- someone on mac rumors told me to look for a guy names RALPH! Said you know A LOT about mac and pc compatibility! PLEASE HELP
    Bottom line - I want to use isight with msn so my msn pc friends can share webcam... I also have virtual pc software... is it easier to just get a pc webcam and do it through there? ( i tried that and it didn't work either) i need major TECH SUPPORT!
    THANK YOU

    Microsoft's Messenger for Mac (MSN) does not support webcams at all.
    I have found the best alternative to MSN to be aMSN with macam for the webcam driver (it is a cheap usb webcam). Both are free open source projects. I guess if you use an iSight you will not need macam.
    aMSN can be found here: http://amsn.sourceforge.net/
    macam can be found here: http://webcam-osx.sourceforge.net/
    The speed is substantially faster and it is far more stable than Mercury in my experience.
    The only difficulty is the camera is often shown as being "in use by another application". To counter this I start macam, then plug in the camera (or unplug and plug back in). Then I start aMSN.

  • Where 2 go for help with some questions about a logo design?

    I'm an absolute novice Illustrator user (CS4). Im doing a web site for a mate and he's given me a logo that I have made a vector drawing of. It was black and white, and I made it coloured but I have discovered that colour gets difficult when you go for grayscale! You all knew that, didn't you?
    I'm not putting the logo up here because I don't want to ask a question that's too far off the purpose of the board. So, if I can't show it here can anyone suggest another forum where people do that kind of stuff and are kind to novices please?
    Many thanks
    Martin
    Well, having a look around I think I might not be going to far off by asking so...
    http://www.imagesandwords.org.uk/test/illylogo.html
    Anything really, but bear in mind It's very like the original except it had no style, no color and less er.. precision

    >How can I make the logo better for colour and B&W?
    As I understand it, you are troubled -- among many things -- by the lack of differentiation among the spheres when you convert to grayscale. Is that correct?
    If so, there are some things to consider. For example, the original uses only two attributes -- color and size -- to differentiate the spheres. Otherwise, you have the same shapes and the same gradient fills (other than base color).
    When you remove color from the equation, you're left with only one differentiating attribute: size. Not surprisingly, you find yourself facing a dull uniformity -- the monotonicity produces monotonousness. Now, the challenge is to add back some differentiating features.
    Not a whole lot of choices here. You can develop different gradient fills for a subtle effect, but you have to be careful: If the "lighting" changes dramatically among spheres, you'll end up with an unnatural look.
    You might consider forgetting about gradient fills altogether and go with solid or texture fills. Sometimes, simpler is better... especially with a logo.

  • I need help with some questions

    I seen where it said if something happens to your computer that you will loose the music you bought and downloaded . Will you also loose the information about your itunes gift card ?How do you run a diagnostic before you buy ? Is there a phone number to contat someone in this case , or could it be sent to my E-Mail address ? Also I would like to thank the people that helped me with my first question .

    It has always been very basic to always maintain a backup copy of your computer, so if somethign happens to your computer, you lose nothing, as you have a backup copy.
    "Will you also loose the information about your itunes gift card ?"
    When you redeem a gift card the balance is on your account.  It is accessible from anycomputer with itune, when you sign into your account.  This would not be affected by lodd of your computer.  Again, you should ALWAYS have a backup copy of your computer.
    "How do you run a diagnostic before you buy ? "
    Runa diagnostic of what before you buy what?
    "Is there a phone number to contat someone in this case , or could it be sent to my E-Mail address ?"
    Again,  in what case?  Could what be sent to your e-mail?

  • Help with this calc; I can't get it to work...

    can someone please tell me what is wrong with this calc script in the attached document?  It's the field titled "Total Tips"  Thank you so much; I've spent a lot of time on it today.  This stuff is new to me.  Thanks.

    Hi,
    Not sure if this is what you are referring to, but I noticed that your event.value is being commented out as it sits on the line above, when I moved your event to a new line it started to work out your calculation.
    Is this what you were having troubles with?

  • Help with 11gR2 install (win32) - can't get EM working

    Hi, I'm doing a clean install of 11.2.0.2 on a windows XP professional virtual machine. I've gone through this procedure 5 or 6 times now, and keep ending up with the same problem. Here's what I've done so far:
    1. Software only install (11.2.0.2)
    2. Ran network config assistant to set up LISTENER
    3. Run the database configuration assistent to set up a simple database
    The DBCA keeps ending up with an error message during the install saying "Error starting database control. Execute the following statements: 1) Set the environment variable ORACLE_UNQNAME to database unique name. 2) c:\oracle\product\11.2.0\dbhome_1\bin\emctl.bat start dbconsole
    If I do that, the dbconsole still doesn't start. Also I've tried setting the ORACLE_HOME and ORACLE_SID environment variables - they don't seem to work either. When it starts running the emctl.bat, I see the banner info, followed by "the dbconsole is starting...", then it dies with an error 2, saying refer typing net helpmsg 3547 (which is generic)
    Am I doing something dumb here? Not very savy on installations, any help would be greatly appreciated. Thinking the dbconsole should come up on a clean install without jumping through a ton of hoops.
    Thanks,
    Scott

    Pavan, thanks for the link. Actually, for this try around (probably my 5th or 6th over the last two days) it seems to be magically working. The ONLY difference is that I went into the c:\windows\system32\etc\hosts file and specifically added a line for the VM name, i.e.:
    Oracle11gR2 192.168.1.2
    Do you think that could have made a difference?
    Thx,
    Scott

  • HT5699 Help with car questions

    Wont let me buy things because security question for cars how lame is that!!!

    Help with security question about cars

  • HT4623 Hello! So I have a iPod 5th generation, and I just had a recent update, it was for iOS 6.1.3, and now for some reason, I can't get the iOS 7 update. Could anyone help me?

    Hello! So I have a iPod 5th generation, and I just had a recent update, it was for iOS 6.1.3, and now for some reason, I can't get the iOS 7 update. Could anyone help me?

    Apple's servers are slammed right now with iOS 7 downloads AND activation requests.
    Be patient and try again later.

  • Using iTunes to put my CD collection on my computer and then to my iphone5, I have an older Optiplex with 40 Gb internal and an external 1.5Tb drive. Question is can I get itunes to point to the 1.5 Tb drive to store my music, and if so how?

    Using iTunes to put my CD collection on my computer and then to my iphone5, I have an older Optiplex with 40 Gb internal and an external 1.5Tb drive. Question is can I get itunes to point to the 1.5 Tb drive to store my music, and if so how?

    Looks like I solved my own problem by going to itunes, preferences, advanced, media folder location.

  • Need help with deciding on witch phone to get

    Need some help with figuring out what phone to get? I’ am set on getting the DroidX and my wife wants the Droid 2. So here is my question? The Droid 2 is showing it can expand out to 40Gig has a drop down keyboard ect but what I don’t see is that it can do GPS.
    Can the DroidX memory be expanded bigger the 16 gig. I have lot of questions just need some answers
    Thanks

    Big_Ron wrote:
    I would love to go play with one. But I’m currently deployed  over sea’s with the Navy right now due to come home back to the states in a few months and I’m looking for a new phone, the one’s in Japan suck and so does the service. Can’t wait for an American phone. I compared both phones on the version website and it shoed the Droid x to support VZ navigator. And it showed the Droid 2 to be expandable to 40 gig. My wife wants the keyboard I personally don’t like the drop down keyboard. Is there any thing else you all can tell me every body has been extremely helpfully. But at this point it looks like I’m going with the droid X and my wife will be getting the Droid 2. What about sound, camera is the touch screen accurate?   
    Thank you for serving the U.S. Navy!
    I hope you do enjoy the new Droid X and your wife enjoys the Droid 2. Remember this....you both have 30 days to try out the phone. If you don't like for whatever reason or something is wrong with it just exchange it. This is nice because you can pretty much test out the phone & see if it meets your needs/wants.  Not sure about the sound or camera. For touch screen I have read it is pretty responsive. Have you ever owned a touch screen before? If not it may take a little time to warm up to the touch screen part. Just remember, practice makes perfect for typing on the touch screen and other things. I  think the Droid X has swype built into it which makes it easier to type on

Maybe you are looking for

  • Another solution for the "caller can't hear me" pr...

    Ran into a problem with my cell phone the other day...  I could hear the caller, but he could not hear me.  Also, the Voice Recorder would not hear me either.  All of which suggested the microphone was not working. I rummaged the web, tried the vario

  • Java plug-in 1.4

    Hello, I installed JDK 1.4.0_01, and used its HTML converter. However, when trying to load pages with the converted HTML on a computer without the plug-in installed, the plug-in download doesn't work. I believe it's because the URL that is planted in

  • Volume and app issues?!

    Well it started with my volume continuously shutting on and off by its self without the volume switch or buttons being touched. It will just turn on and off my volume until it feels like stopping. Shortly after this my apps stopped working, every tim

  • Safari on Leopard Crashes:  "Safari is missing important resources..."

    I installed Leopard, all was working, today I get: "Safari is missing important resources and should be reinstalled." Outside of the normal install, I installed all the optional stuff. I don't know if that contrbutes to the failure or not. The browse

  • Help - positions right in Firefox - not ie

    Thanks for any help in advance. I'm still learning. The problem is the swf positions almost correctly in Firefox but distorts my whole page in IE. Any guidance would be greatly appreciated. The url is http://www.bmwe3014.org/lucascav/indexfl.html