Search found 105 matches

by Greg Gammon
Tue Aug 21, 2007 8:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WindowsDBU
Replies: 4
Views: 824

WindowsDBU

Can anyone recommend a good Windows DB Utility? Ive used the WDBU demo from OZ software and like it....have tried to purchase but can get no response from them (anyone know if there is a problem there?).
by Greg Gammon
Sat Aug 18, 2007 9:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Edit Combobox
Replies: 1
Views: 473

Eureka! disregard

Nevermind....jumped the gun again....remembered ocbx:modify()
by Greg Gammon
Sat Aug 18, 2007 9:44 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Edit Combobox
Replies: 1
Views: 473

Edit Combobox

I need to use a dropdown combobox and be able to double-click for user to enter a value when needed. Can this be done? (I remember doing this somehow with oCbx:varget() but can't remember how it was implemented...old code has vanished...ouch!). Is there a way to make a Listbox behave like a dropdown...
by Greg Gammon
Sat Aug 04, 2007 8:21 pm
Forum: FiveWin for Harbour/xHarbour
Topic: compiling multiple source files
Replies: 1
Views: 476

compiling multiple source files

Ok...rookie question....its been so long since Ive needed to do this....
I have my source code in one large PRG file...I want to break into multiple PRG modules. How do I compile (harbour) using multiple PRG files?

thanx
by Greg Gammon
Sat Jul 28, 2007 1:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: Printing Problems in Vista
Replies: 10
Views: 1868

Well, as it turns out, my problem was a hardware issue on this one particular machine. Ive got two other new machines with Vista that I installed today and have no problem with them, so problem solved. Thanks for all the input!
by Greg Gammon
Fri Jul 27, 2007 12:59 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Printing Problems in Vista
Replies: 10
Views: 1868

Antonio, Yes, Prev32.dll is there. Im beginning to think this might be caused by some data corruption problem. I have one print form that works correctly (previews and prints), but another that does an endless loop. But then my reports will preview and NOT print. Its maddening right now. Any other i...
by Greg Gammon
Thu Jul 26, 2007 8:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Printing Problems in Vista
Replies: 10
Views: 1868

Printing Problems in Vista

Sorry if this has been addressed...scanned the directory but couldn't find anything. Am running FWH and Harbour compiler. Programs are running fine on Win95, Win98, Win2000/NT, XP. Just installed a Vista machine and program works fine except printing. Preview will not work, and when going direct to ...
by Greg Gammon
Tue Aug 01, 2006 1:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to set printer default paper(New paper)
Replies: 5
Views: 1267

I had little luck myself with printer definitions....I have one form that must print on Legal Size (US) and the defines never worked.

I ended up hard-coding the paper size:

prnSetSize( 2159, 3556 ) // Legal Size

Works perfectly.

Greg
by Greg Gammon
Thu Jul 20, 2006 5:07 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to Link?
Replies: 3
Views: 1062

Its been awhile since ive worked with very large code programs. Right now I have all of my code in one .prg file. To make it easier to work on, I want to move my code into multiple .prg files (or other files with functions). I can't remember what method to use to make all the files compile and link....
by Greg Gammon
Mon Jul 10, 2006 3:25 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Starting with FWH
Replies: 11
Views: 3623

Just my 2 cents (don't know the Euro conversion sorry) worth.... It took me some time to figure out the correct installation setup for the buildH .bat file...and I know DOS. For those that have no DOS experience, this can be a daunting task. I found the documentation very vague. As more and more peo...
by Greg Gammon
Thu Jul 06, 2006 9:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Mutually calling DIALOGs
Replies: 10
Views: 2495

Actually i went back and looked at my code and its very similar to what manuramos has said....

ACTION oDlg:end(), lNext := .t.
END DIALOG

IF lNext
nextfunction()
ENDIF


yep...thats what I did too. Its a winner. I used STATIC dialog references on another issue.
G
by Greg Gammon
Thu Jul 06, 2006 9:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Mutually calling DIALOGs
Replies: 10
Views: 2495

I have done something similar with Dialogs that are called from multiple locations. I use STATIC oDlg1, oDlg2 etc and in any given function use oDlg1:end() etc. so that I can close any dialog from inside any function (for those dialogs that must be handled that way).

Hope that helps.
by Greg Gammon
Sat Jul 01, 2006 11:42 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox Filter on Logical Field
Replies: 13
Views: 3402

ahhhh.....I did try ordscope but didn't take into account the exact length for cCustno. Im not sure I exactly grasp the numerical indicator in the ordscope(0,...) I tried using a 1 not sure what I was doing, so any explanation is helpful...the help files I read did not compute...laugh I also did Ord...
by Greg Gammon
Sat Jul 01, 2006 1:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox Filter on Logical Field
Replies: 13
Views: 3402

That is exactly what I did do and it doesn't seem to work. Can't understand why but I'll keep plugging away at it. Thanks again.
G
by Greg Gammon
Fri Jun 30, 2006 6:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Controls in Listbox
Replies: 5
Views: 1349

James...thanks for the code...i'll give it a shot in the next week or so.
I can see need for combobox usage in a listbox as well....im thinking that is quite a bit more complicted?
Greg