PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV 2024 → Howto open Lotus Notes db with Windev
Howto open Lotus Notes db with Windev
Débuté par hawkman, 20 aoû. 2003 14:22 - Aucune réponse
Posté le 20 août 2003 - 14:22
I'm trying to create a RAD application that can read documents(documents is the term Lotus Notes uses to describe records) from a Lotus Notes database.The steps I follow are :
(my OPS is Windows 2000 Pro with Service Pack 3)
1. From Data Sources(ODBC - Administrative Tools) I create a new Data Source which points to my Lotus database.
2. I create a new Project with the wizard
3. I create a new analysis :
a) Logical Data Model
4. I create a new File
a) I choose "Import files from external database"
b) For the data source I select "External database"
c) Data in current format will be used in the application
d) In the Type of data source I select "ODBC"
e) Then I select the ODBC data source I created in step 1.
f) I add the username and password for the server
g) I select the tables I want from the ones in the list
5. I launch the RAD
a) In the type of code used by RAD I choose "ODBC Commands"
and check the "With file creation code"
b) For the rest I press Next
When I press Go I get this message :
"Error in Initialization of My_Project process, line 23.
HCreationIfNotFound function called.
Unknown file type defined in analysis for file.

**********************************************
Technical Information
Project : My_Project
Dump error of module <7.50Bss>.
- WL Call:
Processing <>, line <23>, thread <0>
Function , syntax # <1>
- Level: fatal error (EL_FATAL)
- Error Code: 70055
- WD55 Error Code: 55
- No system error code
- No system error message
- What happened?
Unknown file type defined in analysis for file.
- Debug Information:
iehf03
- Attached Information:
EIT_PATHWDD :
EIT_LOGICALTABLENAME :
- Identifier in .err: 70118
"
I went to the project code and commented the line:
SI gConnectionType=gHFType ALORS HCréationSiInexistant("CustomerForm")
(why is it in french ,since I have the english version? hahaha)
CustomerForm is my table from Lotus Notes.After commenting this line I got the Main menu window, but when I open the Table window,it crashes:
Erreur 70055 : Unknown file type defined in analysis for file.
If anyone has ever accessed Lotus Notes from Windev, can he please help me? Am I doing something wrong in the steps I described ?