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
21
votes
8 answers

react-native-testing-library: how to test useEffect with act

I am using react-native-testing-library to test my react-native component. I have a component (for the purpose of this post, it has been over simplified): export const ComponentUnderTest = () => { useEffect(() => { …
TheSoul
  • 4,906
  • 13
  • 44
  • 74
15
votes
2 answers

Warning: An update to App inside a test was not wrapped in act(...) in enzyme and hooks

I have written this component. it fetchs data using hooks and state. Once it is fetched the loading state is changed to false and show the sidebar. I faced a problem with Jest and Enzyme, as it does throw a warning for Act in my unit test. once I…
Dan
  • 681
  • 2
  • 11
  • 23
7
votes
1 answer

Difference between Supply method act vs tap

In Raku documentation about the Supply method act (vs tap) https://docs.raku.org/type/Supply#method_act it is stated that: the given code is guaranteed to be executed by only one thread at a time My understanding is that a thread must finish with…
jakar
  • 1,701
  • 5
  • 14
5
votes
1 answer

How to read a non-standard DBF memo (BLOB) file from ACT?

I am trying to convert data from Act 2000 to a MySQL database. I have successfully imported the DBF files into individual MySQL tables. However I am having issues with the *.BLB file, which seems to be a non-standard memo file. The DBF files,…
Rowan Parker
  • 794
  • 2
  • 7
  • 18
4
votes
2 answers

ACT by sage integration with asp.net

Wondering if someone here can help. I have been asked to develop an ASP.Net application which will directly connect (store and retrieve) to the ACT! databse already functional. I am new to ACT and looking for a starting point to integrate it with…
Ali
  • 73
  • 1
  • 2
  • 8
3
votes
2 answers

Creating a Guid -> conversion from VB to C#

I have the following code in VB.Net and I'm trying to convert it to C#. listContacts = ACT_FRAMEWORK.Contacts.GetContactsByID(Nothing, New Guid() {New Guid(ContactID)}) Below is my attempt so far: Guid[] test = new Guid[1]; test[0] =…
benjiiiii
  • 478
  • 10
  • 33
3
votes
1 answer

Why request queuing is high even when request executing is below its limit?

Why request queuing is high even when request executing is below its limit? We are using below settings Target Framework : .Net 3.5 Framework Application Pool :.Net Framework v2.0.50727 with Managed pipeline mode – Integrated And, no of CPU is 8 so…
2
votes
2 answers

React Testing Library / Jest Update not wrapped in act(...)

I've been getting this error message regarding act while testing. Warning: An update to EmployeesDashboard inside a test was not wrapped in act(...). When testing, code that causes React state updates should be wrapped into act(...): act(() => { …
David Fertitta
  • 95
  • 1
  • 1
  • 6
2
votes
1 answer

How to read photoshop .act files with Python

I was looking for a way to read the Photoshop's color palette files. As of yet there is no answer here, so I'd like to share my solution.
DayDreamer
  • 107
  • 9
2
votes
2 answers

How do i convert hdb file? ... believed to be from act! source

Any ideas ? I think the original source was a goldmine database, looking around it appears that the file was likely built using an application called ACT which I gather is a huge product I don't really want to be deploying for a one off file total…
War
  • 8,539
  • 4
  • 46
  • 98
1
vote
1 answer

plot results from user defined ACT Extension

As a result of my simulation, I want the volume of a surface body (computed using a convex hull algorithm). This calculation is done in seconds but the plotting of the results takes a long time, which becomes a problem for the future design of…
1
vote
2 answers

Is there a Python library available for (gasp) ACT?

A client is asking that I write a script to periodically pull his contacts from Google into ACT on his local computer. Is there a library that would allow me to interact with something as old as ACT?
Naftuli Kay
  • 87,710
  • 93
  • 269
  • 411
1
vote
3 answers

Programming against an ACT! database

Does anyone know the database format for ACT. I am trying to write an exporter for ACT! I've looked for libraries and can't find any obvious ones that will help me interact with the CRM system.
Stewart Robinson
  • 3,459
  • 4
  • 21
  • 27
1
vote
0 answers

React-Native-Testing-Library 'warning - an updated was not wrapped in act(...)

I think this question has been asked, but no solution was provided. I'm using RNTL trying to unit test a simple RN component. My example below: component = render(
1
vote
1 answer

How to resolve act() in useEffect?

I have a small problem with act() error in react-testing-library. In useEffect I try to call an function that is a promise. Promise returns some data and displays it, but even if the tests pass, the act error is still displayed. Component: export…
1
2 3