Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5
Default Link to ACT! customer database system

Dear Integencia

I am trying to read an ACT! v6.0 database into excel but have not been able to open the database using the programme DLL provided. I must be missing something obvious - has anyone tried this or can see if something is missing ?

All help greatly appreciated, as usual.

Andrew


I am using the sample code supplied as follows:

Sub MacOpenSingleUser()
'This sample demonstrates how to properly log on a multiuser ACT! database
Dim objDatabase As Object
'Create the object
Set objDatabase = CreateObject("ACTOLE.DATABASE")
'Open the database
objDatabase.Open dbName
'Perform login validation
If objDatabase.IsMultiUser Then
'at this point you can display a dialog which asks for
'username and password. The dialog is something you create.
UserName = "****"
Password = "****"
objDatabase.ValidateUser UserName, Password
If objDatabase.Error Then
Login = False
Else
Login = True
End If
Else
Login = True
'Single-user database - validation not required
End If
If objDatabase.IsOpen = False Then
MsgBox "Failed opening the database"
Else
MsgBox "Currently open database is: " & objDatabase.GetDatabasePath
End If
Set objDatabase = Nothing
End Sub

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Create a customer database with information flowing to another wor Brandy Excel Discussion (Misc queries) 1 April 24th 08 09:27 PM
database to Find customer by zip code fjfino Excel Discussion (Misc queries) 0 August 29th 06 09:00 PM
How can I create a customer database to use with an invoice? Brenda L. Carroll Excel Worksheet Functions 1 April 25th 06 07:53 PM
Customer Quoting Database mount_mordor Excel Discussion (Misc queries) 11 September 6th 05 01:45 PM
How do I create a customer database in excel nhankins Excel Discussion (Misc queries) 1 July 5th 05 06:04 PM


All times are GMT +1. The time now is 07:06 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"