[development-axapta] Is there a good add-on for resource planning in the project module

2004-08-27 Thread koenplaisier
Hi there, I am working for a service-company, and I am looking for a way to manage and plan our resources in axapta. We send our employees on jobs in the oil-industry, therefore they need to have certain certificates to prove they can do the job. I am looking for a tool which can do some

RE: [development-axapta] Re: How to send a parameter with the clicked() method of a button?

2004-08-27 Thread Morten Aasheim
You can probably try args.object(). Never tried this one myself, but.. ;) Mvh, Morten -Original Message- From: abcdplkm [mailto:[EMAIL PROTECTED] Sent: 27. august 2004 14:38 To: [EMAIL PROTECTED] Subject: [development-axapta] Re: How to send a parameter with the clicked() method of a

[development-axapta] Re: How to send a parameter with the clicked() method of a button?

2004-08-27 Thread abcdplkm
Ok, thanks! I'll try it monday, because it's now weekend for me:) Regards, Michel --- In [EMAIL PROTECTED], "sebastien guicherd" <[EMAIL PROTECTED]> wrote: > Hi Michel > In the 'Args' class, you will find the 'ParmObject' method which should solve your problem. > > Seb > > -Message d'

RE: [development-axapta] Re: How to send a parameter with the clicked() method of a button?

2004-08-27 Thread sebastien guicherd
Hi Michel In the 'Args' class, you will find the 'ParmObject' method which should solve your problem. Seb -Message d'origine- De : abcdplkm [mailto:[EMAIL PROTECTED] Envoyé : vendredi 27 août 2004 14:38 À : [EMAIL PROTECTED] Objet : [development-axapta] Re: How to send a parameter wi

[development-axapta] Re: How to send a parameter with the clicked() method of a button?

2004-08-27 Thread abcdplkm
Hi Morten, Thanks for your answer!! This is the way to go for my problem, but still one question: I have an object which i want to pass in my args(). Which propertie of the Args() class should I use? Thanks again!! Regards, Michel --- In [EMAIL PROTECTED], "Morten Aasheim" <[EMAIL PRO

[development-axapta] How to send parameter with the clicked() method

2004-08-27 Thread Morten Aasheim
Opps.. Its supposed to be:    var = element.args().parm(); .. Morten [Non-text portions of this message have been removed] Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http://grou

RE: [development-axapta] How to send a parameter with the clicked() method of a button?

2004-08-27 Thread Morten Aasheim
One solution is to use the Args class. void clicked() {     Args    args;     ;     args = new Args();     args.caller(element.this());     args.record(Table);     args.parm(element.variableMethod());     new Menufunction(menuItemDisplayStr(NewForm), MenuItemType::Display).run(args);

RE: [development-axapta] Cheque printing

2004-08-27 Thread Matt Benic
Thanks Jason, I tried that, but it still skips. It almost seems as if it's forcing printing to a full size page instead of the size I specified.. Regards, Matt Benic Axapta Developer UTi Sun Couriers Division -Original Message- From: Jason Crook [mailto:[EMAIL PROTECTED] Sent: 27 Au

[development-axapta] How to send a parameter with the clicked() method of a button?

2004-08-27 Thread abcdplkm
Hi, I have 2 forms and when i click on the button of form1 the other form is opened. I have a variable (object) declared on form1 and I want to access this variable on form2. How do I do this? Can I send a parameter with the clicked() method of a button? Maybe another solution? Any help

[development-axapta] Re: InventTrans marking

2004-08-27 Thread jaimesq
Is quite difficult without a long explanation. I'll try to write a brief description. We have correct many of the errors but not all. In general the marking, the dimension and the reservations are not working fine together. When the automatic reservation, the ordered reserved sometimes is

[development-axapta] Re: Web Sites

2004-08-27 Thread abcdplkm
Hi, You should be able to choose a webapp after you selected the "Shared" option. If you don't choose a webapp then the next button is never be enabled. Hope this helps. Regards, Michel --- In [EMAIL PROTECTED], "hvniekerken" <[EMAIL PROTECTED]> wrote: > Make sure you fill in both fields

[development-axapta] How to pass parameters to Web Reports?

2004-08-27 Thread utku tatlidede
Hi, normal reports can be linked to web application without change in axapta. Thats great but the parameter page does not appear in web therefore all the data queried and printed. My question is --> How to pass parameters to Web Reports? Thks...     _

[development-axapta] Re: deleting files after import in X++

2004-08-27 Thread kwc_thydev
Hi, Checkout the WinAPI class, there is some usefull methods regards, Karsten --- In [EMAIL PROTECTED], "jasonm" <[EMAIL PROTECTED]> wrote: > I need some quick help! >  > I am importing data from a file from a network drive , after I have > imported the data I need to move or delete the fil

RE: [development-axapta] how to filter data on forms (date and time fields)...

2004-08-27 Thread Erik Hansen
Hi Janno, In a queryRange you have a possibility to write an argument in the value. QueryBuildRange.value(strfmt('((%1 >= "%2") && (%3 >= "%3"))', fieldStr(, ), systemDateGet(),fieldStr(, ), timeNow())); Best regards Erik Hanse From: jannolii [

RE: [development-axapta] is there any where to check that a dimension value on inventorytrans

2004-08-27 Thread James Flavell
Sorry I mean this is not inventory dimension but normal 'financial' dimension... but maybe you have given me an a idea to explore :) THanks James -Original Message- From: jagjeet singh [mailto:[EMAIL PROTECTED] Sent: 26 August 2004 19:21 To: [EMAIL PROTECTED] Subject: Re: [developmen

RE: [development-axapta] is there any where to check that a dimension value on inventorytrans

2004-08-27 Thread James Flavell
Yes I am aware of this but I dont want to control it by the posting account but your answer has maybe given me an idea where to put the check if I can find where this standard check is made.  I would like the check at picking so I cannot rely on ledger postings. Thanks James   -Original Me

[development-axapta] deleting files after import in X++

2004-08-27 Thread jasonm
I need some quick help! I am importing data from a file from a network drive , after I have imported the data I need to move or delete the file. I think this may require the use of the COM. If someone could help me out it would say me a lot of problems with my customer. Regards Jason

RE: [development-axapta] Cheque printing

2004-08-27 Thread Jason Crook
Hi Matt Yes That's it seems to work better than the Epson drivers ,Where it says Manafacturer set to Generic And then under printers use generic /  text only works great. Hope it sort out the problem ,it should Jason Exordia South Africa From: M