Search found 108 matches
- Fri Apr 13, 2018 3:37 pm
- Forum: General
- Topic: SAY AND GET
- Replies: 13
- Views: 853
Re: SAY AND GET
What is the difference between REQUEST & #Include? a 'REQUEST' is a statement directed to the linker that demands to link the requested modules while an '#include' is a directive to the compiler (in fact to the pre-processor ) that instructs him to incorporate a source file exactly in place where t...
- Sun Jan 28, 2018 9:05 pm
- Forum: HMG 64 Bits
- Topic: Rumor - New version of Windows 10 under development (no win32 native)
- Replies: 4
- Views: 787
Re: Rumor - New version of Windows 10 under development (no win32 native)
That's nonsense! and quite premature, if not completely false, misinformation, too.
Win32 appls (and OS support) will be here (any way or another) for at least a decade, probably much more.
regards,
Pete
Win32 appls (and OS support) will be here (any way or another) for at least a decade, probably much more.
regards,
Pete
- Sat Jan 27, 2018 3:06 pm
- Forum: General Discussions
- Topic: Happy Birthday to Mr. Grigory Filatov !!!
- Replies: 26
- Views: 837
Re: Happy Birthday to Mr. Grigory Filatov !!!
Hi Grigory,
my best wishes, for your birthday !
regards,
Pete
my best wishes, for your birthday !

Hmm... this quote must have a so much deep meaning, that could kneel deep down, any modest mind-compiler!Rathinagiri wrote: ↑Sat Jan 27, 2018 1:03 pmIt is not only the life of the program. But the program of the life.![]()

regards,
Pete
- Sat Jan 27, 2018 2:43 pm
- Forum: HMG General Help
- Topic: Request for an HSV to RGB algorithm
- Replies: 2
- Views: 322
Re: Request for an HSV to RGB algorithm
I have this code, which is in C, downloaded from web. ... Thanks Anand, and although I'm not sure what kind of C-dialect is the code posted above, here is the same code "ported" to Harbour: (warning: not tested!) FUNCTION HsvToRgb(h, s, v) // NOTE: h,s,v given values must be in the range 0..1 LOCAL...
- Thu Nov 02, 2017 12:51 pm
- Forum: HMG General Help
- Topic: Find a file function
- Replies: 4
- Views: 496
Re: Find a file function
Maybe hb_DirScan(<cPath>, [<cFileMask>], [<cAttr>]) ➜ aFiles) is what you're looking for. PROCEDURE Main() local a := hb_DirScan( "C:\harbour", "*.txt" ) aeval( a, {|e| qout( e[1] ) } ) return Keep in mind that searching an entire hard disk could be quite time consuming, so you have to warn user(s) ...
- Mon Sep 18, 2017 1:12 pm
- Forum: My HMG Projects
- Topic: Harbour MiniGUI Extended Edition build 17.08 is published
- Replies: 20
- Views: 2964
Re: Harbour MiniGUI Extended Edition build 17.08 is published
Has there been any schism within the Harbour Project? Do Szakáts and Czerpak walk each one for their side? :( Hi, I wouldn't say that. Besides, I cannot and I won't speak on behalf of Viktor or Czerpak, (or anybody other) regarding their plans and moves. And especially when I'm not aware of anythin...
- Fri Sep 15, 2017 5:50 pm
- Forum: PDF Generation
- Topic: PDF Viewer DLL?
- Replies: 145
- Views: 19349
- Fri Sep 15, 2017 5:41 pm
- Forum: My HMG Projects
- Topic: Harbour MiniGUI Extended Edition build 17.08 is published
- Replies: 20
- Views: 2964
Re: Harbour MiniGUI Extended Edition build 17.08 is published
BTW I saw a growing interest to MinGW-based build of MiniGUI Ex at http://sourceforge.net/projects/hbpidew/ This is a excellent news. Hi, just a clarification: the above link at sourceforge refers to a quite old bundle of MiniGui-ex pre-compiled with MinGW gcc compiler. I was maintaining it for som...
- Wed Aug 23, 2017 10:17 pm
- Forum: Language Related
- Topic: Double Precision aritmatic
- Replies: 12
- Views: 1478
Re: Double Precision aritmatic
Thanks. The double precision does not apply to numeric value in memory I guess. it's not clear what you mean by "numeric value in memory" but as far as I know, Harbour uses double numeric type which of course follows double value specification as defined by IEEE 754, that is 53bit precision . Isn't...
- Fri Aug 04, 2017 11:30 am
- Forum: HMG Unicode version
- Topic: QR Code reader
- Replies: 11
- Views: 1090
Re: QR Code reader
.... I'm looking at how to create the static library (.a) and use it inside HMG \ Harbor @ danielmaximiliano Hi, since your are working on it, you could also take a look at Quirc (written in plain C, perhaps not too hard to create harbour wrappers. combined with jpeg/png libs can read/decode QR cod...