Dear Mr. Surasak
Can you please provide me your email address?
Or please write to my email
nageswaragunupudi[at]gmail[dot]com
Search found 10722 matches
- Fri Feb 07, 2025 5:37 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Incorrect Font Display
- Replies: 17
- Views: 6439
- Tue Feb 04, 2025 11:21 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Imagen en ToolTip
- Replies: 4
- Views: 590
Re: Imagen en ToolTip
It should work.
Working for me here
This is my sample.
function ToolTipIcon()
local oDlg, oBtn
SetBalloon( .t. )
DEFINE DIALOG oDlg SIZE 300,100 PIXEL TRUEPIXEL ;
TITLE "TOOLTIP ICON"
@ 20,50 BTNBMP oBtn PROMPT "TEST" SIZE 100,60 PIXEL OF oDlg ;
2007 CENTER ;
TOOLTIP { "This is the text ...
Working for me here
This is my sample.
function ToolTipIcon()
local oDlg, oBtn
SetBalloon( .t. )
DEFINE DIALOG oDlg SIZE 300,100 PIXEL TRUEPIXEL ;
TITLE "TOOLTIP ICON"
@ 20,50 BTNBMP oBtn PROMPT "TEST" SIZE 100,60 PIXEL OF oDlg ;
2007 CENTER ;
TOOLTIP { "This is the text ...
- Tue Feb 04, 2025 9:20 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: New FWH 24.09
- Replies: 97
- Views: 15294
Re: New FWH 24.09
Please wait for the next release.
- Tue Feb 04, 2025 9:17 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Mysql embedded
- Replies: 2
- Views: 420
Re: Mysql embedded
First point to note is that MySQL withdrew support to embedded server many years ago.
But still with FWH we can still use embedded server and FWH comes with all the required dll/libs and FWH MySQL/maria built-in library supports it.
To start with:
https://forums.fivetechsupport.com/viewtopic.php?f ...
But still with FWH we can still use embedded server and FWH comes with all the required dll/libs and FWH MySQL/maria built-in library supports it.
To start with:
https://forums.fivetechsupport.com/viewtopic.php?f ...
- Tue Feb 04, 2025 8:48 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: problemas con CheckBox en Dialog con TRANSPARENT en FWH 2409
- Replies: 12
- Views: 12301
Re: problemas con CHECKBOX en FWH 2409
Tengo otro dialogo mas pequeño que incluye in checkbox que tiene el mismo comportamiento en el cual uso la clausula TRANSPARENT en el dialogo y al quitarlo se soluciona esto esta pasando en mi caso
Understand. The problem is with TRANSPARENT and Themed dialogs (using Manifest).
Please apply ...
- Tue Feb 04, 2025 3:46 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Cómo Insertar registros a na tabla?
- Replies: 17
- Views: 31544
Re: Cómo Insertar registros a na tabla?
https://imagizer.imageshack.com/img923/3236/L8qNZA.gif
#include "fivewin.ch"
#include "adodef.ch"
//----------------------------------------------------------------------------//
function Main()
local oCn, oRs
local aInsert
oCn := Fw_OpenAdoConnection( "MYSQL,209.250.245.152,fwh,fwhuser ...
#include "fivewin.ch"
#include "adodef.ch"
//----------------------------------------------------------------------------//
function Main()
local oCn, oRs
local aInsert
oCn := Fw_OpenAdoConnection( "MYSQL,209.250.245.152,fwh,fwhuser ...
- Mon Feb 03, 2025 10:01 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Cómo Insertar registros a na tabla?
- Replies: 17
- Views: 31544
Re: Cómo Insertar registros a na tabla?
Another way, using only Auto-increment field.
#include "fivewin.ch"
//----------------------------------------------------------------------------//
function Main()
local oCn, oRs
oCn := Fw_OpenAdoConnection( "MYSQL,209.250.245.152,fwh,fwhuser,FiveTech@2022", .t. )
oRs := CreateTableFruits ...
#include "fivewin.ch"
//----------------------------------------------------------------------------//
function Main()
local oCn, oRs
oCn := Fw_OpenAdoConnection( "MYSQL,209.250.245.152,fwh,fwhuser,FiveTech@2022", .t. )
oRs := CreateTableFruits ...
- Sun Feb 02, 2025 6:25 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: problemas con CheckBox en Dialog con TRANSPARENT en FWH 2409
- Replies: 12
- Views: 12301
Re: problemas con CHECKBOX en FWH 2409
We tested your RC file at our end and we did not see any problems.
We tested with Harbour, xHarbour with and without Manifest.
This is the program we used to test:
#include "fivewin.ch"
function Main()
local oDlg, oFont
local oGet[ 20 ]
local aVar := { Space(10), "1234567890", Space(10 ...
We tested with Harbour, xHarbour with and without Manifest.
This is the program we used to test:
#include "fivewin.ch"
function Main()
local oDlg, oFont
local oGet[ 20 ]
local aVar := { Space(10), "1234567890", Space(10 ...
- Sat Feb 01, 2025 5:38 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: problemas con CheckBox en Dialog con TRANSPARENT en FWH 2409
- Replies: 12
- Views: 12301
Re: problemas con CHECKBOX en FWH 2409
We will look into this and get back soon
- Sat Feb 01, 2025 1:12 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: multi dimensional array
- Replies: 2
- Views: 5284
Re: multi dimensional array
local aArray := {"Campo1",.t.,1,"nomedbf",{"test1","test2","test3"} ,0}
//
XBROWSER aArray[ 5 ] FASTEDIT
// or
XBROWSER { aArray } SETUP ( oBrw:aCols[ 5 ]:nEditType := 1 )
// or
XBROWSER aArray FASTEDIT SETUP ( oBrw:aCols[ 1 ]:bEditWhen := { |o|o:oBrw:nArrayAt = 5 } )
//
XBROWSER aArray[ 5 ] FASTEDIT
// or
XBROWSER { aArray } SETUP ( oBrw:aCols[ 5 ]:nEditType := 1 )
// or
XBROWSER aArray FASTEDIT SETUP ( oBrw:aCols[ 1 ]:bEditWhen := { |o|o:oBrw:nArrayAt = 5 } )
- Fri Jan 31, 2025 12:13 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: uCharToVal()
- Replies: 3
- Views: 589
Re: uCharToVal()
In many cases, the function works well even without specifying the type in the 2nd parameter
Sample:
function TestStr2Val()
local aStr := { "34512.01", "1,234.56", "3.456,34", "12.5%", "true", "FALSO", ;
"10/20/2020", "25-02-1998", "10 jan 2010", "feb 15, 78" }
SET DATE ITALIAN
SET CENTURY ...
Sample:
function TestStr2Val()
local aStr := { "34512.01", "1,234.56", "3.456,34", "12.5%", "true", "FALSO", ;
"10/20/2020", "25-02-1998", "10 jan 2010", "feb 15, 78" }
SET DATE ITALIAN
SET CENTURY ...
- Fri Jan 31, 2025 8:32 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xBrowse record selector color
- Replies: 3
- Views: 685
Re: xBrowse record selector color
At present, XBrowse does not provide this facility.
We will keep your requirement in mind and try to provide this feature soon.
We will keep your requirement in mind and try to provide this feature soon.
- Wed Jan 29, 2025 11:39 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: dialogo resizable desde recursos?
- Replies: 14
- Views: 31196
Re: dialogo resizable desde recursos?
I gave this function in my original sample
function SetResize( oDlg )
local oCtrl
oDlg:Cargo := { oDlg:nWidth, oDlg:nHeight, oDlg:oFont:nHeight }
for each oCtrl in oDlg:aControls
WITH OBJECT oCtrl
:Cargo := { :nTop, :nLeft, :nWidth, :nHeight, :oFont:nHeight }
END
next
return nil
Please ...
function SetResize( oDlg )
local oCtrl
oDlg:Cargo := { oDlg:nWidth, oDlg:nHeight, oDlg:oFont:nHeight }
for each oCtrl in oDlg:aControls
WITH OBJECT oCtrl
:Cargo := { :nTop, :nLeft, :nWidth, :nHeight, :oFont:nHeight }
END
next
return nil
Please ...
- Wed Jan 29, 2025 7:18 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: dialogo resizable desde recursos?
- Replies: 14
- Views: 31196
Re: dialogo resizable desde recursos?
Master Nages, does it work with more complex dialogs with folders, xbrowse, etc?
Master Nages, ¿funciona con cuadros de diálogo más complejos con carpetas, xbrowse, etc?
Gracias, tks.
Regards, saludos.
xbrowse - yes
folders? No. We need to still improve the logic, to handle folders.
I think ...
- Wed Jan 29, 2025 7:15 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: dialogo resizable desde recursos?
- Replies: 14
- Views: 31196
Re: dialogo resizable desde recursos?
Mr. Ruben
So, we need to review font resizing and we will look into that aspect.
Please keep using and help us by reporting any issues you notice.
So, we need to review font resizing and we will look into that aspect.
Please keep using and help us by reporting any issues you notice.