Search found 35 matches: mixing

Return to advanced search

Re: Problem With oRs:Requery()

Am I doing something worng? Yes, please. You are mixing up ADO with FWH built-in MySql/MariaDB library classes. ADO connection object does not have RowSet(...) method. ADO is a product of Microsoft. This is the suggested approach: oCn   := FW_OpenAdoConnection( ...
by nageswaragunupudi
Tue Oct 18, 2022 3:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem With oRs:Requery()
Replies: 4
Views: 511

Re: First steps

Thanks I was mixing the libraries and the compiler as well.

Ari
by Ari
Mon Aug 22, 2022 7:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: First steps
Replies: 4
Views: 394

Re: TDatabase Seek

... .. I have to ( on the fly ) dencrypt the Customer table .. and to do that I am creating a temp .dbf table on the local hard drive .. Since I mixing ADO and DBFCDX .. I pass the table object's between various modules and traditional .dbf syntax just would not work .. hence my interest in tDatabase. ...
by Rick Lipkin
Fri Jul 02, 2021 1:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase Seek
Replies: 6
Views: 800

Re: Fixed Brush

Added brushed text with 3D look,
gradient base,
and border with possible transparent-level,
possible to move the dialog,
mixing my sample from above with Mr. Rao's solution

Image

regards
Uwe :D
by ukoenig
Fri Dec 27, 2019 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fixed Brush
Replies: 11
Views: 1167

Re: New FWH 19.03

I can fix the problem in my code by using @SayText( ) throughout when mixing in color. If you like to use :SayText() for its additional features, you may do so in your future programs. But please do not waste your time in modifying your existing programs by ...
by nageswaragunupudi
Thu Apr 11, 2019 8:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 19.03
Replies: 37
Views: 4923

Re: New FWH 19.03

... as you show. I see Gunther was noting the same behavior that I observed. I can fix the problem in my code by using @SayText( ) throughout when mixing in color. Tim.
by TimStone
Wed Apr 10, 2019 9:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 19.03
Replies: 37
Views: 4923

Re: trying with tdatabase

The above function Open_DB() is meant for DBFNTX. Pleae do not get confused with so many alternatives like TDB, TDatbase, TData etc and keep mixing them up. TDatabase is the latest and advanced. Still, I personally advise you that is not necessary to use any of these classes to make a good multiuser ...
by nageswaragunupudi
Thu Jan 24, 2019 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: trying with tdatabase
Replies: 34
Views: 4746

Re: Introducing FiveTech's fivedit

... it does not handle classes and methods properly. Each class should be at the top level and all its methods should be listed below that, indented. Mixing all the methods from multiple class in with the functions, is confusing. [If you want to see how the functions list should work, get a copy of ...
by James Bott
Wed Apr 05, 2017 6:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Introducing FiveTech's fivedit
Replies: 560
Views: 105390

Re: Errors (dumb I should think) with FW 16.06

Antonio: I had a BIG mess up with my libraries. I was mixing all LIBs from my xHarbour times. Now fixed based on buildh.bat. The only issue that I'm getting is the following link error: Error: Unresolved external '_HB_FUN_CURDRIVE' referenced from C:\PROG\TWOIMG\GUSTAVO.OBJError: ...
by HunterEC
Mon Aug 29, 2016 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Errors (dumb I should think) with FW 16.06
Replies: 15
Views: 2520

Re: different harbour 3.2 r150129225 with r1506171039

kok joek hoa wrote:Dear cnavarro,

not compile error but runtime error,

regards,

Kok


Kok
The image appears in your program runs correctly

Maybe, if you are changing version of harbour, make sure your tools of compilation and linking are properly configured and are not mixing both versions.
by cnavarro
Mon Aug 17, 2015 8:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: (SOLVE) different harbour 3.2 r150129225 with r1506171039
Replies: 13
Views: 1910

Re: Advantage Database and SQL

... is needed. The reason I suggest this is because there seems to be some subtle differences on the way these two RDDs maintain NTX indexes and mixing DBFNTX on some clients with ADS_NTX on other clients will surely cause index corruption. As a side note; when I first started using ADS back ...
by reinaldocrespo
Fri Aug 14, 2015 6:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advantage Database and SQL
Replies: 6
Views: 2350

Re: autentication via Finger print or Face

Silvio, I suspect you mixing concepts here, Griaulle's library provide a generic encapsulation to support several fingerprint readers on the market, and probably will support also digitalpersona readers. The purpose of the stuff that ...
by Pablo Botella
Sat Aug 23, 2014 3:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: autentication via Finger print or Face
Replies: 19
Views: 7370

Re: Mixing colors. Mr. Ukoenig

Working on my own RGB-tool, there will be a Bridgtness-adjustment to. There is still a lot to do, to get it finished. I noticed in colors.ch ------------------------- #define CLR_HRED 255 // RGB( 255, 0, 0 ) #define CLR_HMAGENTA 16711935 // RGB( 255, 0, 255 ) #define CLR_HBLUE 16711680 // RGB( 0, 0,...
by ukoenig
Tue Aug 05, 2014 2:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mixing colors. Mr. Ukoenig
Replies: 4
Views: 751

Re: Mixing colors. Mr. Ukoenig

Mr. Ukoenig, My second requirement is how to getting a certain amount of brightness from a base color: to make a function Get_MixColorBrightness() nBrightness: = Get_Brightness (CLR_HGRAY) nColor: = Get_MixColorBrightness(CLR_GREEN, nBrightness) // nColor will be green but with Brightness nBrightnes...
by hmpaquito
Tue Aug 05, 2014 7:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mixing colors. Mr. Ukoenig
Replies: 4
Views: 751

Re: Mixing colors. Mr. Ukoenig

hmpaquito, the RGB-colorinfo about the brightness is a value of 0 for the darkest and 255 for the brightest color. White will return 255 Black will return 0 CLR_GREEN => 32768 => RGB( 0, 128, 0 ) => 75 CLR_HGREEN => 65280 => RGB( 0, 255, 0 ) => 149 Low Intensity colors will return ...
by ukoenig
Mon Aug 04, 2014 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mixing colors. Mr. Ukoenig
Replies: 4
Views: 751
Next

Return to advanced search

cron