Search found 99 matches

by Lailton
Sun Aug 12, 2012 4:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: What is the best of MySql (lib or class) TMySql, TDolphin
Replies: 92
Views: 16158

Re: What is the best of MySql (lib or class) TMySql, TDolphin

Mosh,

You can edit "setenvh.bat":

Code: Select all

@SET PRG_COMP_PATH=d:\harbour
TDolphin is perfect tool and you can start studying the samples. ( "samples" Folder ).

:)
by Lailton
Mon Aug 06, 2012 3:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Office 2013 ribbon look
Replies: 8
Views: 2130

Re: Office 2013 ribbon look

I think the same :)

The Office 2013 is clean theme, I think that is only change params in Ribbon of Fwh that put the colors. :)
by Lailton
Tue Jul 31, 2012 7:40 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Cerrar ventana de ayuda
Replies: 11
Views: 2762

Re: Cerrar ventana de ayuda

Hola Rodolfo y Jairo, probar asi: #define WM_CLOSE                        0x0010 Function CerrarVentana(cTitle) Local hWnd If(hWnd:=FindWindow(,cTitle))!=0    PostMessage(hWnd,WM_CLOSE) EndIf Return Nil :) Hola Lailton, Fijate que despues me di cuenta que tu sugerencia no cierra realmente la ventana...
by Lailton
Tue Jul 31, 2012 7:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: https POST
Replies: 11
Views: 2241

Re: https POST

:D Nice !
by Lailton
Tue Jul 31, 2012 5:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: https POST
Replies: 11
Views: 2241

Re: https POST

Enrico, Try, it's http more i think that work to https too.: //--------------------------------------------------------------------------------------------------//   #include "FiveWin.ch" //--------------------------------------------------------------------------------------------------//...
by Lailton
Mon Jul 23, 2012 6:47 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Unresolved External [Solved]
Replies: 1
Views: 443

Unresolved External [Solved]

How solve it.

If i call xBrowse( aVar )
Image

:o
by Lailton
Fri Jul 20, 2012 9:24 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Cerrar ventana de ayuda
Replies: 11
Views: 2762

Re: Cerrar ventana de ayuda

More easy:

Code: Select all

If((hWnd:=FindWindow(,"cTitleOfWnd"))!=0,CloseWindow(hWnd),)
Or:

Code: Select all

CerrarVentana("cTitleOfWnd")
Function CerrarVentana(cTitle)
Return If((hWnd:=FindWindow(,cTitle))!=0,CloseWindow(hWnd),)
8)