Search found 9 matches

by ariston.ap
Wed May 31, 2017 11:12 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Tooltip in a combo box?
Replies: 9
Views: 1634

Re: Tooltip in a combo box?

Try this:

Code: Select all

oCbx:cToolTip := {|cTip|cTip:=oCbxToolTip(oCbx)}

//---------------------------------------------------------------------------//
FUNCTION oCbxToolTip(oCbx)
RETURN oCbx:GetText()
//----------------------------------------------------------------------------//
 
by ariston.ap
Tue May 16, 2017 11:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to speed up your MySQL queries 300 times
Replies: 8
Views: 1143

Re: How to speed up your MySQL queries 300 times

This comment from a reader on that post called my attention: "Totally misleading title. It should be named "MySQL for beginners", because this is really database 101 for DBA's. What is less known is that most SQL functions totally ignore indexes and incite a full table scan. Or that a...
by ariston.ap
Fri Sep 16, 2016 12:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: autentication via Finger print or Face
Replies: 19
Views: 6628

Re: autentication via Finger print or Face

This one works with Nitgen SDK, for Hamster finger readers (http://www.nitgen.com.br/produtos/18-fingkey-hamster-dx) Must install the Driver and the SDK. I use this kind of finger reader for a long time a I never had problem with it. cDedo := Hamster_PegaDedo() // Save cDedo in da folder cFname := C...
by ariston.ap
Mon Apr 04, 2016 4:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Lan chat
Replies: 4
Views: 825

Re: Lan chat

How to test the program: • Select a computer to use as server. Create a folder for the program data: I.E: C:\BATEPAPO\DATA; • Shared the folder, allowing read and write, for all users; • At first time you run the batepapo.exe in each computer, you have to select the data folder. Just selec the folde...
by ariston.ap
Sun Apr 03, 2016 6:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Lan chat
Replies: 4
Views: 825

Re: Lan chat

Dispite the long time, I hope it is not too late. Plese download and test the program I am developing for LAN chat, called "batepapo" (chat, in Brazil). If you (or anybody else) improve it, please post the changes. http://www.arsoft-ap.com.br//fd456406745d816a45cae554c788e754/08dc2d813326f...
by ariston.ap
Sun Apr 03, 2016 3:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Meter in tray messages. Is it possible?
Replies: 10
Views: 1416

Re: Meter in tray messages. Is it possible?

Yes, that is excactly how I built the oTray, using testtray.prg from samples.
by ariston.ap
Sat Apr 02, 2016 9:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Meter in tray messages. Is it possible?
Replies: 10
Views: 1416

Re: Meter in tray messages. Is it possible?

It is a very interesting example, but it is not exactly what I am looking for. The icon of my aplication does not show on taskbar, but in the tray only (near the watch). And I need to show the meter in the tray balloon message, with a title, not within the icon. Is it possible? Is there a function t...
by ariston.ap
Sat Apr 02, 2016 5:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Meter in tray messages. Is it possible?
Replies: 10
Views: 1416

Re: Meter in tray messages. Is it possible?

At present I um using the functions below to get what I need, but I would like to have a meter more real. FUNCTION TestMeterTray()     LOCAL nTotal := 20     FOR nPos := 1 TO nTotal         MsgMeterTray(nPos, nTotal, "Enviando clientes...")         SysWait(0.1)     NEXT     MsgMeterTray(nP...
by ariston.ap
Sat Apr 02, 2016 4:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Meter in tray messages. Is it possible?
Replies: 10
Views: 1416

Meter in tray messages. Is it possible?

Hi.

How can I show a meter in a tray icon message? Something like MsgTrayMeter(nTotal, nPercent)? Is it possible?

Thanks.