Search found 997 matches

by Horizon
Sun Sep 13, 2020 12:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using C# (and .NET) from FWH not working(?)
Replies: 33
Views: 4188

Re: Using C# (and .NET) from FWH not working(?)

+1 hello, I tryed the dotnet sample, what I get is: ┌────────────────────────────────────────────────────────────────────────────┐ ?FiveWin for Harbour 19.09 (MSVC++) Sep. 2019     Harbour development power │▄ ?(c) FiveTech 1993-2019 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/7/8/10 │█ └──────────...
by Horizon
Tue Sep 08, 2020 2:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: ChromeDriver - WebDriver for Chrome
Replies: 3
Views: 568

Re: ChromeDriver - WebDriver for Chrome

Hi,

I build test project in c# msvc 2019. in the build folder, there is a Webdriver.dll file.

How to create lib file from this dll?
by Horizon
Fri Sep 04, 2020 9:25 am
Forum: FiveWin for Harbour/xHarbour
Topic: ChromeDriver - WebDriver for Chrome
Replies: 3
Views: 568

Re: ChromeDriver - WebDriver for Chrome

Hi, In order to test Selenium library. I have installed Visual Studio 2019 using C# by using this link https://testguild.com/selenium-webdriver-visual-studio/ . This is the latest C# code. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; u...
by Horizon
Sun Aug 30, 2020 10:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: ChromeDriver - WebDriver for Chrome
Replies: 3
Views: 568

Re: ChromeDriver - WebDriver for Chrome

Hi, We have to download chromedriver from https://chromedriver.chromium.org/downloads and copy it to pathed directory. (https://chromedriver.chromium.org/getting-started) To use it, We should download Selenium webdriver from https://www.selenium.dev/downloads/. Next step is that run chromedriver usi...
by Horizon
Sun Aug 30, 2020 9:09 am
Forum: FiveWin for Harbour/xHarbour
Topic: ChromeDriver - WebDriver for Chrome
Replies: 3
Views: 568

ChromeDriver - WebDriver for Chrome

Hi,

Is there anybody to use it from harbour?

Thanks.
by Horizon
Fri Jul 24, 2020 9:29 am
Forum: FiveWin for Harbour/xHarbour
Topic: add fields to existing dbf
Replies: 7
Views: 1108

Re: add fields to existing dbf

I simply rename the original file, then create a new one ( perhaps with many modifications ) using the original name, then append from the old one. I do NOT delete the renamed file in case something happens during the append which results in not all data being copied. The method is safe and very fa...
by Horizon
Tue Jul 21, 2020 6:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a real time character count to a memo field dialog bx
Replies: 7
Views: 732

Re: Adding a real time character count to a memo field dialog bx

Rick,

Change this.

Code: Select all

       REDEFINE GET oMemo VAR cMEMO MEMO ID 130 of oDlg UPDATE ;
                    ON CHANGE (oSay:VarPut(ALLTRIM(str(LEN(oMemo:GetText())))),;
                oSay:Refresh())
by Horizon
Mon Jul 20, 2020 4:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Adding a real time character count to a memo field dialog bx
Replies: 7
Views: 732

Re: Adding a real time character count to a memo field dialog bx

Maybe like this.     @ 50,10 SAY oSay PROMPT "Mesaj" OF oDlg PIXEL     @ 48,40 GET oGovde VAR Govde OF oDlg PIXEL SIZE 110,10 UPDATE MEMO ;             ON CHANGE (oSayac:VarPut("("+NTRIM(LEN(oGovde:GetText()))+")"),;                 oSayac:Refresh())         @ 62,10 SAY...
by Horizon
Fri Jul 10, 2020 7:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 20.06
Replies: 13
Views: 1612

Re: New FWH 20.06

Michel, Rick, Please select from this site (left side) the version that you need, then download the corresponding "artifact": https://github.com/FiveTechSoft/Harbour_builder/actions In example: Harbour for Windows 32 using BCC https://github.com/FiveTechSoft/Harbour_builder/actions/runs/1...
by Horizon
Fri Jul 03, 2020 9:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: RPA application
Replies: 3
Views: 803

Re: RPA application

Thank you Antonio,

Is there any api to call from fivewin? paid or free.
by Horizon
Fri Jul 03, 2020 5:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: RPA application
Replies: 3
Views: 803

RPA application

Hi,

How can I write RPA application in harbour?

Is there any sample?

Thanks?
by Horizon
Sun Jun 21, 2020 8:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange MariaDB save problem.
Replies: 17
Views: 2483

Re: Strange MariaDB save problem.

vilian wrote:Do you have a index for field IC_NO on table icbelge ?

Yes you are right. I forgot the index when I transferred from dbf to test many times.

Thanks.
by Horizon
Sun Jun 21, 2020 7:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange MariaDB save problem.
Replies: 17
Views: 2483

Re: Strange MariaDB save problem.

Thank you very much Villian, I have optimized and changed my code like that. oRs := oTb_ICBELGE:Open("SELECT IC_ID, IC_NO, IC_TYPE FROM icbelge") IF !EMPTY(oRs) .AND. oRs:Reccount()>0     oRs:GOTOP()         XBROWSER oRs     Sira := 0     oSay1:SetText(ALLTRIM(oAktif_Bolum:BL_2))     oMete...
by Horizon
Sat Jun 20, 2020 12:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange MariaDB save problem.
Replies: 17
Views: 2483

Re: Strange MariaDB save problem.

Could you try by this way ? oRs := oApp:oBOLUM_Cn:RowSet("SELECT icc.*,icb.IC_NO FROM icrakart AS icc RIGHT JOIN icbelge AS icb ON icc.IID = icb.IC_NO") IF oRs:Reccount()>0     DO WHILE .NOT. oRs:Eof()               nIID := oRs:IID             DO WHILE  nIID = oRs:IID .AND. .NOT. oRs:Eof(...
by Horizon
Fri Jun 19, 2020 10:51 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Strange MariaDB save problem.
Replies: 17
Views: 2483

Re: Strange MariaDB save problem.

Hi Mr. Rao, Villian, This code is always increasing memory. oRs := oApp:oBOLUM_Cn:RowSet("select * from icrakart") IF !EMPTY(oRs) .AND. oRs:Reccount()>0     oRs:GOTOP()         XBROWSER oRs                <---     DO WHILE !oRs:Eof()             oRs2 := oApp:oBOLUM_Cn:RowSet( "select ...