Search found 170 matches: applied

Return to advanced search

Re: New FWH 24.09

... 1 )   endifENDCLASS Please apply this fix and let us know if the problem is resolved. We advised this fix earlier in this post. If the user applied this fix, your above "disaster" program also works fine with both xHarbour and Harbour. I tested your program and it works perfectly ...
by nageswaragunupudi
Sun Oct 13, 2024 2:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.09
Replies: 95
Views: 2959

Re: Bug Maria_Connect() FWH-24.07 64 bits ???

... during the destructor call. Be very cautious when disabling and re-enabling garbage collection, and ensure it is balanced and applied correctly. If the destructor fails unexpectedly, you want to make sure the garbage collection state is restored properly: BOOL bCollecting = ...
by nnicanor
Wed Sep 25, 2024 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug Maria_Connect() FWH-24.07 64 bits ???
Replies: 37
Views: 1330

New FTDN July/Julio 2024 (FWH 24.07)

... specified can accommodate atleast two lines of text, the text is considered as multi-line text and otherwise as single line text. Wordwrap is applied for multi-line text only. Now, if cText param is specified by Ref ( i.e., @cText ) also the text is rendered as multi-line text with wordwrap. ...
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: 4328

Re: Mr Rao :SetFilter no funciona

... What you said is true for DBF fiters. We are talking about filters in mysql tables using fwh maria library. The data is in memory and filter is applied on data which is already in the memory. Filters, sorting, seeking are all done in memory and do not read from the server. So there is no dependance ...
by nageswaragunupudi
Sat Mar 23, 2024 7:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mr Rao :SetFilter no funciona
Replies: 11
Views: 3190

Parameterization of xReport

... In our project, we use a custom CSS class named .custom-thead to style the appearance of table headers. This class is applied to the <thead> element of the table to give it a unique look. The .custom-thead class is defined as follows: .custom-thead { background-color: ...
by Otto
Sat Jan 13, 2024 8:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Parameterization of xReport
Replies: 2
Views: 715

Re: Help splitting up a character address string

... sourcecode. ChatGPT Using Harbourino, the given Harbour code can be refactored to demonstrate how Harbourino's preprocessor functionality might be applied. The main idea is to split complex functions or code segments into manageable modules. This example shows how to use include directives and ...
by Otto
Wed Nov 15, 2023 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 1633

Re: xBrowse - Dates - FWH 2310

... So, now I'm trying to see if I have the set somewhere where I can compare the new vs the old ... Meanwhile, people are getting automatic updates applied by Microsoft to their OSs. One client called to tell me he could no longer Cut and Paste in our program. It occurred a couple of days ago when ...
by TimStone
Wed Nov 08, 2023 3:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - Dates - FWH 2310
Replies: 19
Views: 2499

Re: PICTURE for DATE() ?

... library. oRec := TDataRow():new( cAlias, "ID,FIRST,AGE,SALARY" ) Is all that is enough and all pictures are correctly applied
by nageswaragunupudi
Mon Jul 17, 2023 9:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: PICTURE for DATE() ?
Replies: 10
Views: 819

Re: RTF Spell Checker

... colors, sizes, alignments, and more. It provides a WYSIWYG (What You See Is What You Get) interface, allowing users to see the text with its applied formatting as they edit. The features and capabilities of the RTF edit control in FiveWin may include: Text editing: Users can enter, delete, ...
by TimStone
Tue May 23, 2023 9:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF Spell Checker
Replies: 7
Views: 573

Re: Decode JSON - revisited

... consuming tasks in decoding JSON responses is the need to compare the type of the value returned and then look at it relative to how it will be applied in the application. For example, some people return all values as type string, and thus numerics must be converted. It's easy enough to do, ...
by TimStone
Wed Feb 15, 2023 7:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Decode JSON - revisited
Replies: 3
Views: 431

Re: Graphics, icons, bmp's for program layout

... example. To have these visual aspects some fivewin classes were changed. tDialog, TButtonBmp and imgxtio.prg. Few changes. It doesn't need to be applied to controls and components 1 by 1. I've already shown here the solution for Radio Buttons and CheckBox when the system is themed. After the ...
by Giovany Vecchi
Sun Dec 11, 2022 1:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Graphics, icons, bmp's for program layout
Replies: 12
Views: 1335

Re: cyclometric circle

... have no mathematic background and this is sure one of the reasons why I went for a desk job in administration :twisted: Small Course Cyclometry is applied to the extraction of the Italian lotto but can also be extended to other lotteries such as the Spanish or English ones Cyclometry is based on ...
by Silvio.Falconi
Tue Dec 06, 2022 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 5143

Re: prsht.h changes for Borland 64 bits

But then the same fix should be applied to MSC.
by Enrico Maria Giordano
Thu Nov 10, 2022 8:58 am
 
Forum: Utilities / Utilidades
Topic: prsht.h changes for Borland 64 bits
Replies: 17
Views: 12791

Re: Ue Studio New Licence Modell

... quickly open files across multiple projects at any time, and access them easily ( often to pull code from a different application when it can be applied to a current project ). I do not use it to do "development builds". I have my current project open in Visual Studio 2022 Community, ...
by TimStone
Wed May 25, 2022 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ue Studio New Licence Modell
Replies: 20
Views: 1718

Re: reccount en mariadb

Code: Select all  Expand view
oRs:RecordCount()
oRs:RecCount()
oRs:LastRec()


--> Total number of records

When a filter is applied:
Code: Select all  Expand view
oRs:KeyCount()

Number of filtered records
by nageswaragunupudi
Mon Apr 25, 2022 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: reccount en mariadb
Replies: 2
Views: 246
Next

Return to advanced search