RE: [development-axapta] Create Word document from code

2004-08-27 Thread Harry Nilsen
Thanks, this looks like the answer I was looking for. -Original Message- From: Amund [mailto:[EMAIL PROTECTED] Sent: 26. august 2004 11:41 To: [EMAIL PROTECTED] Subject: Re: [development-axapta] Create Word document from code Hi, you could have a look at Tools-Development

RE: [development-axapta] Cheque printing

2004-08-27 Thread Matt Benic
Hi Jason, Excuse my ignorance, but the text only driver? Do you mean a standard windows driver? I am just using the standard epson fx890 driver.. Regards, Matt Benic Axapta Developer UTi Sun Couriers Division -Original Message- From: Jason Crook [mailto:[EMAIL PROTECTED] Sent: 26

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

2004-08-27 Thread jannolii
Hi! I'm in need of advice. I have a form and i want to filter data by specifying time limit... for example: show rows that are newer than 25.08.2004 12:00:00. But how can i do that when Axapta holds date and time separated (different types). Ok... i can make a query of my own and filter

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:

[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] 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

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:

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(Table, Field), systemDateGet(),fieldStr(Table, Field), timeNow())); Best regards Erik Hanse

[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 file. I

[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... __ Do you

[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 name.

[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

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

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); super(); Table_ds.refresh();

[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

[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

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

[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

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

[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