OVH Cloud OVH Cloud

wdd error

3 réponses
Avatar
Harry
Hi,

Sorry if this is a stupid question but I am new to Windev.
When I run my application I get the following error message :

Unable to initialize 'Ta_Action' control. Hyper File Error:
=============================
<Qu_employee_action> file unknown in <C:\My Projects\i42\142_K\Appenta.wdd>
analysis.

I understand that .wdd is the file that describes the analysis. The control
uses the query Qu_employee_action to retrieve the data from table 'action'.
This query exists in the directory C:\My Projects\i42\142_K
(Qu_employee_action.WDR).
I have tried to delete the wdd file so that it's regenerated when I start
Windev, but I get the same error when I start the application.
I have also recompiled the project to no avail.
We use windev 7.5 with database mssql.

Thanks in advance,
Harry

3 réponses

Avatar
Jacques TREPP
Harry a formulé ce mardi :
Hi,

Sorry if this is a stupid question but I am new to Windev.
When I run my application I get the following error message :

Unable to initialize 'Ta_Action' control. Hyper File Error:
============================ > <Qu_employee_action> file unknown in <C:My Projectsi42142_KAppenta.wdd>
analysis.

I understand that .wdd is the file that describes the analysis. The control
uses the query Qu_employee_action to retrieve the data from table 'action'.
This query exists in the directory C:My Projectsi42142_K
(Qu_employee_action.WDR).
I have tried to delete the wdd file so that it's regenerated when I start
Windev, but I get the same error when I start the application.
I have also recompiled the project to no avail.
We use windev 7.5 with database mssql.

Thanks in advance,
Harry


Hi,
your file <Qu_employee_action> do not exists.
Try the command HCreateIfNotExists ("Qu_employee_action ") before all

--
Jacques TREPP
AlbyGest

enlever _pasdespam pour me joindre
Avatar
Roumegou Eric
Jacques TREPP a exprimé avec précision :
Harry a formulé ce mardi :
Hi,

Sorry if this is a stupid question but I am new to Windev.
When I run my application I get the following error message :

Unable to initialize 'Ta_Action' control. Hyper File Error:
============================ >> <Qu_employee_action> file unknown in <C:My Projectsi42142_KAppenta.wdd>
analysis.

I understand that .wdd is the file that describes the analysis. The control
uses the query Qu_employee_action to retrieve the data from table 'action'.
This query exists in the directory C:My Projectsi42142_K
(Qu_employee_action.WDR).
I have tried to delete the wdd file so that it's regenerated when I start
Windev, but I get the same error when I start the application.
I have also recompiled the project to no avail.
We use windev 7.5 with database mssql.

Thanks in advance,
Harry


Hi,
your file <Qu_employee_action> do not exists.
Try the command HCreateIfNotExists ("Qu_employee_action ") before all



Hello,
It's sounds like a problem with your database connexion.
Are you connected with your database mssql before this message ?
And verify that Qu_employee_action is well defined in your Analyse (in
french menu analyse/ Structure de fichiers/ Importer des descriptions
de fichiers/tables)

Eric

--
Eric Roumégou
http://cerbermail.com/?TSoulBerPA
(cliquez sur le lien ci-dessus pour me contacter en privé)
Avatar
Harry
"Roumegou Eric" wrote in message
news:
Jacques TREPP a exprimé avec précision :
> Harry a formulé ce mardi :
>> Hi,
>>
>> Sorry if this is a stupid question but I am new to Windev.
>> When I run my application I get the following error message :
>>
>> Unable to initialize 'Ta_Action' control. Hyper File Error:
>> ============================ > >> <Qu_employee_action> file unknown in <C:My


Projectsi42142_KAppenta.wdd>
>> analysis.
>>
>> I understand that .wdd is the file that describes the analysis. The


control
>> uses the query Qu_employee_action to retrieve the data from table


'action'.
>> This query exists in the directory C:My Projectsi42142_K
>> (Qu_employee_action.WDR).
>> I have tried to delete the wdd file so that it's regenerated when I


start
>> Windev, but I get the same error when I start the application.
>> I have also recompiled the project to no avail.
>> We use windev 7.5 with database mssql.
>>
>> Thanks in advance,
>> Harry
> Hi,
> your file <Qu_employee_action> do not exists.
> Try the command HCreateIfNotExists ("Qu_employee_action ") before all

Hello,
It's sounds like a problem with your database connexion.
Are you connected with your database mssql before this message ?
And verify that Qu_employee_action is well defined in your Analyse (in
french menu analyse/ Structure de fichiers/ Importer des descriptions
de fichiers/tables)

Eric

--
Eric Roumégou
http://cerbermail.com/?TSoulBerPA
(cliquez sur le lien ci-dessus pour me contacter en privé)





Thanks for the answer. I think it has indeed something to do with the
database connection.
The application works fine with hyperfile as database.
I will look into it.

harry