Search found 132 matches: slightly

Return to advanced search

Re: Problem with alignment in SAY command

João, please avoid to always resubmit a slightly changed version of my (and others) samples, thank you. Good afternoon Enrico. I don't know where there is confusion in the second example I sent. But if I offended you, I'm sorry. I didn't know ...
by karinha
Fri Mar 01, 2024 6:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 819

Re: Problem with alignment in SAY command

João, please avoid to always resubmit a slightly changed version of my (and others) samples, thank you.
by Enrico Maria Giordano
Fri Mar 01, 2024 4:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with alignment in SAY command
Replies: 18
Views: 819

file ID in the Windows file system

... copying always involves creating a new file, which typically results in a new File ID. - **File System Behavior**: Specific behaviors can vary slightly between different file systems (e.g., NTFS, FAT32, exFAT). NTFS, commonly used in Windows, supports stable File IDs across the same volume. ...
by Otto
Fri Jan 05, 2024 4:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: file ID in the Windows file system
Replies: 5
Views: 618

Re: Interesting discussion with ChtGPT

Otto wrote:ChatGPT:
Yes, of course! Harbour/Clipper has a slightly different syntax than modern programming languages like JavaScript, but the basic concepts remain the same.


JavaScript, from Wikipedia:

First appeared December 4, 1995; 27 years ago[


Modern?
by Enrico Maria Giordano
Tue Nov 07, 2023 8:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1227

Interesting discussion with ChtGPT

... Certainly, here's the translation: Can you make this calculation in harbour/clipper for me? ChatGPT: Yes, of course! Harbour/Clipper has a slightly different syntax than modern programming languages like JavaScript, but the basic concepts remain the same. Here's how you can implement the ...
by Otto
Mon Nov 06, 2023 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1227

Re: Disabled buttons at oBar not greyed out after using FWH1912

Your testbar.prg slightly modified: #include "FiveWin.ch"static oWnd, oBarstatic lEnable := .t.//----------------------------------------------------------------------------//function Main()   local oBtn   DEFINE ...
by nageswaragunupudi
Thu Sep 14, 2023 6:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Disabled buttons at oBar not greyed out after using FWH1912
Replies: 17
Views: 1648

Re: Error p/generar EXE usando UHTTPD2 en Windows

... two input fields, tabla and gestion, and a button for 'search'. Please place the labels above the input elements . Center the entire form. Use a slightly larger font size. Highlight the fields when they are in focus. Make it look good, use an awesome icon for the button - add a headline: 'Search ...
by Otto
Sun Aug 06, 2023 7:34 pm
 
Forum: mod_harbour
Topic: Error p/generar EXE usando UHTTPD2 en Windows
Replies: 12
Views: 1915

Re: is box mandotary in SCROLLMSG class?

Good
Our implementation is slightly different, but on the same lines.
by nageswaragunupudi
Tue Jul 18, 2023 7:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: is box mandotary in SCROLLMSG class?
Replies: 6
Views: 367

Re: Advise in Server hardware

... virtual machines and RDP for 5 users, both can deliver impressive performance. If your primary concern is speed, a high-end i9 processor may offer slightly higher clock speeds and better single-threaded performance . I think in a small entrepreneur-led company, speed is the most important thing. ...
by Otto
Mon Apr 03, 2023 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Advise in Server hardware
Replies: 12
Views: 1173

Re: cyclometric circle

... the numbers only in the lower part touch the edge of the object the numbers seem crooked to me i.e. there is no axis 90-> 45 the numbers are slightly off , How I can resolve ? New code #include "fivewin.ch"#include "constant.ch"Function Test()      local oDlg,oFont,oBold  ...
by Silvio.Falconi
Fri Dec 02, 2022 12:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3018

Re: cyclometric circle

I corrected the numbers but Now are too on line of circle How to move them slightly out? Why did you change this part? nAngolo := 2* Pgreco() / nTotalNumbers * ( nI - 1 )      nY := INT( nRaggio * SIN(nAngolo) + yCent)      nX ...
by Silvio.Falconi
Tue Jul 12, 2022 8:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3018

Re: cyclometric circle

I corrected the numbers but Now are too on line of circle How to move them slightly out? Why did you change this part? nAngolo := 2* Pgreco() / nTotalNumbers * ( nI - 1 )      nY := INT( nRaggio * SIN(nAngolo) + yCent)  ...
by AntoninoP
Tue Jul 12, 2022 5:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3018

Re: cyclometric circle

I corrected the numbers but Now are too on line of circle How to move them slightly out? https://i.postimg.cc/s23ktr5M/jjj.png #include "FiveWin.ch"#include "constant.ch"#define COLOR_BTNFACE 15#define PS_SOLID   0Function ...
by Silvio.Falconi
Tue Jul 12, 2022 3:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3018

New BtnBmp Vs Old Btnbmp

... rgb(165,165,165) )  Note btnbmp with "GE" is Different with btnbmp "CA" but is the same code ..that is, it is slightly narrower.....strange!!! ok :) now Use the last release I have (July 2021 to November 2021) https://i.postimg.cc/9fZ4VhQt/ultima.png ...
by Silvio.Falconi
Sat Apr 16, 2022 10:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New BtnBmp Vs Old Btnbmp
Replies: 2
Views: 226

Re: How to implement GETACTIVE()?

This is slightly better but still not perfect: FUNCTION GETACTIVE()    LOCAL i    FOR i = 1 TO LEN( oDlg:aControls )        IF oDlg:aControls[ i ]:HasFocus()  ...
by Enrico Maria Giordano
Thu Oct 29, 2020 9:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement GETACTIVE()?
Replies: 31
Views: 2268
Next

Return to advanced search