DevX Home    Today's Headlines   Articles Archive   Tip Bank   Forums   

+ Reply to Thread
Results 1 to 2 of 2

Thread: ACT! and VFP

  1. #1
    Louis Guest

    ACT! and VFP


    Hello,

    I would like to know if VFP can programatically interact with Symantec's
    ACT! 5.0 contact manager program?

    Has anyone tried this?

    Thanks for your help,

    Louis

  2. #2
    Erik Moore Guest

    Re: ACT! and VFP

    There is an ACT SDK that provides COM objects to interact with ACT's database.

    I couldn't find it on the site to provide a link, so you may want to call them and get a copy. I
    have used it to insert ACT contacts before- here's a sample code snippet:

    oData = CreateObject("ACTOLE.DATABASE")
    oData.Open("C:\Documents and Settings\Administrator\My Documents\ACT\Database\contacts.dbf")
    IF oData.IsOpen()
    oTable = oData.CONTACT
    oTable.Add()
    oTable.Data(200, "krusty@simpsons.com")
    oTable.Data(79,"Klown")
    oTable.Data(78, "Krusty")
    oTable.Data(25, "Krusty Show")
    oTable.Data(35, "512-123-1234")
    oTable.Data(36, "512-321-3214")
    oTable.Data(37,"512-123-1234")
    oTable.Update()
    oData.Close()
    ENDIF




Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
HTML5 Development Center
 
 
FAQ
Latest Articles
Java
.NET
XML
Database
Enterprise
Questions? Contact us.
C++
Web Development
Wireless
Latest Tips
Open Source


Top DevX Stories

Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL


Sponsored Links