net.sf.mpxj-for-vb
12.10.0
Advisory: https://github.com/advisories/GHSA-j945-c44v-97g6 | Severity: moderate |
See the version list below for details.
dotnet add package net.sf.mpxj-for-vb --version 12.10.0
NuGet\Install-Package net.sf.mpxj-for-vb -Version 12.10.0
<PackageReference Include="net.sf.mpxj-for-vb" Version="12.10.0" />
paket add net.sf.mpxj-for-vb --version 12.10.0
#r "nuget: net.sf.mpxj-for-vb, 12.10.0"
// Install net.sf.mpxj-for-vb as a Cake Addin #addin nuget:?package=net.sf.mpxj-for-vb&version=12.10.0 // Install net.sf.mpxj-for-vb as a Cake Tool #tool nuget:?package=net.sf.mpxj-for-vb&version=12.10.0
MPXJ for VB
MPXJ is a Java library which allows a variety of project file formats and databases to be read and written. This NuGet package uses IKVM to translate the Java library into a .Net assembly. You can find details of the classes and methods in the Javadocs, and more general documentation on the MPXJ website.
This version is not a direct translation of the original Java library: instead it provides properties rather than requiring the use of getter and setter methods to allow more idiomatic VB to be written when using this library.
A version of this assembly is available from NuGet (MPXJ) which is a direct translation of the Java library and another version of the assembly (MPXJ for C#) is also available which is more suited for use with C#.
After installing this package you can either work with some of the simple built-in utilities provided by MPXJ for tasks like file format conversion:
Imports net.sf.mpxj.sample
New MpxjConvert().process("example.mpp", "example.mpx")
or you can interact directly with the object model exposed by MPXJ to extract data:
Imports net.sf.mpxj.reader
Imports Task = net.sf.mpxj.Task
Dim project = New UniversalProjectReader().read("example.mpp")
System.Console.WriteLine("Tasks")
For Each task As Task In project.Tasks
System.Console.WriteLine(task.ID.toString() & vbTab + task.Name)
Next
or finally you can generate your own schedule:
Imports java.text
Imports net.sf.mpxj
Imports net.sf.mpxj.writer
' In the example below we'll be generating an MSPDI
' file which we can import into Microsoft Project.
Dim filename = "example.xml"
Dim fileformat = FileFormat.MSPDI
' Create a simple date format to allow us to easily set date values.
Dim df = New SimpleDateFormat("dd/MM/yyyy")
' Create a ProjectFile instance
Dim file = New ProjectFile()
' Add a default calendar called "Standard"
Dim calendar = file.addDefaultBaseCalendar()
' Add a holiday to the calendar to demonstrate calendar exceptions
calendar.addCalendarException(df.parse("13/03/2006"), df.parse("13/03/2006"))
' Retrieve the project properties and set the start date. Note Microsoft
' Project appears to reset all task dates relative to this date, so this
' date must match the start date of the earliest task for you to see
' the expected results. If this value is not set, it will default to
' today's date.
Dim properties = file.ProjectProperties
properties.StartDate = df.parse("01/01/2003")
' Set a couple more properties just for fun
properties.ProjectTitle = "Created by MPXJ"
properties.Author = "Jon Iles"
' Let's create an alias for TEXT1
Dim customFields = file.CustomFields
Dim field = customFields.getOrCreate(TaskField.TEXT1)
field.setAlias("My Custom Field")
' Add resources
Dim resource1 = file.addResource()
resource1.Name = "Resource1"
Dim resource2 = file.addResource()
resource2.Name = "Resource2"
resource2.MaxUnits = java.lang.Double.valueOf(50.0)
' Create a summary task
Dim task1 = file.addTask()
task1.Name = "Summary Task"
' Create the first sub task
Dim task2 = task1.addTask()
task2.Name = "First Sub Task"
task2.Duration = Duration.getInstance(10.5, TimeUnit.DAYS)
task2.Start = df.parse("01/01/2003")
task2.setText(1, "My Custom Value 1")
' We'll set this task up as being 50% complete. If we have no resource
' assignments for this task, this is enough information for MS Project.
' If we do have resource assignments, the assignment record needs to
' contain the corresponding work and actual work fields set to the
' correct values in order for MS project to mark the task as complete
' or partially complete.
task2.PercentageComplete = java.lang.Double.valueOf(50.0)
task2.ActualStart = df.parse("01/01/2003")
' Create the second sub task
Dim task3 = task1.addTask()
task3.Name = "Second Sub Task"
task3.Start = df.parse("11/01/2003")
task3.Duration = Duration.getInstance(10, TimeUnit.DAYS)
task3.setText(1, "My Custom Value 2")
' Link these two tasks
task3.addPredecessor(task2, RelationType.FINISH_START, Nothing)
' Add a milestone
Dim milestone1 = task1.addTask()
milestone1.Name = "Milestone"
milestone1.Start = df.parse("21/01/2003")
milestone1.Duration = Duration.getInstance(0, TimeUnit.DAYS)
milestone1.addPredecessor(task3, RelationType.FINISH_START, Nothing)
' This final task has a percent complete value, but no
' resource assignments. This is an interesting case it it requires
' special processing to generate the MSPDI file correctly.
Dim task4 = file.addTask()
task4.Name = "Next Task"
task4.Duration = Duration.getInstance(8, TimeUnit.DAYS)
task4.Start = df.parse("01/01/2003")
task4.PercentageComplete = java.lang.Double.valueOf(70.0)
task4.ActualStart = df.parse("01/01/2003")
' Assign resources to tasks
Dim assignment1 = task2.addResourceAssignment(resource1)
Dim assignment2 = task3.addResourceAssignment(resource2)
' As the first task is partially complete, and we are adding
' a resource assignment, we must set the work and actual work
' fields in the assignment to appropriate values, or MS Project
' won't recognise the task as being complete or partially complete
assignment1.Work = Duration.getInstance(80, TimeUnit.HOURS)
assignment1.ActualWork = Duration.getInstance(40, TimeUnit.HOURS)
' If we were just generating an MPX file, we would already have enough
' attributes set to create the file correctly. If we want to generate
' an MSPDI file, we must also set the assignment start dates and
' the remaining work attribute. The assignment start dates will normally
' be the same as the task start dates.
assignment1.RemainingWork = Duration.getInstance(40, TimeUnit.HOURS)
assignment2.RemainingWork = Duration.getInstance(80, TimeUnit.HOURS)
assignment1.Start = df.parse("01/01/2003")
assignment2.Start = df.parse("11/01/2003")
' Write a 100% complete task
Dim task5 = file.addTask()
task5.Name = "Last Task"
task5.Duration = Duration.getInstance(3, TimeUnit.DAYS)
task5.Start = df.parse("01/01/2003")
task5.PercentageComplete = java.lang.Double.valueOf(100.0)
task5.ActualStart = df.parse("01/01/2003")
' Write a 100% complete milestone
Dim task6 = file.addTask()
task6.Name = "Last Milestone"
task6.Duration = Duration.getInstance(0, TimeUnit.DAYS)
task6.Start = df.parse("01/01/2003")
task6.PercentageComplete = java.lang.Double.valueOf(100.0)
task6.ActualStart = df.parse("01/01/2003")
' Write the file
New UniversalProjectWriter(fileformat).write(file, filename)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp3.1 is compatible. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETCoreApp 3.1
- System.Configuration.ConfigurationManager (>= 4.7.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
13.6.0 | 127 | 11/6/2024 | |
13.5.1 | 447 | 10/28/2024 | |
13.5.0 | 521 | 10/17/2024 | |
13.4.2 | 643 | 10/8/2024 | |
13.4.1 | 657 | 10/7/2024 | |
13.4.0 | 921 | 9/18/2024 | |
13.3.1 | 671 | 8/30/2024 | |
13.3.0 | 1,005 | 8/22/2024 | |
13.2.1 | 1,307 | 8/13/2024 | |
13.2.0 | 804 | 8/12/2024 | |
13.1.0 | 1,413 | 7/26/2024 | |
13.0.2 | 1,712 | 7/8/2024 | |
13.0.1 | 509 | 7/4/2024 | |
13.0.0 | 956 | 6/20/2024 | |
12.10.3 | 564 | 6/14/2024 | |
12.10.2 | 725 | 6/3/2024 | |
12.10.1 | 543 | 5/22/2024 | |
12.10.0 | 529 | 5/13/2024 | |
12.9.3 | 814 | 4/24/2024 | |
12.9.2 | 542 | 4/19/2024 | |
12.9.1 | 993 | 4/17/2024 | |
12.9.0 | 1,150 | 4/11/2024 | |
12.8.1 | 893 | 3/11/2024 | |
12.8.0 | 614 | 3/4/2024 | |
12.7.0 | 1,567 | 2/7/2024 | |
12.6.0 | 599 | 1/22/2024 | |
12.5.0 | 756 | 12/18/2023 | |
12.4.0 | 1,068 | 11/23/2023 | |
12.3.0 | 521 | 11/7/2023 | |
12.2.0 | 914 | 10/12/2023 | |
12.1.3 | 951 | 9/25/2023 | |
12.1.2 | 790 | 9/21/2023 | |
12.1.1 | 1,127 | 8/23/2023 | |
12.1.0 | 895 | 8/22/2023 | |
12.0.2 | 1,160 | 7/25/2023 | |
12.0.1 | 1,567 | 7/21/2023 | |
12.0.0 | 1,944 | 6/29/2023 | |
11.5.4 | 2,428 | 6/27/2023 | |
11.5.3 | 1,683 | 6/19/2023 | |
11.5.2 | 1,231 | 6/8/2023 | |
11.5.1 | 1,530 | 5/24/2023 | |
11.5.0 | 1,121 | 5/19/2023 | |
11.4.0 | 2,530 | 5/8/2023 | |
11.3.2 | 1,746 | 4/29/2023 | |
11.3.1 | 1,637 | 4/21/2023 | |
11.3.0 | 1,954 | 4/12/2023 | |
11.2.0 | 2,691 | 3/13/2023 | |
11.1.0 | 529 | 2/15/2023 | |
11.0.0 | 1,122 | 2/8/2023 | |
10.16.2 | 625 | 1/29/2023 | |
10.16.1 | 610 | 1/26/2023 | |
10.16.0 | 610 | 1/24/2023 | |
10.15.0 | 644 | 1/11/2023 | |
10.14.1 | 669 | 11/25/2022 | |
10.14.0 | 726 | 11/21/2022 | |
10.13.0 | 760 | 11/16/2022 | |
10.12.0 | 784 | 11/1/2022 | |
10.11.0 | 867 | 9/27/2022 | |
10.10.0 | 938 | 9/13/2022 | |
10.9.1 | 842 | 8/31/2022 | |
10.9.0 | 829 | 8/23/2022 | |
10.8.0 | 864 | 8/17/2022 | |
10.7.0 | 882 | 8/9/2022 | |
10.6.2 | 1,143 | 6/29/2022 | |
10.6.1 | 855 | 6/14/2022 | |
10.6.0 | 940 | 6/8/2022 | |
10.5.0 | 927 | 5/24/2022 | |
10.4.0 | 923 | 5/9/2022 | |
10.3.0 | 901 | 4/29/2022 | |
10.2.0 | 1,051 | 3/6/2022 | |
10.1.0 | 918 | 1/29/2022 | |
10.0.5 | 826 | 1/11/2022 | |
10.0.4 | 842 | 1/7/2022 | |
10.0.3 | 859 | 12/22/2021 | |
10.0.2 | 868 | 12/16/2021 | |
10.0.1 | 875 | 12/10/2021 | |
10.0.0 | 870 | 12/1/2021 | |
9.8.3 | 863 | 11/30/2021 | |
9.8.2 | 941 | 11/1/2021 | |
9.8.1 | 921 | 10/13/2021 | |
9.8.0 | 974 | 9/30/2021 | |
9.7.0 | 901 | 9/28/2021 | |
9.6.0 | 941 | 9/13/2021 | |
9.5.2 | 936 | 8/22/2021 | |
9.5.1 | 958 | 7/2/2021 | |
9.5.0 | 998 | 6/30/2021 | |
9.4.0 | 962 | 6/11/2021 | |
9.3.1 | 1,144 | 5/18/2021 | |
9.3.0 | 924 | 5/6/2021 | |
9.2.6 | 926 | 4/26/2021 | |
9.2.5 | 956 | 4/20/2021 | |
9.2.4 | 936 | 4/9/2021 | |
9.2.3 | 943 | 4/8/2021 | |
9.2.2 | 925 | 4/7/2021 | |
9.2.1 | 952 | 4/4/2021 | |
9.2.0 | 942 | 3/30/2021 | |
9.1.0 | 1,054 | 3/11/2021 | |
9.0.0 | 1,110 | 2/18/2021 | |
8.5.1 | 1,099 | 1/8/2021 | |
8.5.0 | 1,033 | 1/6/2021 | |
8.4.0 | 1,019 | 12/29/2020 | |
8.3.5 | 1,049 | 12/15/2020 | |
8.3.4 | 1,070 | 12/10/2020 | |
8.3.3 | 1,070 | 11/24/2020 | |
8.3.2 | 1,092 | 10/22/2020 | |
8.3.1 | 1,038 | 10/14/2020 | |
8.3.0 | 1,109 | 10/13/2020 | |
8.2.0 | 1,128 | 9/9/2020 | |
8.1.4 | 1,130 | 8/31/2020 | |
8.1.3 | 1,191 | 6/25/2020 | |
8.1.2 | 1,116 | 6/18/2020 | |
8.1.1 | 1,122 | 6/17/2020 | |
8.1.0 | 1,107 | 6/11/2020 | |
8.0.8 | 1,189 | 4/20/2020 | |
8.0.6 | 1,173 | 3/5/2020 | |
8.0.5 | 3,309 | 2/7/2020 | |
8.0.4 | 1,152 | 2/6/2020 | |
8.0.3 | 1,160 | 1/27/2020 | |
8.0.2 | 1,143 | 1/16/2020 | |
8.0.1 | 1,235 | 1/5/2020 | |
8.0.0 | 1,212 | 1/2/2020 | |
7.9.8 | 1,168 | 12/27/2019 | |
7.9.7 | 1,137 | 11/25/2019 | |
7.9.5 | 1,147 | 11/19/2019 | |
7.9.4 | 1,143 | 11/8/2019 | |
7.9.3 | 1,252 | 9/10/2019 | |
7.9.2 | 1,233 | 8/19/2019 | |
7.9.1 | 1,188 | 7/1/2019 | |
7.9.0 | 1,176 | 7/1/2019 | |
7.8.4 | 1,166 | 6/27/2019 | |
7.8.3 | 1,215 | 5/24/2019 | |
7.8.2 | 1,224 | 5/19/2019 | |
7.8.1 | 6,427 | 2/13/2019 | |
7.8.0 | 1,322 | 1/18/2019 | |
7.7.1 | 1,546 | 10/23/2018 | |
7.7.0 | 1,394 | 10/12/2018 | |
7.6.3 | 1,432 | 10/4/2018 | |
7.6.2 | 1,473 | 8/30/2018 | |
7.6.1 | 1,456 | 8/29/2018 | |
7.6.0 | 1,570 | 7/13/2018 | |
7.5.0 | 1,608 | 6/19/2018 | |
7.4.4 | 1,607 | 6/6/2018 | |
7.4.3 | 1,605 | 5/25/2018 | |
7.4.2 | 1,642 | 4/30/2018 | |
7.4.1 | 1,629 | 4/16/2018 | |
7.4.0 | 6,790 | 3/23/2018 | |
7.3.0 | 1,612 | 3/12/2018 | |
7.2.1 | 1,650 | 1/26/2018 | |
7.2.0 | 1,643 | 1/18/2018 | |
7.1.0 | 1,647 | 1/3/2018 | |
7.0.3 | 1,600 | 12/21/2017 | |
7.0.2 | 1,539 | 11/20/2017 | |
7.0.1 | 1,508 | 11/20/2017 | |
7.0.0 | 1,543 | 11/8/2017 | |
6.2.1 | 1,597 | 10/11/2017 | |
6.2.0 | 1,535 | 10/6/2017 | |
6.1.2 | 1,541 | 9/12/2017 | |
6.1.0 | 1,669 | 7/28/2017 | |
6.0.0 | 1,590 | 7/22/2017 | |
5.14.0 | 1,542 | 7/13/2017 | |
5.13.0 | 1,635 | 6/27/2017 | |
5.12.0 | 1,586 | 6/26/2017 | |
5.11.0 | 1,625 | 6/20/2017 | |
5.10.0 | 1,587 | 5/23/2017 | |
5.9.0 | 1,625 | 4/27/2017 | |
5.8.0 | 1,591 | 4/21/2017 | |
5.7.1 | 1,638 | 3/22/2017 | |
5.7.0 | 1,594 | 3/20/2017 | |
5.6.5 | 1,620 | 3/7/2017 | |
5.6.4 | 1,641 | 2/16/2017 | |
5.6.3 | 1,604 | 2/8/2017 | |
5.6.2 | 1,655 | 2/6/2017 | |
5.6.1 | 1,569 | 2/3/2017 | |
5.6.0 | 1,607 | 1/29/2017 | |
5.5.9 | 1,635 | 1/27/2017 | |
5.5.8 | 1,654 | 1/23/2017 | |
5.5.7 | 1,687 | 1/13/2017 | |
5.5.6 | 1,649 | 1/6/2017 | |
5.5.5 | 1,591 | 1/6/2017 | |
5.5.4 | 1,747 | 12/1/2016 | |
5.5.3 | 1,599 | 11/29/2016 | |
5.5.2 | 1,924 | 11/2/2016 | |
5.5.1 | 1,591 | 10/14/2016 | |
5.5.0 | 1,618 | 10/13/2016 | |
5.4.0 | 1,706 | 10/6/2016 | |
5.3.3 | 1,703 | 8/31/2016 | |
5.3.2 | 1,678 | 8/31/2016 | |
5.3.1 | 1,707 | 7/1/2016 | |
5.3.0 | 1,830 | 6/10/2016 | |
5.2.2 | 2,032 | 3/11/2016 | |
5.2.1 | 2,044 | 2/11/2016 | |
5.2.0 | 1,922 | 2/8/2016 | |
5.1.18 | 2,019 | 1/26/2016 | |
5.1.17 | 2,045 | 12/30/2015 | |
5.1.16 | 1,944 | 12/18/2015 | |
5.1.15 | 2,078 | 12/16/2015 | |
5.1.13 | 2,179 | 11/26/2015 | |
5.1.12 | 2,138 | 11/16/2015 | |
5.1.11 | 2,075 | 11/12/2015 | |
5.1.10 | 2,150 | 9/9/2015 | |
5.1.9 | 2,058 | 8/30/2015 | |
5.1.5 | 2,113 | 6/5/2015 | |
5.1.4 | 1,963 | 6/3/2015 | |
5.1.0 | 2,129 | 5/18/2015 | |
5.0.0 | 2,062 | 5/6/2015 | |
4.7.6 | 1,966 | 3/18/2015 | |
4.7.5 | 2,052 | 2/27/2015 | |
4.7.4 | 2,435 | 2/25/2015 | |
4.7.3 | 2,493 | 12/23/2014 | |
4.7.1 | 2,211 | 12/8/2014 | |
4.7.0 | 2,186 | 12/4/2014 | |
4.6.2 | 2,237 | 11/11/2014 | |
4.6.1 | 2,092 | 10/17/2014 |