Search found 17 matches: functionally

Return to advanced search

Re: WebView resize

... Use <div> elements in HTML to replicate the panels in FiveWin. With appropriate CSS styling, these <div> elements can visually and functionally represent panels, organizing content and controls on the page. Text Fields (TGet, TMemo, etc.): Text input fields in FiveWin can be mapped ...
by Otto
Thu Mar 21, 2024 10:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView resize
Replies: 9
Views: 2092

Re: Migrating TDatabase to FWH19.03's from FWH11.08 (Resolved)

... was the only way to open a dbf. I can see with your code a unique aliases is already handled by TDatabase and :td_ExecLoop() is already functionally similar to net_use(). This will help simplify my code in the future. Thanks again James
by hua
Fri May 03, 2019 3:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating TDatabase to FWH19.03's from FWH11.08
Replies: 15
Views: 1975

Re: Rowset X cSeek

... ;   LINES NOBORDER FOOTERS ;   FONT oSistema():oFonte3 ;   UPDATE  Both the above alternatives are functionally equivalent. You may use either one of them depending on your choice and what do you think is clearer to you and easier to understand and ...
by nageswaragunupudi
Fri Jan 05, 2018 1:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset X cSeek
Replies: 7
Views: 2059

Re: cierre de conexion con FWMariadb

Connection Object: oCn:Close() or oCn:End() // functionally same Closes connection with the server. But remembers all connection parameters. We can later call oCn:ReConnect() and start working again. The object itself remains till oCn is set to ...
by nageswaragunupudi
Fri Jun 09, 2017 10:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: cierre de conexion con FWMariadb
Replies: 3
Views: 637

Re: FWH: MySql/MariaDB: RowSet object

... Till FWH17.03, we can not use Resync to read external appends. Only way is to use oRs:Requery() which is same functionally as oQry:Refresh(). oRs:ReQuery()// position the record on the just appended recordoRs:Refresh()  From FWH17.04: The new ...
by nageswaragunupudi
Wed Apr 26, 2017 4:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19532

FWH: Parent Child RowSets (MySql/MariaDB)

... is defined when creating customer table (explained later) oStates:AddChild( oCust ) Notes: i) Alternate syntaxes (a) and (b) in Method-1 are functionally identical. Same way alternative syntaxes (a),(b) and (c) in Method-2 are identical. Which syntax to use depends only on the individual ...
by nageswaragunupudi
Thu Jul 21, 2016 7:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Parent Child RowSets (MySql/MariaDB)
Replies: 12
Views: 4238

Re: PUBLIC var declaration issue

... for at the start of the function. Using MEMVAR at the start of a function provides documentation that those publics are being used. Yes, functionally the program works the same, but for me looking at the code it is different. Tim, Similar to your situation, the code I am working on was ...
by James Bott
Sun Aug 30, 2015 9:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PUBLIC var declaration issue
Replies: 26
Views: 6323

Looking for Harbour/Advantage Advice

... and am wondering about opinions on the next steps needed to enhance a Harbour 3.0.0 application that is using Advantage 10. The application is functionally very good at the business processes it handles. However, it uses DBFNTX thru Advantage. It also only uses text screens. So I am wondering ...
by Jay Hill
Tue Jun 02, 2015 3:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Looking for Harbour/Advantage Advice
Replies: 7
Views: 2282

xBrowse Disable() Problem

...                   MsgInfo("Dialog will be closed") ,;                    .t. ;                  )  But i am not sure is it functionally in any cases Best regards,
by avista
Sun Oct 13, 2013 8:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Disable() Problem
Replies: 2
Views: 674

Refresh problem in oGet

Using the following code (which was completely functionally on previous versions of FiveWin) REDEFINE GET oSay[14] VAR aTotal[14] ID  1 OF oFld:aDialogs[2] PICTURE "###.#" READONLY FONT oFont[2]REDEFINE ...
by ellano
Fri Aug 23, 2013 4:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Refresh problem in oGet
Replies: 3
Views: 811

Re: DrawTextEx vs. DrawText

... function as DT_TOP|DT_LEFT. Except that DrawTextEx accepts one more parameter additionally (which is not used in the present FWH library) both are functionally the same to my understanding. It is interesting to note that the quality of rendering of both the functions is different.
by nageswaragunupudi
Sun Nov 06, 2011 9:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DrawTextEx vs. DrawText
Replies: 3
Views: 822

Re: xBrowse + ADS = Slow Motion!

... think in terms of wildmatch. Let us approach from Fast Text Search feature. This feature on ADS is similar to Oracle, MSSql and other major RDMSs functionally. If we create appropriate FTS indexes, the results are spectacular even on tables with million rows. Filters containing UDFs are not optimized ...
by nageswaragunupudi
Wed Jul 07, 2010 9:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + ADS = Slow Motion!
Replies: 14
Views: 4026

Re: MySql users - can anybody help to compile MySql.c

... was previously only available as part of the server distribution. The version of libmysql included in Connector/C and bundled with the server are functionally identical, but the build system for Connector/C uses the cross-platform CMake build system. Q5: What is the difference between "Native ...
by anserkk
Tue Nov 03, 2009 5:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySql users - can anybody help to compile MySql.c
Replies: 12
Views: 2286

Nagesh, GradientFill( hDC, 0, 0, ::nHeight, ::nWidth, { { 1, nRGB( 128, 217, 255 ), nRGB( 54, 147, 255 ) } } ) is functionally equivalent to Gradient( hDC, { 0, 0, ::nHeight, ::nWidth }, nRGB( 128, 217, 255 ), nRGB( 54, 147, 255 ), .t. ) You may use simple Gradient function if you ...
by Kleyber
Tue Aug 05, 2008 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pickdate part 2 – a control class in development
Replies: 39
Views: 11488

GradientFill( hDC, 0, 0, ::nHeight, ::nWidth, { { 1, nRGB( 128, 217, 255 ), nRGB( 54, 147, 255 ) } } ) is functionally equivalent to Gradient( hDC, { 0, 0, ::nHeight, ::nWidth }, nRGB( 128, 217, 255 ), nRGB( 54, 147, 255 ), .t. ) You may use simple Gradient function if you are ...
by nageswaragunupudi
Mon Aug 04, 2008 11:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Pickdate part 2 – a control class in development
Replies: 39
Views: 11488
Next

Return to advanced search