Search found 105 matches

by Greg Gammon
Mon Sep 10, 2007 1:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Browses???
Replies: 22
Views: 4622

Most appreciated...should have posted that James and I worked it all out...turned out the culprit was in the BCC32.cfg file...missing include paths for FWH...AND....you can't have ANY spaces in the include path string...learned a bit on that one!
Greg
by Greg Gammon
Thu Sep 06, 2007 2:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Browses???
Replies: 22
Views: 4622

Hua....thanks for that info. perfect. James, TSBrowse is exactly what I have been looking for...opens up all the possibilities I want to implement. I have never used 3rd party libraries, so this is new to me. I downloaded the TSBrowse and according to the instructions, I need to generate the librari...
by Greg Gammon
Wed Sep 05, 2007 2:10 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Browses???
Replies: 22
Views: 4622

Sounds like exactly what I need. So how do I implement using TcBrowse? I see it inherits from TWBrowse....but when I try to use the lNoGrayBar, i get a "TWBrowse" error...unless I am not doing it correctly?

oLbx:lnograybar := .t. ??
by Greg Gammon
Wed Sep 05, 2007 1:05 am
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox Colors
Replies: 12
Views: 2479

Rick....one other thing....I have a question floating in a separate post (Multiple Browses) that James is helping me with regarding blanking out the highlight on the selected record. Since I am using color backgrounds on certain rows, when I have a row that is selected but not in the focused browse,...
by Greg Gammon
Wed Sep 05, 2007 1:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox Colors
Replies: 12
Views: 2479

Rick.... Nice! Thanks for sharing that. Exactly what I need! In my particular application (commercial printer), we have a press schedule screen and I need to highlight those jobs requiring press checks, those that have firm due dates, and those that have special priority....while all the info is ava...
by Greg Gammon
Wed Sep 05, 2007 12:53 am
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Browses???
Replies: 22
Views: 4622

James,

I have never delved into modifying the source code for any of the classes. In doing so, do I need to do any other steps before compiling my program? Does the source code itself have to be compiled? Ive never gotten that deep into how the compiling process actually works....
G
by Greg Gammon
Wed Sep 05, 2007 12:52 am
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Browses???
Replies: 22
Views: 4622

James,

I have never delved into modifying the source code for any of the classes. In doing so, do I need to do any other steps before compiling my program? Does the source code itself have to be compiled? Ive never gotten that deep into how the compiling process actually works....
G
by Greg Gammon
Tue Sep 04, 2007 9:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Multiple Browses???
Replies: 22
Views: 4622

James, I tested this method out (bLostFocus....) and I can make this work when the Browse itself has focus...I have four browses in the Dialog, and when the focus goes to the next browse, then the current record pointer in the previous browse highlights again (in gray meaning it is current but not a...
by Greg Gammon
Tue Sep 04, 2007 8:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox Colors
Replies: 12
Views: 2479

Rick,
Just saw this reply post....

So are you successful with having multiple colors on a browse? i.e. one line red, the next blue, the next green etc based on the data?

G
by Greg Gammon
Tue Sep 04, 2007 4:04 pm
Forum: FiveWin for Harbour/xHarbour
Topic: escape key
Replies: 1
Views: 590

escape key

I need a code example of how to detect use of the escape key to close a window/dialog. I either need to be able to disable the escape key, or need to perform an action when escape is pressed (same action as exit key on my dialogs) which will release a logical lock. Thanks in advance (again and again...
by Greg Gammon
Tue Sep 04, 2007 2:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Database Glitch
Replies: 12
Views: 2628

Antonio, I will do that...hope that solves the problem as I have found nothing in the code that could possibly cause that. A few months ago we were seeing this strangeness and found where the workarea was changing (different browses) and then not changing back to the proper browse after an action......
by Greg Gammon
Tue Sep 04, 2007 2:27 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Filter/Scope dilemna
Replies: 5
Views: 1077

Yes, that is essentially what I am doing. The problem with FILTER though is it must evaluate every record of the database so it is much slower than SCOPE...but SCOPE will allow for only one key evaluation...and I need three. What I am contemplating is copying to a temp database based on two keys whi...
by Greg Gammon
Tue Sep 04, 2007 2:12 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Database Glitch
Replies: 12
Views: 2628

Antonio,
19/May/2006 is the version I have. Is there any known problem with this build regarding database? I'll download most recent.
G
by Greg Gammon
Tue Sep 04, 2007 1:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Filter/Scope dilemna
Replies: 5
Views: 1077

Rick,
What does ord.ch accomplish? Is this to allow SET SCOPE?
G
by Greg Gammon
Tue Sep 04, 2007 1:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Filter/Scope dilemna
Replies: 5
Views: 1077

Filter/Scope dilemna

I need some ideas on how to accomplish a multiple filter that will work fast. I have four separate browses in a window with different filters working from the same database ...and the filter will change dynamically based on user input also. SET FILTER TO UPPER(jobdate1->status) != "COMPLETE&quo...