Project Mangement Tools -- several questions

I just purchased a Mac Pro and extra internal hard drive and have the following PC compantibility questions:
1. Is Parallels still the best way to run PC product on a Mac (I think I have a Parallels 5 disk somewhere around here.)
2. Is Microsoft Project still not obtainable on the Mac, i.e. I will have to run the PC Product.
3. Are there any project management tools on the Mac that export a Project file (so that PC users could also work with it)?
4. From the Mac point of view, what is the best project management tool?

1. What's best is a matter of personal opinion based on your expectations and needs.
2. Yes
3. Try Fast Track Scheduler or Omni Plan
4. I suggest you search for online reviews.

Similar Messages

  • HRMS Integration with third party Project Management Tool

    Hi All,
    We have plans of procurring a third party Project Management Tool which needs to be integrated to existing Oracle Financials. Project Management Tool needs employee information for its functioning.
    a)Is there any API available for this purpose which exposes HR data to any third party tool?
    b)Can anyone suggest what should be the approach for such integration?
    Thanks in advance
    Regards,
    SA

    What 3rd party tool are you going to be using? You might get lucky and it might be something that Oracle has bought recently. Does this post mean you are using Oracle Projects? If so, you may want to post this question in that forum as well. At least you would limit the audience to projects oriented customers, so might get some better replies there than you will here. Food for thought.
    John Dickey

  • -newBee-Im tring to use Creator 2 EA 2 and have several questions -

    Hi
    Im tring to use Creator 2 EA 2 and have several questions - i will be thankful for reciving answers.
    0-It take 300 meg of my memory in small 10 page sample project / is it normal ? (memory shown in task manager windows XP)
    0-Where i can find documents about Creator way of using RowSet technology ?
    I have several question which i could not find answers in documents or online tutorials my questions are :
    1-for example i have a table in a data source ? how i can access my table ?
    2-i bind fields of jsftest table to texteditors i can save changes to current field
    by using : jsftestDataProvider.commitChanges();
    Now how i can insert a new ROW ?
    i tried jsftestDataProvider.appendRow(); in another button action but it insert null items
    into database / how i can add a row to my table
    3-how i can delete a field based on a field value ? or even primary key value ?
    should i write the sql Script in Session bean method and use that in my jsf pages ? or maybe RowSet technology has some
    solution for this ?
    4-How i can use HTML tags (not jsf tags)inside a jsf file ?
    is it possible to use them or not ? for example to generate a table with some dynamic column number?
    5-is it possible to use JSP tag libraries like DisplayTag in jsf ?
    6-does Creator 2 EA 2 support Myface ?
    7-can i add html tags to result page in java source file ? for example in Action on a button add some HTML tag to result page ?
    8-how i can pass url parameter between pages ? if i do not like to use request bean.
    Its my question for Now ;)
    Thank you for answering

    Haha.... thats normal.
    I've 768mb of ram, and i can still feel the lag, especially when the server and pointbase is one,
    worst still.... i having JSC and Netbean running together -_-"
    i think 1.5GB of ram wld be gd
    Regarding the tutorial part, there are api in the "Dynamic Help" box,
    What i did was extracting the java doc into my desktop for easy reference. JSC's screen is too small.
    U can find these references under "C:\Sun\Creator2\rave2.0\docs". Just unzip them

  • Several Questions: Urgent

    Hi,
    I have several questions I need answers to. And I've got someone waiting on this DVD, and I need to finish it tonight for various reasons. So quick answers would be VERY appreciated ^_^
    First (and main) question: My project is currently to big to fit on a normal disc. I go to prefs to set size to dual-layer, yet it remains grayed out and I can't select it. Why might this be? I use an external burner if that makes any difference.
    2nd question: I tried to just save the project as a disc image (didn't work, I assume it has to be set to dual-layer capacity to even to that). But I got rid of some footage, giving the project space to fit on a normal DVD. I try to save as image again, and I get the error saying "There seems to be too much motion menu content in your project".
    I get info and see that I have somehow 27:06 minutes of content as menus and theres only a max of 7:30.
    How do I have that much content there? I have 4 menus, the main (with a 30 second clip), the movies menu with options to go to chapter select (same clip), and then to pages of chapters (with quick audio clip). How does that translate to 27:06? Any ideas?
    Thats about it, I need it dual-layer size, and figure out the menu space issue.
    Please help!
    Thanks ^_^
    Intel Mac Mini Mac OS X (10.4.8) 1.66ghz Intel Core Duo, 80gig HD, 2gigs RAM

    if iDVD6 and system profiler cannot see the ext. FW burner then your mac won't allow you to burn nor create a DL Disc image....
    Power down the burner. Now make sure the fw cable fits snuggly to your mac & the opposite end to the burner. Restart the mac. Now power up the ext. burner. Play any completed iDVD or commercial dvd and allow it to mount on the desktop. Now use the DVD Player app to play the dvd. Works? Great! ..... Now hit the eject. Quit DVD Player. Launch iDVD6 and you should be set to go. If not, post back.
    Btw ... Make sure to select DL in iDVD's preferences if you wish to burn to that particular media.
    Click Here
    I normally use Verbatim or Maxell but this one is a good alternate choice in my own Pioneer 110 and 107 drives:

  • Can you help me with several questions?

    I have several questions
    1. What boxes do I need to click on when I click on a link and want it to open in windows instead of tabs?
    2. Why is it that I can not add norton 360 and yahoo on my add on bar?
    3. Is it possible to just use firefox to open up my aol without signing on to windows and signing on to aol and then using firefox as my search engine and if so how do I do this?
    4. Why is it that there are so many times that when trying to go to to a link that it keeps coming up try again?
    5. Also what kind of antivirus and spyware do foxfire have or will my norton 360 cover this on foxfire?
    If you can help me with all this then I would appreciate it

    You could set it up so that the user never has to press "commit" button by modifying the "update" and "delete" event within "DataHandlerComponent.jsp" which will commit on all updates and deletes. This will also commit the "inserts" as the insert process will take you the the update page anyway.
    Bill G...
    "DataHandlerComponent.jsp"
    -- snip --
    <%-- DML event handling (Create handling is embeded in DataEditComponent)--%>
    <jbo:OnEvent name="update">
         <jbo:Row id="myrow" datasource="ds" rowkeyparam="jboRowKey" action="Update" />
         <%-- bg add - want to commit immediately --%>
         <jbo:Commit appid="<%=amId%>" />
    </jbo:OnEvent>
    <jbo:OnEvent name="delete">
         <jbo:Row id="delrow" datasource="ds" rowkeyparam="jboRowKey" action="Delete" />
         <%-- bg add- want to commit immediately --%>
         <jbo:Commit appid="<%=amId%>" />
    </jbo:OnEvent>

  • Several questions on Fireworks from absolute beginner

    Hello!
    At the moment I'm in the very beginning of web-designing process and I've been using Fireworks trial for several days only. Before that I've created only one website in Joomla! and that's all. I've got several questions and I would be glad if masters of Fireworks will post full answers on them.
    I've read the official manual, but didn't check any additional materials, because I feel better when learning myself with help in form of answers to concrete questions.
    Here is how I see process of making simple website in Fireworks: draw website and then make it to work. I did first part and I've prepared my website. It of course looks ugly, but I want to start from it, as I'm learning. Here it is:
    Okay, what is the next thing I should do? Right, I should slice it. And here goes the question: how should I slice my menu? I want it to be simple menu, so when you move mouse over "About me" it lightens in some other color and some content should appear in right part of this structure. How would I implement it using Fireworks? Then in what format should I export my webpage? HTML and CSS? How do I write styles in CSS through Fireworks? And final question is how can I make my website be in center of page (I've tried to add <center></center> inside "index.htm" file, but no luck)? I would also like to know what do I need to do with all images so you can't select them with mouse and move all around in your browser? How do I stick them:
    Thanks and sorry for too many questions at one time,
    Aleks.

    Looking at your mockup, that navbar could probably be created 
    completely using CSS and HTML, rather than slice up the "button areas" 
    but if you want to go that route, I'd recommend creating button 
    symbols. The slicing is done for you and you can create up to four 
    states for the button.
    If you want to export the graphics only, choose File > Export.
    Browse to your site folder
    Set the Export option to Images only
    Make sure you are exporting slices
    Deselect the option to export areas without slices
    Click Save (Windows) or Export (Mac)
    Use DW to create your page, insert your images and add your rollover 
    behaviors.
    HTH
    Jim Babbage
    NewMedia Services
    http://www.newmediaservices.ca
    Community MX Partner -
    http://www.communitymx.com/author.cfm?cid=1036
    Adobe Community Expert
    http://www.adobe.com/communities/experts/members/206.html
    Author - Lynda.com
    http://movielibrary.lynda.com/authors/author/?aid=188
    Author: Peachpit Press
    http://www.peachpit.com/store/product.aspx?isbn=0321562879

  • Project management tools for complex publishing project?

    I was wondering what project management tools people use for managing complex InDesign projects? Software-oriented project management tools, or are there tools specifically for publishing projects?

    The "Yes" is a link to a list of them. There are also a number of web-based services like 37 Signals.

  • Several question regarding kde4

    Hi!
    Yesterday I have upgraded kde to 4.1 version. I am quite happy with it, but I have several questions:
    1. Is there any way to organize icons on desktop? In KDE 3 we had "Snap to grid" and was ok. Now they are freely mixed on desktop.
    2. I am missing some KDE 3 styles (like domino). And now Qt3 apps uses basic Qt styles (which are awful). Trying to install it from pacman results in error, because styles require kde3-base.
    P.S. I rather don't like default theme for KDE4. I miss some nice and polished window decorations and styles and of course grayish gray and more gray color schemes .

    I heard about but didn't test Folder view (for managing icons on desktop). Also you can right click on applications in the menu and tell them to be put on the desktop. Or at least it worked before, with the first kde-workspace package merged. Unfortunately I cannot test now, since I'm on a win desktop at work.
    Last edited by ckristi (2008-07-31 13:10:06)

  • Project management tool in SAP itself like Microsoft Project planner

    Hi Experts,
    I need to have information on the project management tool available within SAP.
    Is there any project management tool like microsoft project planner available within SAP.
    I heard that SAP solution manager does it. Please let me know whether it is right or not?. If correct could you please provide the relevent document or let me know how could I do that in the SAP BI 7.0 or in the solution manager.
    Your help would vve appreciated.
    Thanks

    Hi,
    Yes..Solution Manager is a tool in SAP whichcan be used for Project Management.
    You can check SAP Help for details on solution manager.
    Regards.

  • Image Folder in Project Manger not displaying Images

    Not much on this in RoboHelp's help.
    The Image Folder in my Project Manger is empty, even though I
    have at least 100 images. I just realized that as I was adding
    images they should have been displaying in the Project Manager's
    Image Folder (if I interpret it correctly). It has reproduced the
    file folder structure of my HTML folder. There is no actual Image
    folder on my drive. Is this supposed be similar in concept to the
    Library feature in other Adobe products? How do I get images into
    the folder?

    Can we take stock here?
    You have produced an unused images report and there is
    nothing that is unused correct?
    Go to your topics and locate an image that is in the topic
    but that you cannot locate under the image folder. Double click the
    image and you will be able to find where it is located. Post back
    with the path.
    Also run the Images Report. Does that show the images that
    are in the root of the project?
    If necessary I can remote to your machine via an Adobe
    provided link to see what is going on. There will be a chat panel
    or you can phone me (UK based). Before I can do anything on your
    PC, I have to request control and you can suspend that instantly at
    any time. We can do that next week if we cannot resolve this any
    other way.

  • Several questions that I do not see in the "FAQ" about CC.

    I have several questions that I do not see in the "FAQ". Here are three of them.
    1) After a cancellation of membership, for whatever reason, will I still be able to use the After Effects I bought before this CC thing?
    2) What happened to the software I have purchased in the past? I can no longer link to the page that contains my serial numbers for the products that I have purchased.
    3) And can I no longer download my software if my copies are lost?
    4) Is CC the only way to get future software versions? It appears that using the software through a subscription keeps one from upgrading to new versions without having to keep paying once you purchased or one will not be able to use the software.

    1) After a cancellation of membership, for whatever reason, will I still be able to use the After Effects I bought before this CC thing?
    1, After cancelling CC you can use the perpetual products purchased by you earlier. If you have registered them you can access them via Adobe.com (Retail purchase)
    2) What happened to the software I have purchased in the past? I can no longer link to the page that contains my serial numbers for the products that I have purchased.
    As mentioned all your previous purchases are available to you, to get the serial number of past if they are retail purchase & registered then :
    Enter your Adobe ID and password, and then click Sign In. Go to manage account(you get this when the cursor is hovered over your sign in name, choose all products.
    The My Adobe page is displayed. All your registered products and their serial numbers are listed in theMy products section
    3) And can I no longer download my software if my copies are lost?
    Yes you can download it if you have purchased it as an download link as the download option is also available with the serial number, you can find some download here also Download and Installation Help
    4) Is CC the only way to get future software versions? It appears that using the software through a subscription keeps one from upgrading to new versions without having to keep paying once you purchased or one will not be able to use the software.
    The best part of CC is that you do not need to make another purchase, the CC keeps on upgrading on its own at no extra cost, you can get the upgrades till the time you have active CC.
    Regards
    Rajshree

  • I have several questions. I need to upload my photos to free up space on my iPhone. I put the cable in my MacBook  Pro and tried to upload photos . After 2 hours my computer says it is still uploading. I then disconnected my cable and tried to shut down m

    I Have several questions. I tried to upload photos from my iPhone 4S to I photo. 2 hours later it says it is still uploading. I disconnected my cable from MacBook Pro and iPhone and tried to completely shut die all Apis and computer. The wheel for shut down ran 30 min and finally I did a force quit. Help! I would live a real human to talk to. Donna in El Paso 9155653231

    This can be used to boot the machine and delelte enough files to get it to boot normally.
    .Create a data recovery/undelete external boot drive
    Read about storage drive so you can store your extra stuff.
    Most commonly used backup methods
    Also here to see how a full boot drive slows the machine down
    Why is my computer slow?

  • Several question about SVN PKGBUILDs

    I'd like to make a PKGBUILD for an SVN version of a program. I have just looked at existing PKGBUILDs and now there are  several questions:
    * Why are PKGBUILDs made for particular revision? PKGBUILDs for the latest revision would not require maintainance and would be more useful for users... (IMHO)
    * Why does everyone make 'svn co' in their PKGBUILDs and not 'svn export'? I don't think that users will commit their changes under anonymous account anyway... (that will be 98% impossible)

    Lazer wrote:* Why are PKGBUILDs made for particular revision? PKGBUILDs for the latest revision would not require maintainance and would be more useful for users... (IMHO)
    Because you have to put one version when you write the PKGBUILD.
    Besides, it indicates that the maintainer of the PKGBUILD tested this particular revision.
    It is impossible to know if the PKGBUILD or the package will still work correctly at a future revision (there could be changes in the build system, other compilation problems, new bugs in the software, etc...)
    That said, makepkg by default will update the revision automatically when you run it. But this can be prevented with --holdver :
          --holdver    Prevent automatic version bumping for development PKGBUILDs
    * Why does everyone make 'svn co' in their PKGBUILDs and not 'svn export'? I don't think that users will commit their changes under anonymous account anyway... (that will be 98% impossible)
    Uh?
    $ svn -h co
    checkout (co): Check out a working copy from a repository.
    PS : have a look at /usr/share/pacman/PKGBUILD-svn.proto from abs package for a prototype of a svn pkgbuild.
    Last edited by shining (2008-08-17 09:08:05)

  • Creating Projects via Project Mangement Module vs Project Costing Module

    Hi,
    Is it true that I have to use Project Management(Project Super User responsibility) to create projects in order to fully utilize Project Management Module(Project Super User responsibility)?
    I noticed that if I create a project via Project Costing Super User(Form based), I cannot access functions such as Project, Resoruces, Workplan, Financial tabs,etc. when quirying the project via Project Management Module(Project Super User responsibility)
    Does it matter which responsibility/module you use to create projects?
    Please advise.
    Thanks,
    Joon

    Hi Dina
    Thanks for your answer. This is a situation that I have. We'be been using Project Costing for years and we mihgt start to enter a lot of budget data. The budget data are huge so we're looking at WebADI solution. I noticed that in order to use WebADI I have to configure Project Mangement and use Edit In Excel function which is from Project List page in Project Mangement module. (Cannot use WebADI as standalone)
    1. Is my understanding about WebADI correct? I have to start WebADI from project management module, not from Excel.
    2. Do you remember the program names that convert/upgrade to project management version of projects? Is the program simple to run and stable/
    Thanks,
    Joon

  • [SMS capabilities] Several questions

    I have several questions about iPhone SMS capabilities.
    Q1 : is it possible to launch an application when receiving a SMS with particular content or from a specific phone number ? What kind of notifications can be done toward the application when receiving this SMS ?
    Q2 : is it possible to parse SMS content inside the application ?
    Q3 : is it possible to send an automatic SMS with the application, without user need to write it ? For example, the user does a particular action that results into a SMS sending toward a server which controls other user equipments.
    Thanks in advance for your answers.

    Hi there! From my experience (having very very briefly developed for iPhone) is that:
    1. No, and the SMS app cannot 'hand off' to another app;
    2. The iPhone SMS database cannot be read from another 3rd party app;
    3. I'm unsure whether the SMS app has it's own protocol (like, sms:).
    Your best bet, if you are a registered iPhone developer, is to post these questions on the Apple iPhone Developer forums.
    Good luck!

