 |
|
 |
Hi there,
first, thanks for the tool. I've tried to convert some small projects and it worked fine. Except for one thing - it messed up "special" (read East European) characters e. g.
Original (UTF8 XML from MSP): Nasadiť Oracle8 Client release 8.0.6 version 3.0 ^ Translated (ANSI 1250): TITLE="Nasadi? Oracle8 Client release 8.0.6 version 3.0" ^
Have you any idea what went wrong? Thanks in advamce, take care,
tOPsEEK
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Could you make version of converter work without .NET. (maybe include some files in *.zip)
Do you think TDL -> MS Project converter about?
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
I am interrested to make a tool to import and export plannings from my home made projects manager to TODOlist. Would you please help me (or point me to articles) to understand the TODOList file format. TIA. Fathi B.N.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
If you want to understand the TODOList file format, then you will have to read either my source code or the source code of the TODOList TODOList[^] tool. For understanding XML you can go to W3Schools[^] site to get tutorials on XML.
Hope this helps.
Maharishi
Nothing is Impossible. Even impossible spells "i m possible"
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
Where can i get the last release (1.2 for MSP 2003) ?
The version downloaded by the link "http://www.codeproject.com/dotnet/TODOListConverter/TODOListConverter_exe.zip" is the one created in may 2005 (ver 1).
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
 |
yes its quite easy, because only thing you have to do is transform one kind of xml (todolist xml) into other type (msproject xml). So you can either do it programmatically by reading each & every data or u can write a xslt transformer that will do that job for you.
The only thing you will need to know will be the schema of the todo list xml & the msproject xml file...
Hope this help.
Thanks
Maharishi
Nothing is Impossible. Even impossible spells "i m possible"
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
 |
As far as schema of todolist is concerned you have to contact .dan.g for that, the developer of todolist application. As far as msproject is concerned you have to study the xml generated & make the assumptions.
Maharishi
Nothing is Impossible. Even impossible spells "i m possible"
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
 |
I also found this converter useful and because I'm working now with MSProjectPro2003 I wanted to adapt it to Project2003.
And I found that you only have to change Project/Title against Project/Name in XmlTranformer.cs at line 173 and rebuild the executable in order to be able to use TODOListConverter with Project 2003.
Thanks to Maharishi for the original converter
I would suggest to put this upgrade on this page in order to keep trace of the evolution of this useful converter. I can also provide the new .exe for 2003.
Chris
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |
|
 |
I'd be interested in seeing that too, Chris. I just played around for 5 minutes, making the changes that you suggested, but didn't work for me (I get an error message "File not in a proper format").
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
Thanks for the effort & supporting the project.
Since i have not worked with MS Project PRO 2003 i was not aware of the changes in the XML that has been done by the MS people.
But i will surely make the changes to the exe to include both Project/Title & Project/Name so that it is compatible with both the versions of MS Project i.e. MS Project 2002 & MS Project Pro 2003
One more thing can you send me the xml generated by the MS Project PRO 2003 software so that i can make the relevant changes... I dont have that version of the software 
Thanks
Maharishi Bhatia :->
Nothing is Impossible. Even impossible spells "i m possible"
|
| Sign In·View Thread·PermaLink | 1.00/5 (1 vote) |
|
|
|
 |
|
|
 |
|
 |
Hi,
I would like to try out the converter but the site only has v1.0 of the code and it looks like I need v1.2 as I use Project 2003. How do I get hold ot it?
Thanks
Richard
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Same for me - I only get 1.0 but would love to try 1.2 as I switched to Project 2003 recently. Any chance you upload the new version, please?!
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hello Everybody,
I have a question regarding the usage of Export / Import XML files into MS Project 2003.
I plan to write a client application (VC++ ) which could import a MS Project file (Importable XML File) into MS Project without opening the MS Project 2003 application.
A manual way of reimporting an exported MS Project File is possible. i wanted this to be done by the client application.
* This application should be able to import the project xml file into MS Project 2003.
* also Save the project file in its primitve format ".mpp" automatically if possible.
Shall be thankful for any ideas or suggestions, 
Sreenivas MK
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
TDL 4.1+ has a new plugin architecture for importers and exporters which would simplify the process of loading MSP xml files. such plugins are written as dlls, export 4 functions and must support a IImportTasklist or IExportTasklist pure virtual interface (like COM but less messy).
would it be okay for me to download the code, see if i can translate the code to use this method and then return it to you? or better still, is this within your skillset (no offense intended) ?
the reason for wanting the translation is that the plugin method is much neater than the executable technique and makes the import/translation process truly transparent to the user.
[update] should have looked at the code first. it's way beyond my current skillset to translate it. ps. does anyone know of any online documentation that shows how to create dlls exporting pure virtual interfaces under .NET? i've tried googling but without success. i just want to increase my knowledge in the area since it may be a useful way for me to start using .NET.
rgds
.dan.g.
AbstractSpoon Software
|
| Sign In·View Thread·PermaLink | 5.00/5 (1 vote) |
|
|
|
 |
