Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ctully

  1. ctully

    Word Macro Help - Font Size

    Unfortunately scaling is not the answer. It does a horizontal scaling while leaving the height in tact. This will skew the text, not desirable in this situation so the grow is actually closer to s solution. Any other ideas anyone?
  2. ctully

    Word Macro Help - Font Size

    Can anyone suggest an easy way to increase the font size of an entire document (including headers/footers) by a certain percentage? I know I can do it by going through word by word and setting the font size to the original font size multiplied by a factor, but thsi seems slow and tedious. Is...
  3. ctully

    Error retrieving reserved status

    I am using this call to try and find the reserved status of a DMS object: If LL_GetObjectInfo(lSession, lVolumeID, lParentNode, lTemp3) = LL_OK Then If LL_AssocGetBoolean(lTemp3, "Reserved", buf) = LL_OK Then lReserved = buf End If End if However, I receive an error(-2147418107?)...
  4. ctully

    How to find version latest number?

    I need to find the latest version number of an object for which I know the node id. How can I accomplish this using LAPI (Visual Basic)? Thanks
  5. ctully

    LAPI in Visual Baisc 6 help using Cats/Atts

    I think I am getting close. I can assign a cat and atts. However, when I run the following code, the diplayname is always returned as empty. Any ideas? lstatus = LL_ValueAlloc(DocInfo) lstatus = LL_ValueSetAssoc(DocInfo) lstatus = LL_AssocSetInteger(DocInfo, "ID", lNewNodeID) lstatus =...
  6. ctully

    LAPI in Visual Baisc 6 help using Cats/Atts

    I actually would prefer to add the cats/atts as a second step after the document is added to livelink suing the AddObject function. Knowing the node id, what functions can then be called to locate a category, apply it to the object and assign the attribute values?
  7. ctully

    LAPI in Visual Baisc 6 help using Cats/Atts

    I am trying to create a utility that will load documents to Livelink and then a assign a category and associated attributes to the loaded document. I am at the point where the document is loaded and I have the nodeid, but I cannot seem to get the code that will assign the attribute to work...

Part and Inventory Search

Back
Top