[Axapta-Knowledge-Village] Radio buttons

2004-12-05 Thread Morris Mendoza
How can i use radio buttons in axapta. More specifically, how can i add labels for each item during design time? Thanks! Yahoo! Groups Sponsor ~-- $4.98 domain names from Yahoo!. Register anything.

[Axapta-Knowledge-Village] Section Printing in Report.

2004-12-05 Thread mbsdeveloper
Dears, I created a display method in the body section to do some calculations, that works fine but actually I don't want the body section to be printed if the value of the function is zero. so can someone tell me how to do it? regards Ahmed Yahoo! Groups

RE: [Axapta-Knowledge-Village] Section Printing in Report.

2004-12-05 Thread Tony Depalo
Title: Message One way of doing this is to have your display method return a str. Then within your display display str yourAnswer() { if(your answer 0) StrFmt('%1',YourAnswer; return ''; } I think there is a property Show Zero that might also work? Tony -Original

RE: [Axapta-Knowledge-Village] Purpose of Axapta Tables

2004-12-05 Thread Hennie Potgieter
If you find this, I would like to see it too. This would be a tremendous help. Hennie -Original Message- From: madtrs [mailto:[EMAIL PROTECTED] Sent: Friday, 03 December 2004 20:38 PM To: [EMAIL PROTECTED] Subject: [Axapta-Knowledge-Village] Purpose of Axapta Tables Hello, Does

[Axapta-Knowledge-Village] Executing Report from a self made form

2004-12-05 Thread anton_tjiptadi
Hi, I want to execute a report from a form which I alrady make. This form form used to cater user creiteria and when they click OK buton, it runs the report. How can I do that ? Should I create a class first then callig the form and then calling the report or.. ? thanks, Anton

RE: [Axapta-Knowledge-Village] Radio buttons

2004-12-05 Thread Peng Qing Hua
Hi, As far as I know, developer cannot directly use radio buttons. We have to create a enum data , and then specify your radio button to this emun. The radio button's label is the emun item's label. Best Regard! Andy. Peng Qing hua -Original Message- From: Morris Mendoza

RE: [Axapta-Knowledge-Village] Section Printing in Report.

2004-12-05 Thread Peng Qing Hua
Hi, ahmed Can you do some like this? If (SomeFiledValue==0) YourSession.visable(false); Best Regard! Andy. Peng Qing hua -Original Message- From: mbsdeveloper [mailto:[EMAIL PROTECTED] Sent: 2004126 13:38 To: [EMAIL PROTECTED] Subject: [Axapta-Knowledge-Village] Section

[Axapta-Knowledge-Village] Add DialogField in report query form

2004-12-05 Thread anton_tjiptadi
Hi all, I'm trying to add dialog field to my report, code is below : public Object dialog() { DialogRunBase dialog = super(); ; dialog.addGroup(Range); dialogTaxInvNo = dialog.addField(typeid (MLR_LedgerJournalTrans),Tax Invoice :,Tax Invoice Number); return dialog; }

RE: [Axapta-Knowledge-Village] Section Printing in Report.

2004-12-05 Thread Ahmed Ibrahim
Tony, Thanks so much but actually I want to prevent the printingof bodysection if the return value of display methos is zero so how can I bypass the printing of bodysection if value is zero?. Thanks in advance. AhmedTony Depalo [EMAIL PROTECTED] wrote: One way of doing this is to have your

RE: [Axapta-Knowledge-Village] Section Printing in Report.

2004-12-05 Thread Ahmed Ibrahim
Tony, Thanks so much but actually I want to prevent the printingof bodysection if the return value of display methos is zero so how can I bypass the printing of bodysection if value is zero?. Thanks in advance. AhmedTony Depalo [EMAIL PROTECTED] wrote: One way of doing this is to have