Search found 10734 matches

by nageswaragunupudi
Fri Mar 07, 2025 8:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FwMaria and oCn:BackUp
Replies: 7
Views: 1401

Re: Problem with FwMaria and oCn:BackUp

Is your database name "mastronipe" ?
Is your code:

Code: Select all | Expand

oCn:Backup( "mastronipe", <cDest>)</code> 
?

Also what is the result of 
[code]cType := nil
? oCn:TableExists( "worksheet", "mastronipe", @cType )
? cType
by nageswaragunupudi
Thu Mar 06, 2025 11:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FwMaria and oCn:BackUp
Replies: 7
Views: 1401

Re: Problem with FwMaria and oCn:BackUp

Please make a separate small exe and try:
oCn := maria_Connect( ... )
oCn:lShowErrors := .t.
oCn:lLogErr := .t.
oCn:BackUp( <db>, <dst> )
? "done"
return nil
Please let me know if you see any errors before the above AEVAL(0) error.
Also this creates a log file with the same name as the exe file ...
by nageswaragunupudi
Thu Mar 06, 2025 3:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FwMaria and oCn:BackUp
Replies: 7
Views: 1401

Re: Problem with FwMaria and oCn:BackUp

That indicates that for one or more of the tables in that database, the result of the query:
aCols := ::Execute( "SHOW FULL COLUMNS FROM " + cTable )
is not return an array but nil or other value.
I need to find that table and see what to do.
Though this is a rare case, we have to fix this in our ...
by nageswaragunupudi
Thu Mar 06, 2025 12:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with FwMaria and oCn:BackUp
Replies: 7
Views: 1401

Re: Problem with FwMaria and oCn:BackUp

oCn:BackUp(cTable, cDestina )
Are you trying to backup single table "ctable" from currentDB() ?
If so, please try

Code: Select all | Expand

oCn:Backup( { cTable }, cDest )
and let us know if it works.
by nageswaragunupudi
Wed Feb 26, 2025 1:41 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Rectangle
Replies: 4
Views: 3602

Re: Rectangle

function TestBox()

local oWnd
local aRect := { 60,100,300,400 }
local nBrdThick := 2
local nBrdColor := CLR_HRED
local nRectFill := CLR_YELLOW

DEFINE WINDOW oWnd SIZE 600, 500 PIXEL

oWnd:bPainted := { || FW_Box( oWnd, aRect, { nBrdColor, nBrdThick }, nRectFill ) }

ACTIVATE WINDOW oWnd ...
by nageswaragunupudi
Tue Feb 25, 2025 1:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 18
Views: 8210

Re: Incorrect Font Display

Please download FWH2501 and try now please.
by nageswaragunupudi
Tue Feb 25, 2025 10:58 am
Forum: FiveWin para Harbour/xHarbour
Topic: Incompatibilidad tDolphin - IA - MySQl
Replies: 7
Views: 7415

Re: Incompatibilidad tDolphin - IA - MySQl

If we want more than one SQL statement to work in a single Execution, we need to set MYSQL_OPTION_MULTI_STATEMENTS_ON or OFF.
Dolphin does not do it on its own.

FW MariaDB sets this while connecting to the server.
by nageswaragunupudi
Tue Feb 25, 2025 10:43 am
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 25.01
Replies: 21
Views: 24042

Re: Nuevo FWH 25.01


Good morning beloved master, I did not see any reference to the solution to the problem created in FWH2409 in reference to the accentuation problem using: HB_SETCODEPAGE( "PT850" ). Thank you.

Buenos días querido maestro, no vi ninguna referencia a la solución al problema creado en FWH2409 en ...
by nageswaragunupudi
Tue Feb 25, 2025 10:40 am
Forum: FiveWin para Harbour/xHarbour
Topic: El Sr. Rao no se encuentra bien y oremos todos por su pronta recuperación.
Replies: 16
Views: 2951

Re: El Sr. Rao no se encuentra bien y oremos todos por su pronta recuperación.

I thank every one of you for your kindness and best wishes.
Hope to be back with you all soon.
by nageswaragunupudi
Tue Feb 25, 2025 10:33 am
Forum: FiveWin for Harbour/xHarbour
Topic: Friends Let us all pray for Mr Nageswarao Gunupudi
Replies: 32
Views: 18695

Re: Friends Let us all pray for Mr Nageswarao Gunupudi

I thank every one of you for your kindness and best wishes.
Hope to be back with you all soon.
by nageswaragunupudi
Tue Feb 25, 2025 10:23 am
Forum: FiveWin para Harbour/xHarbour
Topic: QR en portapapeles
Replies: 19
Views: 39341

Re: QR en portapapeles

Can you please try this and let us know if this works?
function CopyQR()

local hBmp, cText

cText := "FiveTech Software"

hBmp := FW_MakeYourBitmap( 200, 200, ;
{ |hDC,w,h| FW_SayBarCode( hDC, cText, {0,0,200,200}, "QR", ;
0, CLR_WHITE, nil, .t. , nil, nil ) }, CLR_WHITE )

if OpenClipBoard ...
by nageswaragunupudi
Sat Feb 22, 2025 9:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: adjust zoom in xBrowse
Replies: 10
Views: 9391

Re: adjust zoom in xBrowse

First, please try pressing Ctrl+ and Ctrl- keys and see the changes. Are you looking for effect similar to this? or something else?

Press Controll key and + of - on the numeric keypad
by nageswaragunupudi
Fri Feb 07, 2025 5:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Incorrect Font Display
Replies: 18
Views: 8210

Re: Incorrect Font Display

Dear Mr. Surasak

Can you please provide me your email address?
Or please write to my email
nageswaragunupudi[at]gmail[dot]com
by nageswaragunupudi
Tue Feb 04, 2025 11:21 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Imagen en ToolTip
Replies: 4
Views: 1055

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 ...
by nageswaragunupudi
Tue Feb 04, 2025 9:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 24.09
Replies: 97
Views: 19504

Re: New FWH 24.09

Please wait for the next release.