I forwarded this to the best guy I know and what follows is his response.
HTH
swk
Not sure what the person here is asking. The actual attaching of a file to
ACT! can be done via the SDK using the Application object, which could be
automated through Excel with a bit of VBA (Excel macro) code. There are
examples of attaching files in the ACT! SDK docs.
If on the other hand the user is asking, how do a link cells in my Excel
spreadsheet to fields in ACT!, that can be done with the SDK or with DDE.
Via DDE the link syntax is a bit complex but you can do this trick:
- Put your cursor in a field in ACT! (note: built in fields only, no
extended user-defined fields)
- Select all the data in the field
- Edit menu, Copy
- Go over to Excel
- Put cursor in cell you want to link to that field in ACT!
- Edit menu, Paste Special, and choose Paste As Link in the box that pops up
Excel creates the DDE link for you. You'll see a formula in the cell like
this:
=ACTWIN3|Database!Contact
Where Contact is the field name. The rest of the field names should be in
the SDK docs.
Hope this helps...