Search found 51 matches: till

Searched query: till

by nageswaragunupudi
Fri Nov 22, 2024 12:02 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Soporte a mariaConnect ?
Replies: 11
Views: 1810

Re: Soporte a mariaConnect ?

... changes made
oRs:SaveBatch()
or to ignore all changes and restore the original table to the RowSet()
oRs:CancelBatch()

Batch mode continues till we reset.
oRs:SetBatchMode( .f. )

IMPORTANT CAUTION:
Even in lBatchMode, METHOD Zap() really Zaps the table in the database.
Please do not use it ...
by Enrico Maria Giordano
Wed Oct 09, 2024 8:30 am
Forum: FiveWin para Harbour/xHarbour
Topic: Cambio dimensiones gets FWH-24.09
Replies: 39
Views: 3826

Re: Cambio dimensiones gets FWH-24.09

please let us know when the new build is ready for download.

Of course.

But why this was working well for all these years till 2023 and why not now.

Maybe the problem is only with BCC 7.70 or from a specific BCC version, I don't know.

Another thing I am surprised why it is not working with ...
by nageswaragunupudi
Wed Oct 09, 2024 6:54 am
Forum: FiveWin para Harbour/xHarbour
Topic: Cambio dimensiones gets FWH-24.09
Replies: 39
Views: 3826

Re: Cambio dimensiones gets FWH-24.09

please let us know when the new build is ready for download.

But why this was working well for all these years till 2023 and why not now.

Another thing I am surprised why it is not working with Harbour for him alone while it is working well for me and other friends I asked. What solution I can ...
by MarcoBoschi
Wed Sep 11, 2024 2:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: slowness
Replies: 76
Views: 11992

slowness

... by this program.
Things also change a lot when the cdx file is opened in addition to the dbf file.
The execution speed decreases an half second till five six seconds
I'd like to know which is the problem, if we can talking of problems or if is normal this enormeus difference of speed. In my ...
by Marc Vanzegbroeck
Mon Sep 02, 2024 12:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Looking for links in tables
Replies: 2
Views: 821

Looking for links in tables

... input in an array
-Then look for all names connected to the names in that array add source and the link in an array if the same source+link+input dous not exist.
and so on till the are no more new names

So the result a list of all unique name+links+inputs

Is there a better (faster) way to do this?
by Antonio Linares
Mon Aug 05, 2024 4:14 pm
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2024 (FWH 24.07)
Replies: 8
Views: 6455

New FTDN July/Julio 2024 (FWH 24.07)

... allows to "subclass" a standard window
handle allowing to process its messages using a codeblock. The code of this function seems ok
thughwe re still doing tests using it.

* New: function nRGB2Array( nRGBColor ) return an array with the RGB values { nRed, nGreen, nBlue }

* New: TWindow method ...
by nageswaragunupudi
Sat Jul 06, 2024 2:48 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Preview a PDF con imagen de fondo
Replies: 37
Views: 8270

Re: Preview a PDF con imagen de fondo

You can easily do it for print-preview as well as printing on paper using the clause ALPHALEVEL <nAlpha> with the command PRINT IMAGE.
But till now, we have problems in saving this image as PDF.
FWH uses FWPDF class for saving to PDF using PdfHaru library.
FWH uses its FWPDF class to save PDF using ...
by nageswaragunupudi
Thu Jul 04, 2024 7:08 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with aFields( ) in most recent version of FWH
Replies: 8
Views: 888

Re: Problem with aFields( ) in most recent version of FWH

Code: Select all | Expand

aFields( aNames, aTypes  )
Is aFields() your function?
There has never been a function with this name in FWH in any version till now.
Can you please let us know in which version of FWH the code you posted was working?
by nageswaragunupudi
Sun Jun 30, 2024 2:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Image x xImage quality difference
Replies: 42
Views: 4151

Re: Image x xImage quality difference

Dear Mr. Maurício

We are making improvements to the FWH library.

Till then, I suggest this work-around.

#include "fivewin.ch"

function Main()

local oDlg, oImage, cFile := "image.tif"

DEFINE DIALOG oDlg SIZE 1000,900 PIXEL TRUEPIXEL RESIZABLE

@ 20,20 XIMAGE oImage FILE FILOADIMG( cFile ...
by Antonio Linares
Fri May 10, 2024 2:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: passing a value through a for..next loop
Replies: 14
Views: 2368

Re: passing a value through a for..next loop

... next n

ACTIVATE WINDOW ....
//--------------
static function MakeGet( nRow, nCol, aVar, n, oWnd )

local oget

@ nRow, nCol GET oGet VAR aVar[ n ] of oWnd <clauses>

// note this value of "n" remains the same till oGet goes out of scope
// the principle is called "detached locals"

return oGet
by Enrico Maria Giordano
Thu Apr 11, 2024 4:43 pm
Forum: FiveWin for Harbour/xHarbour
Topic: compile errors - send a SMS
Replies: 19
Views: 2159

Re: compile errors

No, this is fine till you switch to BCC 7.70. Then you can remove it.
by Enrico Maria Giordano
Thu Mar 28, 2024 9:05 am
Forum: FiveWin para Harbour/xHarbour
Topic: Capacidad de variable de memoria HARBOUR
Replies: 8
Views: 2520

Re: Capacidad de variable de memoria HARBOUR

With 64 bit we can rise it till 2 ^ 35, both Harbour and xHarbour, with 16 GB RAM:

Code: Select all | Expand

FUNCTION MAIN()

    LOCAL cSpace := SPACE( 2 ^ 35 )

    ? LEN( cSpace )

    INKEY( 0 )

    RETURN NIL
by nageswaragunupudi
Thu Mar 07, 2024 5:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBmp problem with FWH2402
Replies: 25
Views: 7303

Re: ButtonBmp problem with FWH2402

What is observed till now is that the misbehavior is when FW_SetUnicode( .T. )
Request Mr. Leandro to set FW_SetUnicode( .F. ) and retry
We will work on fixing this problem
by nageswaragunupudi
Wed Feb 07, 2024 3:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: Fwh 23.10 TGet another problem (UNSOLVED)
Replies: 132
Views: 66147

Re: Fwh 23.10 TGet another problem (UNSOLVED)

... problem when I installed FWH2310 and tested.
But Mr. Ertan says it is working well for him. I asked Mr.Ertan to send his libs to me. He will send after this weekend. Please wait till I test and provide you with the correctly working libs.
If necessary I will rebuild the libs for you. Please wait.
by nageswaragunupudi
Tue Dec 12, 2023 10:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: Inserting a string with CRLF into a single-line TGet.
Replies: 10
Views: 1575

Re: Inserting a string with CRLF into a single-line TGet.

... via Override ?

With override, the change applies to all Gets and we need not write this for each Get.
If you like, you can override the method till next version. t

2. Will this function work when entering data from the clipboard via the context menu ?
For this, we need to modify/override the ...