|
 |
Hi,
.dan.g. wrote: [update] should have looked at the code first. it's way beyond my current skillset to translate it. ps. does anyone know of any online documentation that shows how to create dlls exporting pure virtual interfaces under .NET? i've tried googling but without success. i just want to increase my knowledge in the area since it may be a useful way for me to start using .NET.
pure virtual interfaces in VC are nothing but interface in C# you can create a interface and give all the method declarations in that. the class which is implementing the interface has to give a concrete implementations of all the methods defined in the interface. More than that you have to create the pure virtual interface in com and give it to .net it will automatically create a seperation layer between .net and com. And all the calling between the two sections will be taken care of.
I will be happy if you can provide just the dll of the IImportTasklist or IExportTasklist pure virtual interface so that i can test my project on that.
Thanks
Maharishi
Nothing is Impossible. Even impossible spells "i m possible"
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
Thought nobody programmed in MS Project! I only see posts in MSCE and its a very poor site for programmers.
Anyway, if i see some more ppl with interest in it, ill start writing some articles on it, as the support for Project programmers is scarce on the net. I program using PDS, i make PDS extenders and i use the standart office plugins for Project/Project Pro.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Hi,
I didnt do any programming in MS Project, but used MS Project capability to save mpp file as xml to generate ToDoList xml file.
You can start writing articles on MS Project if you want to, bcos there are lot of people who use MS Project for their project management.
Thanxs
Maharishi
Nothing is Impossible. Even impossible spells "i m possible"
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Here is my situation: I have an Exploded Bill Of Material For each part I have the Exploded Operations
I have written the procedures that will break down what pieces I need and on what days but I would love to be able to create a chart using project for the planners.
Do you know of any good resources for programming this type of application?
Thanks William O'Malley
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Im sorry, english is not my prime language. What is "an Exploded Bill Of Material"? Can u explain it a bit better?
Neverless, will it be web based (project server) or project professional based? The approach on the subject will differ a lot.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
Sure can =)
An Exploded Bill of Material lists all the pieces and parts required to manufacture a product. So lets say I have a widget(A). Widget(A) requires: Assembly 1 |--- Piece 1 |--- Piece 2 |--- Piece 3 Assembly 2 |--- Piece 4 |--- Piece 5 |--- Piece 6 Assembly 3 |--- Piece 7 |--- Piece 8 |--- Piece 9 This would be the exploded bill of material for Widget(A) All component pieces are listed. This list would answer the question what do I need to make for Widget(A)
Now for the Exploded Routing A requires Assembly 1 |--- Piece 1 |-- Operation 10 |-- Operation 20 |-- Operation 30 |--- Piece 2 |-- Operation 10 |-- Operation 20 |-- Operation 30 |--- Piece 3 |-- Operation 10 |-- Operation 20 |-- Operation 30 Assembly 2 |--- Piece 4 |-- Operation 10 |-- Operation 20 |-- Operation 30 |--- Piece 5 |-- Operation 10 |-- Operation 20 |-- Operation 30 |--- Piece 6 |-- Operation 10 |-- Operation 20 |-- Operation 30 Assembly 3 |--- Piece 7 |-- Operation 10 |-- Operation 20 |-- Operation 30 |--- Piece 8 |-- Operation 10 |-- Operation 20 |-- Operation 30 |--- Piece 9 |-- Operation 10 |-- Operation 20 |-- Operation 30 This shows not only what is required to manufacture Widget(A) it also shows how to manufacture each piece required for each assembly. This list answers both what do I need to make and how do I make it. My application goes even further to give a timeline of when each step would need to be completed inorder to meet a deadline.
Yes this would be a Web Application, but depending on what is involved I may decide to make this a windows application I am not sure yet.
Well I hope I have answered your question if not let me know.
thanks for the help.
William O'Malley
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
k, my toughts on that:
- Usually this kind of stuff isnt made in project, but done in some connected system like SAP or CCS and then Project gets an abstract view of that
- You havent specified yet what you really want to use project for. To calculate new schecdule of production depending on other activities? To give a good hierarquical view of the process and dependencies? Just to give a graph? Could you please specifie better?
-When i asked if it was going to be a Web-app, i was not talking about your application enviroment but in the way your application will interact with project. It can interact either with project professional (requires instalation of Project in the user machine), directly with Project Server database or with both.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
 |
sorry...
ok what do I want. I have calculated the schecdule using SQL Server 2000 all I need to do is display the data. I want to provide users with a Visual Timeline with dates: Part A is due on --- Part B Must be started on --- The application will interact with Project Pro. we do not have Project server.
Thank you, William O'Malley
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |