Search found 43 matches

by brewster
Thu Feb 26, 2015 7:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Treport row titles
Replies: 4
Views: 715

Re: Treport row titles

Enrico, Appreciate your reply. I think the " Totals..." that appear at the report row beginning happens automatically when using the TOTAL clause of a column. I attach the program where it is used. Bruce USE (cPath_seg + cFil ) alias VP NEW cOurAlias := alias() dBeg := what_beg_date() dEnd...
by brewster
Thu Feb 26, 2015 5:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Treport row titles
Replies: 4
Views: 715

Treport row titles

When displaying a Treport summary, I would like to turn off the automatically displayed "Totals..." as shown and replace them with row titles. Is it possible ? If so, what is the syntax ? Thanks, Bruce FWH 14.11 Harbour 3.2.0dev ( r1406271520 ) BCC582   Current Cost Total.... 253.46 Total....
by brewster
Tue Dec 09, 2014 2:52 pm
Forum: FiveWin for Harbour/xHarbour
Topic: dbcombo blank
Replies: 5
Views: 1221

Re: dbcombo blank

James, Appreciate the reply. Hopefully, I have used "code tags" properly below. ( learning ! ) Yes, Tcomp, Tdesc, etc. are all database objects. An actual example of how I set them :    Local cDesc1      // desc vars    local oDBC4, oTdesc     // for desc list     SELECT G  //TD     use (c...
by brewster
Tue Dec 09, 2014 7:42 am
Forum: FiveWin for Harbour/xHarbour
Topic: dbcombo blank
Replies: 5
Views: 1221

dbcombo blank

I have been using Dbcombos without problem in an existing program unchanged for 2 years. Recently I recompiled with my new FWH 14.08 from FWH 6.12 Afterwards, I noticed that the last 2 dbcombos in the edit module are displaying blank values while all the rest are displaying their proper .dbf fields,...
by brewster
Wed Oct 29, 2014 5:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse ADO
Replies: 3
Views: 785

Re: Xbrowse ADO

Mr. Nages, The FW_DateToADO proved to be the solution. Mr. Rick Appreciate your thoughts. Your " ADO-related stuffs " article is what "broke the ice " for me to try ADO. Much learned and much yet to be learned. Many thanks to all, Bruce S
by brewster
Tue Oct 28, 2014 6:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse ADO
Replies: 3
Views: 785

Xbrowse ADO

Currently I am using a simple calendar that when double clicking on a day, I would like it to open an Xbrowse and reveal messages for that day. I am passing the selected day to my Xbrowse RecDate(cal_dte) function but am unable to get oRs:find() to recognize the passed var (dCal_dte). As the excerpt...
by brewster
Fri Oct 10, 2014 12:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse ADO
Replies: 4
Views: 991

Re: Xbrowse ADO

Mr anserkk,

Thank you for your reply.

That has solved my problem.
------

Similar to an electrical circuit with no grounding, now I make the connection.

Thanks to all,
Bruce S.
by brewster
Fri Oct 10, 2014 11:01 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse ADO
Replies: 4
Views: 991

Re: Xbrowse ADO

If I keep oRs & oCn open any operation on the Xbrowse crashes it. What is the proper way to implement ADO_DBF() inside this menu setup ? I have tried replacing oWnd with oDlg , don't know if that's compatible, unless I made a typo, it didn't work. Or, should I get it all inside a define dialog. ...
by brewster
Fri Oct 10, 2014 6:00 am
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse ADO
Replies: 4
Views: 991

Xbrowse ADO

I am trying to become familiar with the operation of ADO in various settings. I downloaded the working function I call below ADO_DBF() from a thread on this forum. When I compile ADO_DBF() by itself, all menus, etc. work fine. But when I bring ADO_DBF() in as a short version of a menuing c:\fwh\samp...
by brewster
Sun Jan 27, 2013 5:50 pm
Forum: FiveWin for CA-Clipper
Topic: progress bar
Replies: 2
Views: 4246

Re: progress bar

Euclides,

Thank you, I will pursue

Bruce
by brewster
Fri Jan 25, 2013 2:02 pm
Forum: FiveWin for CA-Clipper
Topic: progress bar
Replies: 2
Views: 4246

progress bar

Hi, Currently I am building a .dbf of filenames from a Windows folder and its subfolders. I wish to have a progress bar to display "while" the .dbf is being populated. I have inserted a progress bar from the testmex.prg sample into my code. Problem is the progress bar dialog is only displa...
by brewster
Fri Jan 25, 2013 1:18 pm
Forum: FiveWin for CA-Clipper
Topic: dialog dbcombo looping
Replies: 3
Views: 3586

Re: dialog dbcombo looping

James,
Appreciate your comments on my threads circa Jan 5/13.
Any input helps this work in progress.

I use the "traps for invalid data" because an empty selection always seems to come along with a combobox, which I don't want.

Bruce S.
by brewster
Sun Dec 16, 2012 7:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: listbox recno() display
Replies: 7
Views: 1219

Re: listbox recno() display

Marco / Enrico , Thanks for your tips/advice. I got it working. One final question. Within the dialog I'm using for this listbox, I have - Search, OK, and Cancel buttons. When returning from the search function(), I have to click on the data portion of the listbox to get its "focus" back t...
by brewster
Sun Dec 16, 2012 2:57 pm
Forum: FiveWin for Harbour/xHarbour
Topic: listbox recno() display
Replies: 7
Views: 1219

Re: listbox recno() display

Enrico, Thanks for your reply. I need a little bit more. So I try : local nRecno local bSkip use TMD alias TM //database oTm not using database statement, just the alias @ 1, 1 LISTBOX oLbx ; FIELDS TM->Shp_dte, TM->org, TM->DrpA, TM->DrpB ,; TM->DrpC, TM->DrpD, TM->Drvr, TM->Notes ; HEADERS "S...
by brewster
Fri Dec 14, 2012 8:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: listbox recno() display
Replies: 7
Views: 1219

listbox recno() display

Hello, I am trying to implement a recno() indicator for the listbox code below. By moving the row selection up or down it would display the related .dbf recno() in the dialog. I gather some sort of bSkip mechanism is required. I do not know the proper coding / syntax to accomplish the task. @ 1, 1 L...