Maybe you are looking for

  • Mounting FAT32 in Solaris 10 step by step

    Hi! I had problem with do that and I finally solve. I saw that many peoples have problems with mounting FAT32 so I decided to write how I do that. 1. FAT32 must be a primary partition! 2. # smc 3. In This Computer-> Storage-> Disks check device name.

  • Include servlet-out in another servlet

    Hi, is there a way to include the output of one servlet in another one? The only possibility I have found is to call the other servlet via http ( i am using org.apache.httpclient) but the problem with this technique is, that I couldn�t find a way to

  • Can Genius access music in the cloud or just what's stored locally?

    I have over 24000 songs in the Cloud and over 9000 stored locally. When I select a song in iTunes and click the Genius button, a playlist is generated but it only pulls from my local library. Is it possible for Genius to pull music that exists only i

  • When I deleted MobileMe off my mac the MobileMe calendars are still in iCal how do I remove these?

    I had a mobile me trial account and when i deleted my account my mobile me callenders remaind in my ical account how do i remove these, and i dont want to remove the events i want to rome the actuall mobile me part from the right side on the grey sid

  • ORACLE'S BITCHES SONS! I WANT ORACLE 8i iso download!

    ORACLE'S BITCHES SONS! I WANT ORACLE 8i iso download!ORACLE'S BITCHES SONS! I WANT ORACLE 8i iso download!ORACLE'S BITCHES SONS! I WANT ORACLE 8i iso download!ORACLE'S BITCHES SONS! I WANT ORACLE 8i iso download!ORACLE'S BITCHES SONS! I WANT ORACLE 8