Questions tagged [act]

Act! is a CRM (Customer Relations Management) software application which is used to keep track of client and prospect details in a single database (in MS-SQL) that can be shared by multiple users. It integrates with Microsoft Word, Excel, Outlook, Google Contacts, Gmail and other popular applications in order to generate and track communications with the contacts. It's available as a Windows app or Web (self or vendor hosted)

Created in 1987, Act! was one of the first CRM products.

As of 2018, there are three editions of Act!:

  • Act! Pro, which is limited to ten active users and uses Microsoft SQL Server 2014 Express.
  • Act! Premium (access via Windows or Web browser) is designed for small to medium-sized businesses, can handle much larger user numbers and can use more scalable editions of SQL.
  • Act! Premium Cloud, a fully hosted version of Act!

Act! features include contact, company and opportunity management, a calendar, communication tools, the ability to track prospective customers, "dashboards", reports, and the ability to synchronize data from other applications or other Act! users over the web. The software allows multiple users to access the same data simultaneously and can interface with popular word processing, spreadsheet, and email software. It features a variety of "dashboards" which are graphical representations of key activity that allows users to spot new business opportunities, and can generate a wide variety of statistical reports.

Development and integration in current versions can be done via an SDK or the newer WebAPI. Additionally, read-only access can be achieved via ODBC or OLEDB

Some detail on its history is available here: https://blog.glcomputing.com.au/2008/12/history-of-act.html

The main website, here: https://www.act.com/

39 questions
0
votes
2 answers

Tell me how to use ActiveRecord#afeter_add

Now I hava a problem,how can I make the callback#after_add receive a reference to the join model in a has_many :through association? my code like this: class Emergency has_many :departments, :through => :eme_references, :after_add =>…
Small Wolf
  • 283
  • 4
  • 17
0
votes
1 answer

Systemic overhead of shims

I'm considering using shims to get around a game demanding Admin privileges (I tried editing the embedded "requestedExecutionLevel" tag with Resource Hacker and using .manifest files, but discovered the launcher software always downloads a new…
Jim C
  • 165
  • 8
0
votes
1 answer

I saved my data wrong in Excel

I use Excel as a large database. Basically, I saved my ACT! by Sage database to Excel to protect it while fixing my computer and haven't updated a new copy of ACT! yet. In the mean time, I need to work from the Excel file. It worked just fine…
0
votes
1 answer

The type initializer for 'Protexis.׋' threw an exception. Value cannot be null. Parameter name: path1

Preliminary Info: ACT! version: v16 Premium Host Computer: Windows 7 SP1 IDE: VS 2013 Issue: Review this error - "The type initializer for 'Protexis.׋' threw an exception. Value cannot be null. Parameter name: path1", upon trying to…
jshbrmn
  • 1,737
  • 3
  • 22
  • 52
0
votes
1 answer

Retrieving contact and company GUID from ACT!

I'm currently working on a program in C# that works with data from ACT!. To be able to search and update a record you need to use the GUID. The only way I have been able to get a GUID from the framework is when I create a new record. How can I…
Sam
0
votes
1 answer

Advanced Custom Fields plugin - potential bug?

Good day, Does anyone know the solution to the following problem? I have recently set up the Advanced Custom Fields plugin with a custom post template and have been using Gravity Forms to submit post data. Everything seemed to be working fine on a…
wowzimmer
  • 151
  • 2
  • 2
  • 4
0
votes
1 answer

Show Report group even when no records selected

I'm trying to show employees at a company grouped by worked and still working (in vs2005 crystal reports). The user can pass by parameter a list of companies they want to show. Tables: VRP-COMPANY, VRP-COMPANY-OPPORTUNITY,…
RvdK
  • 19,580
  • 4
  • 64
  • 107
0
votes
2 answers

How can we override the react construct of scala actors?

The usual way of detecting the type of message received in scala actors is by loop{ react{ case x: String => } } However, I want to know how can we override this implementation of react construct so that we can do…
user1822249
  • 727
  • 2
  • 8
  • 12
-2
votes
2 answers

Can a function return the same value inside a loop, and return different values outside of loops?

It acts like this. fun();//return 1; for (int i=0;i++;i<100) fun();//return 2; fun();//return 3; I don't want to do it manually, like: static int i=0; fun(){return i}; main() { i++; fun();//return 1; i++; for (int…
iouvxz
  • 89
  • 9
  • 27
1 2
3