Search found 15 matches: trick

Searched query: trick

by TimStone
Mon Dec 09, 2024 10:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: PRINT class printer options
Replies: 6
Views: 543

PRINT class printer options

... be to set the default printer to the alternate ( B ) BEFORE creating the print class, then back after the invoice completes printing. This would trick the class to think B is the default and still allow a different printer to be selected. We just don't have a FWH or Harbour command that allows us ...
by Jimmy
Tue Oct 08, 2024 10:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: why, under 64 Bit OS, does not Find UUID.LIB
Replies: 33
Views: 2719

Re: why, under 64 Bit OS, does not Find UUID.LIB

hi Antonio,
Copy uuid.lib to the folder where you are building the app
YES, that Trick work, THX :D

but there is a new Problem : 32 Bit App need about 5 Seconds to start under 64 Bit OS after 1st. create :shock:
than it start immediately under 64 Bit OS.

what might be a Reason that 32 Bit App ...
by karinha
Fri Mar 15, 2024 3:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Modify the title font of a MdiChild window
Replies: 4
Views: 1159

Re: Modify the title font of a MdiChild window

My dear friend Otto, try this trick that you posted, using MDI, please.

Mi querido amigo Otto, prueba este truco que publicaste usando MDI, por favor.

Code: Select all | Expand

   DEFINE WINDOW oWnd STYLE ( WS_POPUP | 0x00040000L  ) ;
      COLOR CLR_BLACK, CLR_MSPURPLE MDI
 
Gracias, tks.

Regards, saludos.
by Silvio.Falconi
Thu Feb 29, 2024 8:14 am
Forum: FiveWin for Harbour/xHarbour
Topic: TUrlLink on Xbrowse
Replies: 3
Views: 541

Re: TUrlLink on Xbrowse

hi Silvio,

https://forums.fivetechsupport.com/viewtopic.php?f=6&t=37846
seem me the Solution which use a "Trick" (blue Color) to show URL
https://hymplus.com/forofw/xbrowse_url_3.png
when DblClick on Cell you can open a "extra" Dialog using TURLLink()

---

as i know it is not possible to use a ...
by Jimmy
Thu Feb 29, 2024 5:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: TUrlLink on Xbrowse
Replies: 3
Views: 541

Re: TUrlLink on Xbrowse

hi Silvio,

https://forums.fivetechsupport.com/viewtopic.php?f=6&t=37846
seem me the Solution which use a "Trick" (blue Color) to show URL
https://hymplus.com/forofw/xbrowse_url_3.png
when DblClick on Cell you can open a "extra" Dialog using TURLLink()

---

as i know it is not possible to use a ...
by karinha
Fri Nov 24, 2023 4:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate total pages
Replies: 32
Views: 8440

Re: Calculate total pages

Master Otto, master Otto!! Are you trying to trick me? hahahahaha.
I asked for a PRACTICAL EXAMPLE with Fonte(.PRG) where you use this subclass model that you post.
There is no way to fool the biggest super power of FIVEWIN BRASIL.
hahahahahahaha.

¡¡Maestro Otto, maestro Otto!! ¿Estás tratando de ...
by Rick Lipkin
Wed Nov 15, 2023 10:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Help splitting up a character address string
Replies: 10
Views: 1980

Re: Help splitting up a character address string

... table has Street,City, State and Zip .. however the Address excel column has street,city,state and zip concatenated into one excel column .. so the trick is as I loop through the for\next loop ... that I run the conversion from the value "City,State ZIP" into it individual fields .. I don't think ...
by byron.hopp
Mon Jul 03, 2023 5:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Hide a Checkbox from Resource.
Replies: 7
Views: 613

Hide a Checkbox from Resource.

Is there a trick to hide a checkbox on a dialog which I access through an RC file. I am making a calendar routine and wanted to hide all days outside of the current month, I can disable them so the user cannot check them, but I wanted to make them disappear. Thanks,
by Cgallegoa
Mon Jun 05, 2023 11:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 4459

Re: Problem with xBrowse

Armando:

Instead of:

Code: Select all | Expand

"SELECT *,S.SUC_NOM FROM HdrVda H LEFT JOIN Sucursales S ON H.HDR_SUC = S.SUC_NUM ORDER BY HDR_FOL"
Use

Code: Select all | Expand

"SELECT H.*,S.SUC_NOM FROM HdrVda H LEFT JOIN Sucursales S ON H.HDR_SUC = S.SUC_NUM ORDER BY HDR_FOL"
"H.*" make the trick.

Regards,
by Detlef
Sun May 14, 2023 2:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: create pdf
Replies: 14
Views: 2038

Re: create pdf

... not use PAD_LEFT as 7th parameter when using SayText()
Use 'nil' and test again.
It should work without errors. Please run and let us know
Yes, that made the trick.
I didn't see that cAlign was meant as character type and didn't know that it's better to be nil.

Thanks for your clarification, Mr. Rao
by Jimmy
Fri May 05, 2023 4:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to read settings in Word
Replies: 14
Views: 1324

Re: How to read settings in Word

... use Windows default Folder "Personal Files\Document"
... but File-Dialog Control "might" show you "last Folder"

---

under Xbase++ i have use a "Trick" to show "right" Folder

before call ActiveX i call File-Dialog Control "invisible" to set new Path and than close it
to use a "invisible" Control ...
by reinaldocrespo
Thu Mar 23, 2023 12:04 am
Forum: FiveWin for Harbour/xHarbour
Topic: Unicode to UTF8
Replies: 2
Views: 353

Unicode to UTF8

... my webhook service is arriving as Unicode.

for example: Goyt\u00eda is Unicode which translated to UTF8 would become Goytía and that is what I need to display.

I tried hb_Translate( 'Goyt\u00eda', "ES850", "UTF8" ) but that is not quite doing the trick.

Can someone here help?

Thank you,

Reinaldo.
by Jimmy
Sun Nov 06, 2022 5:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: MENUITEM RESOURCE transparency ?
Replies: 28
Views: 2470

Re: MENUITEM RESOURCE transparency ?

hi,

thx for your work and Sample

as i can "see" you use a "Trick" to change Style to 2007, than it look much better

but how should a Newbie "know" this while Help File does not say it
without "Trick" it look like i say
https://i.postimg.cc/jCyjQxXM/MENU-16x16-PINK.png
https://i.postimg.cc ...
by Silvio.Falconi
Thu Oct 27, 2022 11:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 3343

Re: Manifest

... win 7 style why?
it is "by Design of xBase" ... :roll:

same is under Xbase++ and HMG that MDI Client have Windows 7 Style :(

---

as i remember i have use a "Trick" with Codejock Skinframework which also work on MDI Client



why doesn't this happen in other programming languages? sample Delphi
by Jimmy
Thu Oct 27, 2022 10:39 am
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 3343

Re: Manifest

... 10 I have two types of windows?
the main is win 10 style and the child is win 7 style why?
it is "by Design of xBase" ... :roll:

same is under Xbase++ and HMG that MDI Client have Windows 7 Style :(

---

as i remember i have use a "Trick" with Codejock Skinframework which also work on MDI Client