Search found 38 matches
- Wed Feb 03, 2021 12:09 pm
- Forum: All products support
- Topic:
- Replies: -1
- Views:
Processo Civile Telematico
Bongiorno, c'è qualcuno che ha fatto qualcosa per il PCT ? imbustamento atti , firma digitale di PDF , usando FWH ?
- Fri Jul 19, 2013 9:38 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: lIncSearch in combobox
- Replies: 0
- Views: 358
lIncSearch in combobox
I'd want to disable the autocomplete function of combobox using the property: oCBX:lIncSearch:=.f., but doesn't work .
Any idea of how to disable it ?
Best regards,
Wzaf
Any idea of how to disable it ?
Best regards,
Wzaf
- Tue Jun 08, 2010 8:28 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO update() error
- Replies: 14
- Views: 2968
Re: ADO update() error
Tank you very mutch, Daniel.
Now the update works!
It seems that ADO wants in RecordSet the primary key , otherwise it fails when update the DB.
Not only, but when I tried to update (and getting errors), the table where modified in more than one row, not only the row holding the '217' key ...
Now the update works!
It seems that ADO wants in RecordSet the primary key , otherwise it fails when update the DB.
Not only, but when I tried to update (and getting errors), the table where modified in more than one row, not only the row holding the '217' key ...
- Mon Jun 07, 2010 4:35 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO update() error
- Replies: 14
- Views: 2968
Re: ADO update() error
Tank you Anser
I tried your code , but now when I try the following :
RecSet:Source :=cSQLoRecSet:ActiveConnection(oCon)oRecSet:Open()
I get the following error:
WINOLE/1007 Argument error: ACTIVECONNECTION
while if I do :
oRecSet:Open(cSql, oCon)
the creation of ...
I tried your code , but now when I try the following :
RecSet:Source :=cSQLoRecSet:ActiveConnection(oCon)oRecSet:Open()
I get the following error:
WINOLE/1007 Argument error: ACTIVECONNECTION
while if I do :
oRecSet:Open(cSql, oCon)
the creation of ...
- Mon Jun 07, 2010 9:44 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO update() error
- Replies: 14
- Views: 2968
Re: ADO update() error
Daniel,
your code works fine in my environment.
I tried also to recompile and link , and it works!
The only difference is that I use Mysql with "MySQL ODBC 5.1 Driver" and connection string is :
cConnectionString := "Driver={MySQL ODBC 5.1 Driver};Server=localhost;Database=mydb; User=myuser ...
your code works fine in my environment.
I tried also to recompile and link , and it works!
The only difference is that I use Mysql with "MySQL ODBC 5.1 Driver" and connection string is :
cConnectionString := "Driver={MySQL ODBC 5.1 Driver};Server=localhost;Database=mydb; User=myuser ...
- Sun Jun 06, 2010 10:36 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO update() error
- Replies: 14
- Views: 2968
Re: ADO update() error
Daniel :
Correct ! the select is not empty....
Wzaf
Correct ! the select is not empty....
Wzaf
- Sun Jun 06, 2010 9:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO update() error
- Replies: 14
- Views: 2968
Re: ADO update() error
No, it is filled with the result of Query: "SELECT filename FROM testi...."
Wzaf
Wzaf
- Sun Jun 06, 2010 8:47 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO update() error
- Replies: 14
- Views: 2968
Re: ADO update() error
No, James, I have all rights for all DB .
Tank you
Wzaf
Tank you
Wzaf
- Sun Jun 06, 2010 7:53 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO update() error
- Replies: 14
- Views: 2968
Re: ADO update() error
Tank you Rick ,
But I tried with different fields of the table, and I get always the same error:
If I modify the field value, I get error in update method.
In I modify nothing, the update() succeed !.
Best regards
Wzaf
But I tried with different fields of the table, and I get always the same error:
If I modify the field value, I get error in update method.
In I modify nothing, the update() succeed !.
Best regards
Wzaf
- Sat Jun 05, 2010 3:17 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: ADO update() error
- Replies: 14
- Views: 2968
ADO update() error
Hi All .
I use use ADO to access MySql DB. I try modify a row using :
oRecordSet := TOleAuto():New( "ADODB.Recordset" )
oRecordSet:CursorType := adOpenDynamic
oRecordSet:CursorLocation := adUseClient
oRecordSet:LockType := adLockOptimistic
TRY
oRecordSet:Open( "SELECT filename FROM testi ...
I use use ADO to access MySql DB. I try modify a row using :
oRecordSet := TOleAuto():New( "ADODB.Recordset" )
oRecordSet:CursorType := adOpenDynamic
oRecordSet:CursorLocation := adUseClient
oRecordSet:LockType := adLockOptimistic
TRY
oRecordSet:Open( "SELECT filename FROM testi ...
- Fri Apr 16, 2010 8:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Openoffice's macros
- Replies: 2
- Views: 708
Re: Openoffice's macros
Tank you for your answer xProgrammer!
But your solution ( run openoffice with command line argument that start a macro) is not valid for my needs.
I 've to start several macros within the same document.....
Best regards
Wzaf
But your solution ( run openoffice with command line argument that start a macro) is not valid for my needs.
I 've to start several macros within the same document.....
Best regards
Wzaf
- Thu Apr 15, 2010 4:12 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Openoffice's macros
- Replies: 2
- Views: 708
Openoffice's macros
Hi all,
I want to call an openoffice macro from fwh .
I use the following commands:
oService := CreateObject( "com.sun.star.ServiceManager" )oDesktop := oService:CreateInstance( "com.sun.star.frame.Desktop" )aVet:={}oDoc := oDesktop:LoadComponentFromURL( "file ...
I want to call an openoffice macro from fwh .
I use the following commands:
oService := CreateObject( "com.sun.star.ServiceManager" )oDesktop := oService:CreateInstance( "com.sun.star.frame.Desktop" )aVet:={}oDoc := oDesktop:LoadComponentFromURL( "file ...
- Fri Feb 19, 2010 10:58 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: New AdoRDD (free)
- Replies: 203
- Views: 111792
Re: New AdoRDD (free)
Tank you , Antonio
Best Regards,
Wzaf
Best Regards,
Wzaf
- Thu Feb 18, 2010 11:23 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: New AdoRDD (free)
- Replies: 203
- Views: 111792
Re: New AdoRDD (free)
Antonio,
where can I find the last version of Adord.prg ?
Tank you
Best regards
WZaf
where can I find the last version of Adord.prg ?
Tank you
Best regards
WZaf
- Thu Feb 11, 2010 11:25 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: New AdoRDD (free)
- Replies: 203
- Views: 111792
Re: New AdoRDD (free)
I use ADORDD with FWH 10.1 Harbour 2.0 and mysql.
Is there any way to use ADORDD with myodbc connector 5.1 ?
thanks
Wzaf
Is there any way to use ADORDD with myodbc connector 5.1 ?
thanks
Wzaf