• Multiple .MRR Files leading into same menu

    I have multiple applications built from the ProjectWise SDK. We now want to take a step back and try to better manage our menu options in ProjectWise that activates our utilities. This has been controlled with a single .MRR file. However it has…
  • RE: Custom Module DLL Registry Path

    You should be able to create the registry entry if you create an .msi file to install your customization. You might try http://wixtoolset.org/ Here's a sample of something I did a while back to create the registry entries: <!--*******************…
  • RE: verify existence of file in storage

    The code I was referring to is actually a property of the folder (I had it misplaced) if you get the DOC_PROP_PROJECTID of the document, then you can get the PROJ_PROP_CODE (string) from the folder record. That will give you the dms000123 or d01234 folder…
  • verify existence of file in storage

    I have been asked to write an API which will verify the existence of documents in their specified storage location. (Basically to make sure there are no files that show up in PW which don't physically exist.) I can envision a couple of ways to do this…
  • RE: verify existence of file in storage

    Stephanie, Documents in ProjectWise may or may not have an associated file. So the first task would be to determine which documents have a non null filename and/or a filesize greater than 0 bytes. Each document is associated with a Storage Area. Once…
  • RE: What is the ProjectWise Hook Identifier for this Menu Command - Document -> New -> Document

    James, Yes, posting code snippets would be helpful as it isn't clear what "...none of these work..." actually means without a bit more context. You might want to take a look at my "HookWatcher" demo/tool. Just search this site for "hookwatcher" and…
  • How to get the Visual Label of a Document Column Property?

    Hi, How do I receive this (the red circle in picture) through an API call? I need the label string. I have successfully been able to programmatically receive the values and data surrounding it, but I cannot figure out how to receive the label…
  • How to get LPCWSTR data out of AADOCMOVE_PARAM structure in C++?

    Hello, I am writing code that interacts with dragging and dropping files from one Datasource to another Datasource with a custom dialogue tool. One of the needs I have is to be able to get the data out of the structures _AADOCMOVE_PARAM and _AADOCSCOPY_PARAM…