Search found 65 matches: partially

Return to advanced search

Re: FWH 18.03 Dialog Problem (STILL)

Hi Mr. Rao,

Partially tested with FHW1804 ... No Crash. But the dialog's Get Objects (Font) became Bold during testing ...

:D
by fraxzi
Thu Jun 07, 2018 6:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.03 Dialog Problem (SOLVED)
Replies: 51
Views: 7455

Get anomaly

... data via gets in a Window the SETFOCUS seems to be ignored if the variable is completely filled (not requiring an enter key) but works OK when partially filled (requiring an enter key to continue) It's the same result for character and numerical variables,adding SysRefresh didn't change it ...
by reds
Tue Feb 20, 2018 12:43 pm
 
Forum: FiveWin for Pocket PC
Topic: Get anomaly
Replies: 2
Views: 1157

Search in xBrowse

... if there is no index file ? Well, add- INDEX ON FIRST TAG FIRST TO CTMP INDEX ON LAST TAG LAST TO CTMP But also in this case search works only partially - on floor LAST. Change 110,20 XBROWSE oBrw SIZE-20,-20 PIXEL OF oDlg; DATASOURCE "CUSTOMER" AUTOCOLS CELL LINES NOBORDER On 110,20 ...
by Natter
Sat Feb 04, 2017 12:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search in xBrowse
Replies: 2
Views: 776

Re: ADO RDD xHarbour

Antonio, Thank you:D. I think I understand the concept partially, but I also think there is still some things to learn for me. So is it true that usrrdd.lib and/or rdds.lib in the xharbour123/lib directory implement the rdd. If yes, what is then the ...
by pieter
Wed Aug 26, 2015 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447052

Re: Menu bar partially painted

Cristobal,

how?

Thank you! :-)

EMG
by Enrico Maria Giordano
Sun Jun 21, 2015 6:38 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Menu bar partially painted [Fixed]
Replies: 3
Views: 1306

Re: Menu bar partially painted

This is a sample. The menu bar is only painted for the part used by the menu. #include "Fivewin.ch"FUNCTION MAIN()    LOCAL oWnd, oMen    MENU oMen 2015        MENUITEM "Test"    ENDMENU    DEFINE WINDOW oWnd;           MENU oMen    ACTIVATE WINDOW oWnd    RETURN NIL EMG...
by cnavarro
Sun Jun 21, 2015 6:19 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Menu bar partially painted [Fixed]
Replies: 3
Views: 1306

Re: Menu bar partially painted

Enrico,

Many thanks for your feedback,

we are reviewing it :-)
by Antonio Linares
Sun Jun 21, 2015 5:47 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Menu bar partially painted [Fixed]
Replies: 3
Views: 1306

Menu bar partially painted [Fixed]

This is a sample. The menu bar is only painted for the part used by the menu. #include "Fivewin.ch"FUNCTION MAIN()    LOCAL oWnd, oMen    MENU oMen 2015        MENUITEM "Test"    ENDMENU    DEFINE WINDOW oWnd;           MENU oMen    ACTIVATE WINDOW oWnd    RETURN NIL EMG
by Enrico Maria Giordano
Sun Jun 21, 2015 10:56 am
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: Menu bar partially painted [Fixed]
Replies: 3
Views: 1306

Re: HCAD, Acceso Comun a Bases de Datos con Harbour...

... for (1) DBase SQL, (2) MS Access, (3) MS Sql Server (including free SqlExpress), (4) Oracle, (5) MySql, (6) SqLite3, (7) SqlAnyWhere. Others are partially supported. In other words, using these functions, same program code works with any of these servers without any change. Only change is the ...
by nageswaragunupudi
Mon May 04, 2015 12:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: HCAD, Acceso Comun a Bases de Datos con Harbour...
Replies: 7
Views: 3009

Re: ADO RDD xHarbour

... and locking are two different things altogether. All updates within one transaction block either they get written or abandoned but never written partially. Normally used for multi-table updataions with the same connection. Talking about transactions, they work for a single connection. If we open ...
by nageswaragunupudi
Wed Apr 29, 2015 8:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447052

Re: help for xbrowse tooltip

Mr. Nages : (using DBFs) It works, but partially . Only works well on the same line . If we go down or go up to any line in the same column , does not work. To work must select a different column and then stand on the desired cell. Thanks.   ...
by FranciscoA
Wed Feb 25, 2015 7:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help for xbrowse tooltip
Replies: 16
Views: 4012

Re: Migrating to Harbour

... EXE. If you had written the original EXE then it would had to have been designed so that you could add new routines. It would have to be at least partially data driven with menus stored in a file, so that you could add to them without recompiling the EXE. So this seems like resurrecting the past. ...
by James Bott
Wed Dec 17, 2014 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating to Harbour
Replies: 238
Views: 45011

Re: Migrating to Harbour

... technique. Perhaps it is a memory issue with large apps? I assume the compiled code is run, then removed from memory? OK, but aren't large EXEs partially paged out of memory when segments are not being used? Is there some other capability that this technique provides that is better than using ...
by James Bott
Wed Dec 17, 2014 5:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating to Harbour
Replies: 238
Views: 45011

Re: reopen xBrowse alias resulted in error - PARTIALLY SOLVED

RAO,
Rick,

Thanks for the feedback.

I'm in the middle of earth between shortest code and efficiency.. so far both your recommendations are worth considering.
by fraxzi
Tue Nov 11, 2014 12:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: reopen xBrowse alias resulted in error - PARTIALLY SOLVED
Replies: 5
Views: 846

Re: reopen xBrowse alias resulted in error - PARTIALLY SOLVED

Francis If you use objects for your recordset .. you can oRs:CLose() and then oRs:Open() with a new query and then oLbx:ReFresh() .. just do not reassign oRs .. leave its properties intact. Rick Lipkin Mr Rick That is because the way of your coding. You use oRs directly in all codeblocks. But we de...
by nageswaragunupudi
Tue Nov 11, 2014 12:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: reopen xBrowse alias resulted in error - PARTIALLY SOLVED
Replies: 5
Views: 846
PreviousNext

Return to advanced search