Search found 252 matches

by Maurilio Viana
Fri Mar 30, 2007 12:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Bug PICTURE "@R " - URGENTE - Antonio Linares
Replies: 6
Views: 1803

Antonio, I don't tested it but what Eric says is: When you use @R picture and select the text using shift key + right arrow characters from picture mask "mix" with the get value. If you use "@R 99.999-999" picture and fill the get with "12345678" it will be (correctly) ...
by Maurilio Viana
Fri Mar 30, 2007 12:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Creating gets with a For... next
Replies: 4
Views: 994

Re: Creating gets with a For... next

Rafael, try any like this: (...) For i := 1 TO 30 nR, nC GET oGet Var cGet oGet[i] := oGet cGet[i] := cGet nR += 1 Next I think the problem will be most clear if you compile with /p and seek the .ppo generated file... This is a codeblock problem were the program at runtime see only last item (i = 30...
by Maurilio Viana
Fri Mar 30, 2007 11:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: Multiline in TBtnBmp and color in TreeView
Replies: 6
Views: 1543

Multiline in TBtnBmp and color in TreeView

Hi, After many changes in my program I could recompile it with FWH 7.1 and xHB.com 2007/January. Only 2 little things don't work for me: WhatsNew.txt says that now TBtnBmp accept multiline text. I try define the text "Line 1"+CRLF+"Line 2" but it didn't worked... Displayed text i...
by Maurilio Viana
Mon Mar 26, 2007 8:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Time to display tooltip
Replies: 2
Views: 709

>> Yes. See TWindow:nToolTip. It defaults to 900.

Thanks, James!!!

>> you should make this a user settable option

Yes, I think put it in a configuration menu.

Thanks again!
Maurilio
by Maurilio Viana
Mon Mar 26, 2007 7:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Time to display tooltip
Replies: 2
Views: 709

Time to display tooltip

Is possible configure the time that system wait for no movements of mouse to display tooltip?
My intention is reduce this time...

Regards
Maurilio
by Maurilio Viana
Wed Mar 21, 2007 6:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TGet and bChange
Replies: 8
Views: 1817

I changed all code were I used bChange to bPostKey and worked fine.
In all cases were I used bChange worked fine replacing to bPostKey.

Best regards
Maurilio
by Maurilio Viana
Tue Mar 20, 2007 2:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: RPREVIEW and TPRINTER in Windows Vista
Replies: 4
Views: 1497

Michael,

I think it can be related to create/delete temporary files...
Maybe you can test it including a msgalert(time()) before and after create/delete temporary files...

Regards
Maurilio
by Maurilio Viana
Mon Mar 19, 2007 7:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TGet and bChange
Replies: 8
Views: 1817

James, I understood the problem.
I'll try bPostKey instead bChange in all code I have and I'll post here my results.

Regards,
Maurilio
by Maurilio Viana
Mon Mar 19, 2007 5:26 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TGet and bChange
Replies: 8
Views: 1817

In older FW versions bChange was evaluated in wrong place. Then if you ask to show the variable buffer the last key pressed wasn't considered.
I think Antonio fixed it months ago...
If I'm not wrong it was corrected 2006/march.

Regards,
Maurilio
by Maurilio Viana
Thu Mar 15, 2007 11:21 am
Forum: FiveWin para Harbour/xHarbour
Topic: Maurilio Viana
Replies: 1
Views: 569

Re: Maurilio Viana

Olá!

Eu raramente entro no MSN, mas você pode me encontrar no Skype pelo nome mau.viana

[ ]'s
Maurilio
by Maurilio Viana
Tue Mar 13, 2007 1:16 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Can I change the report viewer ?
Replies: 5
Views: 1538

Re: Can I change the report viewer ?

Milan,

An interesting feature we found in Crystal Report were you can navigate in the report page like a browse.
Many months ago I tryed to adapt it to RPreview but without success :-(
If anybody know how...
But I think Otto's idea very good.

Regards
Maurilio
by Maurilio Viana
Tue Mar 06, 2007 11:12 am
Forum: FiveWin for Harbour/xHarbour
Topic: Client / Server
Replies: 5
Views: 2354

Ari, Existem muitas situações em que se corrompe bancos de dados, com o Firebird não é diferente, entretanto é mais seguro que os DBFs (não sei comparar com relação ao MySQL...). No guia de referência do FB, há uma lista de coisas que *podem* corromper o BD, como desligar o servidor no meio de uma t...
by Maurilio Viana
Mon Mar 05, 2007 2:12 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Client / Server
Replies: 5
Views: 2354

My point of view:

I use Firebird for 2 or 3 years with Delphi and Fivewin.
About FW, I used it with a modified FW ODBC class and I never had problem. Since last year I use FW + xHB comercial + SQLRDD and work perfect.

Regards,
Maurilio
by Maurilio Viana
Wed Feb 28, 2007 2:46 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse method not working
Replies: 2
Views: 755

Re: xBrowse method not working

Ehab,

Try call go top on 'on init' clause of activate dialog, like:

Code: Select all

ACTIVATE DIALOG oDlg ON INIT (oBrw:SetSize( 1000, 600 ),BuildButtons( oDlg ),oDlg:Refresh(.t.),   oBrw:GoTop(),;  // <-- HERE
 oBrw:Refresh(.t.))
Regards,
Maurilio
by Maurilio Viana
Fri Feb 23, 2007 12:19 pm
Forum: Utilities / Utilidades
Topic: Setting the focus to any object
Replies: 1
Views: 1627

Setting the focus to any object

Many questions are posted in FW's forums related to focus. When oObj:Setfocus() fail, I use this function that work fine for me for many yeara (FW+Clipper / FW+Harbour / FW+xHarbour): function xSetFocus(oObj) local oTime define timer oTime interval 10 of oObj:oWnd ; action (oObj:SetFocus(), oTime:De...