B
Bob Inwater
I am trying to build a Project File on the fly. Almost everything works great
except that I will be darned if I can manipulate ANY date fields from VBA.
Below is a snip of the dev code. Ideas????
For Each T In ActiveProject.Tasks
T.Notes = someNotes
T.Start = someDate
T.Text1 = someData
Next T
Also kind of annoying but not the end of the world….. I am having to
populate the notes and such in the above structure. I could not figure out
how to access these fields at the time of creation. I wanted to do something
like
myProj.Tasks.Add (x)
t.notes = whatever
except that I will be darned if I can manipulate ANY date fields from VBA.
Below is a snip of the dev code. Ideas????
For Each T In ActiveProject.Tasks
T.Notes = someNotes
T.Start = someDate
T.Text1 = someData
Next T
Also kind of annoying but not the end of the world….. I am having to
populate the notes and such in the above structure. I could not figure out
how to access these fields at the time of creation. I wanted to do something
like
myProj.Tasks.Add (x)
t.notes = whatever