Search found 110 matches

by sajith
Sat Sep 19, 2009 9:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: Tab Order
Replies: 15
Views: 2483

Re: Tab Order

many thanks for ur reply, TAB order will work as per the order in which the control is defined/created in your PRG. While coding you have to decide and then write the code accordingly. it will be very difficult and time consuming if we need to alter the structure of Design after all coding is finish...
by sajith
Sat Sep 19, 2009 9:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: Tab Order
Replies: 15
Views: 2483

Re: Tab Order

many many thanks for ur support, My pblm is for example : #include "FiveWin.ch"     function Main()              local oDlg, cFirst := Space( 20 ), cLast := Space( 20 )              DEFINE DIALOG oDlg TITLE "Test"            @ 1, 1 GET cLast      @ 2, 1 GET cFirst   @ 4, 1 GET cF...
by sajith
Sat Sep 19, 2009 8:32 am
Forum: FiveWin for Harbour/xHarbour
Topic: Resource Pblm(To Antonio)
Replies: 5
Views: 746

Re: Resource Pblm(To Antonio)

Many thanks for ur support,

Pblm still remain

Regards,
sajith
by sajith
Sat Sep 19, 2009 8:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: Tab Order
Replies: 15
Views: 2483

Tab Order

Hello,can any one help me

How can i Set the tab order of control by code.iam not using Resource for designing .

Regards,
sajith
by sajith
Thu Sep 17, 2009 7:16 am
Forum: FiveWin for Harbour/xHarbour
Topic: Resource Pblm(To Antonio)
Replies: 5
Views: 746

Re: Resource Pblm(To Antonio)

Hai stefan,

I tried it out with your suggestion,But same error occuring


regards Sajith
by sajith
Tue Sep 15, 2009 8:30 am
Forum: FiveWin for Harbour/xHarbour
Topic: Resource Pblm(To Antonio)
Replies: 5
Views: 746

Resource Pblm(To Antonio)

Hello,can some one help me iam designing my Dialog using PellesC Resource Editor and XMate as my FiveWin Editor .After including Resource when i run the XMate iam getting an Error in Out Put Console .it would be really great full if some one help me.Thanks in Advance ERROR:: xHarbour Compiler build ...
by sajith
Mon Sep 14, 2009 7:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem in alligning say in report
Replies: 6
Views: 949

Re: Problem in alligning say in report

Dear sir,Many thanks for ur great Support

i will try it out and send the feedback soon.

Regards,
sajith
by sajith
Sat Sep 12, 2009 5:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem in alligning say in report
Replies: 6
Views: 949

Re: Problem in alligning say in report

Hai James,

thanks for ur valuable replay.It seems to be different(oPrn:nHorzRes and oPrn:nVertRes()) on these systems.Is it possible to set common values for this propertiies




regards Sajith
by sajith
Fri Sep 11, 2009 6:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: Problem in alligning say in report
Replies: 6
Views: 949

Problem in alligning say in report

Hi,can any one help me Iam using say in my report to print some text on the report.The code is ON init(oReport:Say(0,"SALARY",,,oReport:nRow),;             oReport:Say(10,"TRAVELLING ALLOWENCE",,,oReport:nRow+100),oReport:Say(10,"INCOME TAX",,,oReport:nRow+150),;       ...
by sajith
Fri Aug 21, 2009 1:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Grouping Pblm using RecordSet Object
Replies: 14
Views: 2748

Re: Report Grouping Pblm using RecordSet Object

Dear james,Many Many thanks for ur support sorry for troubling u again. Iam doing a Pay Roll S/w .i want to generate a Payslip bill which is in the format given in last post . only the Payslip bill is in that format rest Report r in column format as u said . In Crystal Report it is very easy to make...
by sajith
Fri Aug 21, 2009 7:46 am
Forum: FiveWin for Harbour/xHarbour
Topic: Report Grouping Pblm using RecordSet Object
Replies: 14
Views: 2748

Re: Report Grouping Pblm using RecordSet Object

Dear James,Many Many thanks for Ur Support Grouping Pblm solved.i want my report in the format given below       EmpName:SAJI       Department:BDD        Joining Date:05/09/2009   //Group Header      ---------------------------------------------------------------------------------      Particulars  ...
by sajith
Thu Aug 20, 2009 6:17 am
Forum: FiveWin for Harbour/xHarbour
Topic: Report Grouping Pblm using RecordSet Object
Replies: 14
Views: 2748

Re: Report Grouping Pblm using RecordSet Object

Dear james,ManyMany thanks for ur sample Program and Support

i will try it out and send the feedback.


Regards,
sajith
by sajith
Wed Aug 19, 2009 1:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Grouping Pblm using RecordSet Object
Replies: 14
Views: 2748

Re: Report Grouping Pblm using RecordSet Object

Dear James,many many thanks for ur superb Support Error is traced it is a Run time Error(Record Set Pblm). Next I suggest creating the most simple report possible to show the problem. Make a copy of the current report and remove every line that is not needed. Just make a COLUMN definition with say E...
by sajith
Tue Aug 18, 2009 12:39 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Report Grouping Pblm using RecordSet Object
Replies: 14
Views: 2748

Re: Report Grouping Pblm using RecordSet Object

James,Many Many thanks for ur great support I am still not clear. Do you have multiple records for each empolyee? If not you are going to get a new group for each record. Let me Explane: i have a Form for selecting Report. Form have a combo box to select corresponding Employee.ComboBox has a Provisi...
by sajith
Tue Aug 18, 2009 11:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: Report Grouping Pblm using RecordSet Object
Replies: 14
Views: 2748

Re: Report Grouping Pblm using RecordSet Object

Dear James,many thanks for ur suppot I hope you are not confusing grouping with sorting. Grouping will break the report after each group. i want to do grouping on Empname and Department .prblm is how can i assign column name to the group. In DBF we can give like :: GROUP ON PayRoll->EmpName .but iam...