Search found 56 matches

by yury
Mon Aug 19, 2013 6:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Like clipper readvar()
Replies: 15
Views: 2980

Re: Like clipper readvar()

Wanderson so that the object tget contains the "name" of the edited variable is necessary to pass the name of this variable for the fourth parameter GetNew currently (as my version of FW) class tget sends this null parameter, see the class tget (GetNew (20,20, bSetGet, cPict)) in the examp...
by yury
Thu Aug 08, 2013 2:43 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xHB 1.1.0 & BCC 5.5.1
Replies: 1
Views: 453

xHB 1.1.0 & BCC 5.5.1

Hi everyone

Currently I use FW 8.01 - xHb 1.1.0 Simplex XHB - BCC 5.5.1

I would like to know which version of FW I can compile with this version of xHB and BCC?

I am evaluating upgrading the FW, but depend on some considerations about the version of xHB

Thanks in advance
by yury
Wed Jan 30, 2013 2:12 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Dialog Title Limit ?
Replies: 1
Views: 459

Dialog Title Limit ?

Hi dialog title have some limit of characters ? a string with 115 characters or more causes a app crash please, execute the code below and put 88 or less in the "Add in title:" ; the dialog will be showed if put 89 or more, the app crash occurs #include "Fivewin.ch" Function Test...
by yury
Sat Jul 24, 2010 2:02 pm
Forum: FiveWin para Harbour/xHarbour
Topic: set filter muy lento con muchos registros
Replies: 8
Views: 1108

Re: set filter muy lento con muchos registros

veja na pasta samples:

..\samples\gallery\onemany\onemany.prg
by yury
Thu Jul 22, 2010 9:11 pm
Forum: FiveWin para Harbour/xHarbour
Topic: set filter muy lento con muchos registros
Replies: 8
Views: 1108

Re: set filter muy lento con muchos registros

olá,

veja o método :SetFilter() da classe Listbox (WBrowse)

ele filtra os registros no Listbox baseado em índices existentes
by yury
Mon Jul 19, 2010 7:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: TMail Error
Replies: 0
Views: 252

TMail Error

Hi everyone, Tmail class is presenting an error: 'Could not find object' This error occurs when Microsoft Outlook is set as default mail handler If you set Outlook Express as the default handler error no longer occurs The problem is that users want to continue using Microsoft Outlook as the default ...
by yury
Sat Jul 17, 2010 2:04 pm
Forum: FiveWin para Harbour/xHarbour
Topic: TMail Class Error
Replies: 0
Views: 258

TMail Class Error

Hi everyone, Tmail class is presenting an error: 'Could not find object' This error occurs when Microsoft Outlook is set as default mail handler If you set Outlook Express as the default handler error no longer occurs The problem is that users want to continue using Microsoft Outlook as the default ...
by yury
Fri Jun 26, 2009 5:56 pm
Forum: FiveWin para Harbour/xHarbour
Topic: No apaga con programa que tiene TIMER
Replies: 6
Views: 775

Re: No apaga con programa que tiene TIMER

elimine o VALID da window...

Code: Select all

ACTIVATE WINDOW oWnd ON INIT (Muestra(),TimerOn(oWnd),oWnd:Hide()) // VALID lSalir
 
by yury
Thu Jun 25, 2009 2:23 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Erro GPF em TPrinter()
Replies: 0
Views: 296

Erro GPF em TPrinter()

olá, esta me ocorrendo um erro de GPF na classe TPrinter, conforme log abaixo, porém não são em todas as situações, algumas vezes ocorre o erro outras vezes não: ---------------------------------------------------------------------------                 Executavel: 24/06/2009 - 18:14:37 - 8.88 Mb   ...
by yury
Thu Feb 19, 2009 5:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Thread on FWH
Replies: 6
Views: 1073

Re: Thread on FWH

Hello Enrico, I am trying to use a timer (see code in the top of the post), but when the SQL query is being executed the main thread stays busy, and turn off the timer, only turn on when the SQL query finish (because the same thread is used for SQL query and for the timer) In this case would be nece...
by yury
Thu Feb 19, 2009 2:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Thread on FWH
Replies: 6
Views: 1073

Re: Thread on FWH

Hello Mr.Antonio,

In time I am already make this way (with a static message), but what I
wanted was a progress bar refreshed by action timer , but it is only possible
with a mult-thread support, what isn't yet avaliable

anyway, many thanks for your help and attention

regards
by yury
Mon Feb 16, 2009 1:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Thread on FWH
Replies: 6
Views: 1073

Thread on FWH

Hello Mr.Antonio, In this topic: http://forums.fivetechsupport.com/viewtopic.php?f=3&t=10439 I read is not possible use mult-thread in FWH, but you ask for what need this... Please, see the code below: //------------------------------------------------------------------------------ Function Test...
by yury
Fri Oct 10, 2008 8:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to change a bitmap in message bar in runtime ?
Replies: 2
Views: 504

hello Mr.Ramesh,

try this:

Code: Select all

oMsgBarItem:hBitmap1 = LoadBitmap( GetResources(), cNewResorce )
oMsgBarItem:Paint()
where oMsgBarItem is the TMsgItem component and cNewResource the name of new resource

regards
by yury
Fri Oct 10, 2008 7:18 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tsmtp-class
Replies: 6
Views: 1733

hello Mr.Gilbert, try with this code in Method New: METHOD New( cIPServer, nPort, lAuth, cUser, cPassword ) CLASS TSmtp Local cIPAlpha:=cIPServer Default nPort := 25, ; lAuth := .F., ; cUser := "", ; cPassword := "" If Empty( cIPServer ) cIPServer := "0.0.0.0" Endif ::l...
by yury
Thu Oct 09, 2008 9:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using Say to draw
Replies: 4
Views: 1354

hello Mr.Reinaldo, I dont have the coredll.dll , so I can´t make a 100 % test... (I rem the call of the function MoveToEx) I add this on your code: oSig:lWantClick = .T. before the activate the dialog, and the program draws a line, when I move the mouse, but not in the center of dialog (maybe becaus...