Search found 363 matches

by PeterHarmes
Wed Oct 15, 2014 2:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Clear COM port buffer
Replies: 9
Views: 1575

Re: Clear COM port buffer

HI,

I have just created a link to a badge reader and have noticed that when I use EnableCommNotification, it only reads in around 8 characters at a time - This is happening in Enricos demo application. Is there a way to read in more characters in one go (10-20)?

Best regards,

Pete
by PeterHarmes
Fri May 09, 2014 8:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: Electronic Signature Pad
Replies: 5
Views: 980

Re: Electronic Signature Pad

Hi Reinaldo,

We have also used the epad ink pad as well.

http://www.epadlink.com/index.php

Best regards,

Pete
by PeterHarmes
Mon Mar 10, 2014 10:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: How do I replace errsysw.prg
Replies: 7
Views: 1312

Re: How do I replace errsysw.prg

In our errsysw, I still have the hlogo = FWBitMap() line, but have removed other references except the destroyobject line.

Maybe try to remove all references to hlogo to see if the errsysw works.

Best regards,

Pete
by PeterHarmes
Mon Aug 05, 2013 2:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: JPG images in an xBrowse
Replies: 12
Views: 2510

Re: JPG images in an xBrowse

Thanks for the example and it pointed out my glaringly obvious mistake.

Best regards,

Pete
by PeterHarmes
Mon Aug 05, 2013 10:35 am
Forum: FiveWin for Harbour/xHarbour
Topic: JPG images in an xBrowse
Replies: 12
Views: 2510

Re: JPG images in an xBrowse

This seems to work when i'm browsing a table, but if I create an array of filenames and browse the array, I just get an empty column - does it work on arrays?
by PeterHarmes
Mon Aug 05, 2013 9:23 am
Forum: FiveWin for Harbour/xHarbour
Topic: JPG images in an xBrowse
Replies: 12
Views: 2510

Re: JPG images in an xBrowse

Setting the cDatatype works well

Thanks once again
by PeterHarmes
Mon Aug 05, 2013 8:56 am
Forum: FiveWin for Harbour/xHarbour
Topic: JPG images in an xBrowse
Replies: 12
Views: 2510

Re: JPG images in an xBrowse

Uwe,

Looking forward to the update :)

Pete
by PeterHarmes
Mon Aug 05, 2013 8:09 am
Forum: FiveWin for Harbour/xHarbour
Topic: JPG images in an xBrowse
Replies: 12
Views: 2510

Re: JPG images in an xBrowse

Hi Rick/Uwe,

Rick - thanks, I will have a look and see if I can get the browse to work with your suggestion.

Uwe - Yes that is what I want - the first column could be the thumbnail/image, the following columns would be columns from the same row in the table.

Thanks

Pete
by PeterHarmes
Tue Jul 30, 2013 3:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: JPG images in an xBrowse
Replies: 12
Views: 2510

JPG images in an xBrowse

Hi, I have a table containing a column that is populated with the path & filename of a JPG file. Is it possible to have an xBrowse that shows a thumbnail of this image in one column along with additional columns from the table? I think I can remember Uwe creating a tool that could do this, is th...
by PeterHarmes
Thu Nov 15, 2012 2:34 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Open a Folder
Replies: 2
Views: 580

Re: Open a Folder

If you know the name of the window, use this:

SendMessage( FindWindow( 0, cWindowName, WM_CLOSE )

Hope this helps.

Pete
by PeterHarmes
Wed Oct 24, 2012 8:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: TSocket Question
Replies: 3
Views: 842

Re: TSocket Question

Hi,

Anyone have any ideas?

Best regards,

Pete
by PeterHarmes
Thu Oct 04, 2012 11:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: TSocket Question
Replies: 3
Views: 842

TSocket Question

Hi, I'm trying to connect to a windows socket & although my test routine is working, I dont seem to be able to check if i'm connected. I have a public variable called lConnected that is initially set to .F. - this is set to true in bConnect, but when i try to reference it, it always returns .f. ...
by PeterHarmes
Tue Aug 21, 2012 3:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Question
Replies: 4
Views: 891

Re: xBrowse Question

Ok, I'll try that

Thanks for your help

Pete
by PeterHarmes
Tue Aug 21, 2012 3:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Question
Replies: 4
Views: 891

Re: xBrowse Question

Not too sure I know where in my code to put your example.

I have tried putting a calculation routine into bChange which nearly works - as you have to move after you have selected the record for the calculation/aSelected to be updated.

Any ideas where I should put my total update routine?

Pete
by PeterHarmes
Tue Aug 21, 2012 2:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse & SQLRDD
Replies: 55
Views: 14328

Re: xBrowse & SQLRDD

I had to modify xBrowse to work with SQLRDD - I can send you my version if you like. The only limitation I have is when you multi select records, you must be using an index where the key would be unique ( on a transaction number/record number for example) xBrowse seems to work very well with these m...