Search found 167 matches: straight

Return to advanced search

SWITCH class not clear

... if I create a smaller switch control in a dialog you can see that the edges are not sharp i.e. the edge is not straight How I can resolve ?
by Silvio.Falconi
Fri Nov 17, 2023 9:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SWITCH class not clear
Replies: 0
Views: 327

Re: printer class printimage

Note-1: We need not use oImage for printing. We can straight away use the image source, viz, filename, resource or any source of image. Note-2: TImage requires 'freeimage.dll'. Better to use TBitmap or TXImage instead so that our application runs ...
by Silvio.Falconi
Thu Apr 20, 2023 10:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: printer class printimage
Replies: 7
Views: 617

Re: printer class printimage

Note-1: We need not use oImage for printing. We can straight away use the image source, viz, filename, resource or any source of image. Note-2: TImage requires 'freeimage.dll'. Better to use TBitmap or TXImage instead so that our application runs without ...
by nageswaragunupudi
Wed Apr 19, 2023 3:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: printer class printimage
Replies: 7
Views: 617

How to capture screen by code

... to write code based on the following pseudocode. I have no idea where to start i. Run external exe that will display numbers // this part is straight forward ii. Once it displayed, pop a dialog box at the edge of the external exe's window // 2 issues. Determining when the external exe appear ...
by hua
Thu Feb 23, 2023 5:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to capture screen by code
Replies: 3
Views: 336

Re: libcurl issues

... the answer just doesn't come, even when trying multiple approaches. This is one of them. Still using libcurl: This is a working format in straight c-libcurl:   const char *data = "{\r\n  \"transactionData\": {\r\n    \"transactionType\": \"CreditSale\",\r\n ...
by TimStone
Sat Feb 11, 2023 7:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: libcurl issues
Replies: 6
Views: 453

Re: cyclometric circle

... The Polygon function draws a polygon consisting of two or more vertices connected by straight lines. The polygon is outlined by using the current pen and filled by using the current brush and polygon fill mode. PolyPolygon https://docs.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-polypolygon ...
by Jimmy
Mon Aug 01, 2022 5:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3018

Re: Iniciando con mod_harbour

... Harbourino for myself. It is useful to adapt ready-made modules to your own application. When programming, I like it when I see something straight away. I don't like to start with a blank sheet of paper. :-) My page https://winhotel.space/winhotel_webpage/megamenu.prg is made ...
by Otto
Tue Jan 11, 2022 5:38 pm
 
Forum: mod_harbour
Topic: Iniciando con mod_harbour
Replies: 24
Views: 3747

Re: check existing first and last on customer

Nages, The original question in the first post was how to find if a combination of two fields already exists in the table. I provided a simple and straight answer for that which works irrespective of the indexes . Sorry, I never meant to imply otherwise. I was just pointing out that using primary ...
by Silvio.Falconi
Wed Jun 16, 2021 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: check existing first and last on customer - RESOLVED !!!
Replies: 23
Views: 2501

Re: check existing first and last on customer

Nages, The original question in the first post was how to find if a combination of two fields already exists in the table. I provided a simple and straight answer for that which works irrespective of the indexes . Sorry, I never meant to imply otherwise. I was just pointing out that using primary ...
by James Bott
Tue Jun 15, 2021 4:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check existing first and last on customer - RESOLVED !!!
Replies: 23
Views: 2501

Re: check existing first and last on customer

... The original question in the first post was how to find if a combination of two fields already exists in the table. I provided a simple and straight answer for that which works irrespective of the indexes.
by nageswaragunupudi
Tue Jun 15, 2021 3:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: check existing first and last on customer - RESOLVED !!!
Replies: 23
Views: 2501

Force a POST sort on xBrowse

To All I have an Encrypted Sql table with a field called "EmployeeName .. Select * From Rates order on EMployeeName ..... That is fairly straight forward, but the Field "EmployeeName" is Encrypted .. To Unencrypt the EMployeeName Column I use the old Trick Add oCol ( see below ...
by Rick Lipkin
Mon Jun 07, 2021 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Force a POST sort on xBrowse
Replies: 5
Views: 748

Re: DBF to SQL

... for directly connecting to the server and working like DBU. But FWH by itself is more than enough. If you have already installed MariaDB, we can straight away start some samples and get used to it in one day. If you like we can start today. Please tell us your latest FWH version.
by nageswaragunupudi
Fri Apr 16, 2021 3:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to SQL
Replies: 14
Views: 1622

Re: Know the size of a font selected

ChooseFont() function of FWH is a straight forward implementation of Windows function ChooseFont(). The font size displayed in the ChooseFont() dialog box is in "Points". This size in points is converted to font height with this ...
by Silvio.Falconi
Tue Nov 03, 2020 9:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Know the size of a font selected - Resolved -
Replies: 9
Views: 1322

Re: Know the size of a font selected

ChooseFont() function of FWH is a straight forward implementation of Windows function ChooseFont(). The font size displayed in the ChooseFont() dialog box is in "Points". This size in points is converted to font height with this ...
by nageswaragunupudi
Sun Nov 01, 2020 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Know the size of a font selected - Resolved -
Replies: 9
Views: 1322

Re: To Mister Nages - xBrowser

Dear Mr. Nages, I put the SetBkMode (hDC, 1) straight into the function and it worked. If nClrBack != NIL nBkMode := SetBkMode( hDC, OPAQUE ) nOldClr := SetBkColor( hDC, nClrBack ) Else SetBkMode( hDC, 1 ) EndIf Thank you very much. Att., Oliveiros ...
by oliveiros junior
Wed Aug 19, 2020 7:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Mister Nages - xBrowser
Replies: 21
Views: 2262
Next

Return to advanced search