Dear Antonio,
Wish you many more Happy Returns of the Day.
Stay Blessed with Good Health and Joy.
-Ramesh Babu P
Search found 26 matches
- Tue Nov 26, 2024 4:11 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Happy birthday dear Antonio
- Replies: 11
- Views: 1585
- Mon Sep 16, 2024 1:45 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Creando Servicios con Harbour y xHarbour
- Replies: 28
- Views: 3440
Re: Creando Servicios con Harbour y xHarbour
Dear Mr.Antonio,
I could build the EXE and the service is started.
Where I should insert the Business Logic in the
Loop?
Can you please give me a small example.
I tried like this to test
// Aquí va el bucle principal del servicio
while (ServiceStatus.dwCurrentState == SERVICE_RUNNING ...
I could build the EXE and the service is started.
Where I should insert the Business Logic in the
Loop?
Can you please give me a small example.
I tried like this to test
// Aquí va el bucle principal del servicio
while (ServiceStatus.dwCurrentState == SERVICE_RUNNING ...
- Sat Sep 14, 2024 2:58 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: slowness
- Replies: 76
- Views: 11583
Re: slowness
Dear Mr.Otto,
Does that mean you no longer use index files at all?
I am using INDEXes. But not .CDX Files. I am creating INDEXes
in Local System's (Client System) Memory. So that, there should
not be any network delay, to set various index orders from Server.
How large are your files at ...
Does that mean you no longer use index files at all?
I am using INDEXes. But not .CDX Files. I am creating INDEXes
in Local System's (Client System) Memory. So that, there should
not be any network delay, to set various index orders from Server.
How large are your files at ...
- Fri Sep 13, 2024 12:50 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: slowness
- Replies: 76
- Views: 11583
Re: slowness
Hi Mr.Marco,
A small suggestion to you to try.
When the INDEXes are bigger and their travel time in NETWORK
environment, I am using the following technique(s)
1) USE <cDbfFile> ALIAS <cAlias> //(Don't open index file while using the DBF)
INDEX ON <cIndexKey> TAG <cIndexTag> MEMORY
The above ...
A small suggestion to you to try.
When the INDEXes are bigger and their travel time in NETWORK
environment, I am using the following technique(s)
1) USE <cDbfFile> ALIAS <cAlias> //(Don't open index file while using the DBF)
INDEX ON <cIndexKey> TAG <cIndexTag> MEMORY
The above ...
- Sun Aug 11, 2024 12:40 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: To. Mr.Rao
- Replies: 4
- Views: 1229
Re: To. Mr.Rao
Dear Yunus,
-Ramesh Babu
Yes it is True.Mr.Rao's contribution for our programming community
is remarkable. He is encyclopedia for fivewin.
-Ramesh Babu
- Sat Aug 10, 2024 3:00 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: To. Mr.Rao
- Replies: 4
- Views: 1229
Re: To. Mr.Rao
Mr.Yunus,
#include "fivewin.ch"
function main()
local BDayWishes
FW_setunicode(.t.)
BDayWishes := { ;
"Wishing you a day filled with love and joy. Happy Birthday!",;
"Feliz cumpleaños! Espero que disfrutes tu día",;
"Feliz Aniversário!",;
"जन्मदिन की हार्दिक शुभकामनाएँ!",;
"May your year be ...
#include "fivewin.ch"
function main()
local BDayWishes
FW_setunicode(.t.)
BDayWishes := { ;
"Wishing you a day filled with love and joy. Happy Birthday!",;
"Feliz cumpleaños! Espero que disfrutes tu día",;
"Feliz Aniversário!",;
"जन्मदिन की हार्दिक शुभकामनाएँ!",;
"May your year be ...
- Sat Aug 10, 2024 2:54 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Birthday Wishes to Mr. Rao
- Replies: 23
- Views: 4872
Re: Birthday Wishes to Mr. Rao
Dear Rao Gaaru (Rao Sir),
Wish you a Very Happy Birthday and also wish you to have
many more Happy and Healthy Birthdays ahead.
-Ramesh Babu
Wish you a Very Happy Birthday and also wish you to have
many more Happy and Healthy Birthdays ahead.
-Ramesh Babu
- Sat Jul 13, 2024 1:10 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: XIMAGE : Gamma Level Adjustment
- Replies: 6
- Views: 883
Re: XIMAGE : Gamma Level Adjustment
Dear Nageswara Rao gaaru,
Thank you for your additions to xImage Class for Image Editing.
It is a great help to me to completely avoid using FreeImage.dll wrapper
function for Image editing.
The following is my Image editing dialog which is almost similar to your
functionality.
https://i ...
Thank you for your additions to xImage Class for Image Editing.
It is a great help to me to completely avoid using FreeImage.dll wrapper
function for Image editing.
The following is my Image editing dialog which is almost similar to your
functionality.
https://i ...
- Fri Jul 12, 2024 2:18 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Dbf/cdx to sql changing
- Replies: 53
- Views: 5200
Re: Dbf/cdx to sql changing
Hi,
I am almost in the process of concluding the conversion my Very Huge Application
from DBFCDX to FiveWins's Native MariaDb Functionality.
There are several ways provided in MariaDb Class with several Examples
using which you can easily adopt MariaDb.
Please go through the examples provided in ...
I am almost in the process of concluding the conversion my Very Huge Application
from DBFCDX to FiveWins's Native MariaDb Functionality.
There are several ways provided in MariaDb Class with several Examples
using which you can easily adopt MariaDb.
Please go through the examples provided in ...
- Wed Jun 12, 2024 1:42 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Position of the text in the checkbox
- Replies: 2
- Views: 448
Re: Position of the text in the checkbox
Hi,
The following may be useful to you.
* Horizontal Alignment Constant
BS_LEFT
BS_CENTER
BS_RIGHT
* Vertical Alignment Constant
BS_TOP
BS_VCENTER
BS_BOTTOM
* To Show Text Left side of Checkbox (Default Right)
BS_LEFTTEXT
oCb:nStyle := nOr(WS_CHILD, WS_VISIBLE, BS_AUTOCHECKBOX, WS_TABSTOP ...
The following may be useful to you.
* Horizontal Alignment Constant
BS_LEFT
BS_CENTER
BS_RIGHT
* Vertical Alignment Constant
BS_TOP
BS_VCENTER
BS_BOTTOM
* To Show Text Left side of Checkbox (Default Right)
BS_LEFTTEXT
oCb:nStyle := nOr(WS_CHILD, WS_VISIBLE, BS_AUTOCHECKBOX, WS_TABSTOP ...
- Thu May 02, 2024 8:19 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Happy Birthday Enrico
- Replies: 25
- Views: 2067
Re: Happy Birthday Enrico
Dear Enrico,
Wish You Many more Returns of the day.
May the Almighty bless you with good health
and Happiness throughout your life.
- Ramesh Babu
Wish You Many more Returns of the day.
May the Almighty bless you with good health
and Happiness throughout your life.
- Ramesh Babu
- Fri Apr 12, 2024 6:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Problem with valid email refresh btnbmp- RESOLVED
- Replies: 25
- Views: 5098
Re: Problem with valid email refresh btnbmp
Hi Friends,
I have tested the Antonio's above code with:
Win11,
FWH 2310,
xHarbour 1.3.1 Lastest Build,
BCC760
And it is working as intended.
-Ramesh Babu
I have tested the Antonio's above code with:
Win11,
FWH 2310,
xHarbour 1.3.1 Lastest Build,
BCC760
And it is working as intended.
-Ramesh Babu
- Thu Mar 28, 2024 2:59 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: XP and FWH2402+bcc7.70
- Replies: 12
- Views: 3608
Re: XP and FWH2402+bcc7.70
Hi Enrico,Enrico Maria Giordano wrote:Ramesh, did you receive my email? If not, please write to my private email.
Thank you Very much. I have received it and replied to your mail.
-Ramesh Babu
- Tue Mar 26, 2024 1:44 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: XP and FWH2402+bcc7.70
- Replies: 12
- Views: 3608
Re: XP and FWH2402+bcc7.70
Hi Rick,
Thank you very much.
I did not find BCC77 in Embarcadero Site. I have downloaded BCC102.Zip,
Which contains BCC730 Version only.
Any more clue?
Previously, we used to get xHarbour, BCC etc. Versions from "WHOISAWAY.COM" .
Now a days I am not able to get into that site due to Some Errors ...
Thank you very much.
I did not find BCC77 in Embarcadero Site. I have downloaded BCC102.Zip,
Which contains BCC730 Version only.
Any more clue?
Previously, we used to get xHarbour, BCC etc. Versions from "WHOISAWAY.COM" .
Now a days I am not able to get into that site due to Some Errors ...
- Mon Mar 25, 2024 1:05 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: XP and FWH2402+bcc7.70
- Replies: 12
- Views: 3608
Re: XP and FWH2402+bcc7.70
Hi Friends,
Where do I get BCC 7.7 ?
Please advise me at aksharasoft @ gmail.com
-Ramesh Babu
Where do I get BCC 7.7 ?
Please advise me at aksharasoft @ gmail.com
-Ramesh Babu