[development-axapta] Info() in RunBaseBatch

2004-08-06 Thread Kaj Birk Olesen
Hi I have created a class called X which inherit RunBaseBatch. I am setting the class X to run in the batch-list every 10 minute. In certain situations I want the user to have some pieces of information to pop up on the screen and for this purpose I use the command info(). The info() command

AW: [development-axapta] Info() in RunBaseBatch

2004-08-06 Thread Theissen, Annette
Hi Kaj, the information will appear in the infolog of the Axapta that executes the batch jobs, once the batch execution is stopped! I know this doesn't give you a solution, but at least it helps you to know, where it 'has disappeared to'. Baye, Annette Mit freundlichen Grüßen / Best rega

[development-axapta] how print file from code?

2004-08-06 Thread mat_bin
Hi, I would print a file from a class, how can I do this? Best regards. Mathieu Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/development-axapta/  To unsubscribe from this group, send an

AW: [development-axapta] how print file from code?

2004-08-06 Thread Theissen, Annette
Hi Mathieu, you might try something like this: void PrintFile(str x_strFileName) {     #Macrolib.WinAPI     ;     try     {     WinAPI::shellExecute(x_strFileName,'','',#ShellExePrint);     }     catch (exception::DDEerror)     {     warning("Printing " + x_strFileName + " not succe

AW: [development-axapta] how print file from code?

2004-08-06 Thread lho
What kind of file are we talking about here? -Ursprüngliche Nachricht- Von: mat_bin [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 6. August 2004 11:48 An: [EMAIL PROTECTED] Betreff: [development-axapta] how print file from code? Hi, I would print a file from a class, how can I do t

SV: [development-axapta] how print file from code?

2004-08-06 Thread Jan Inge Ellingsen
WinAPI::shellExecute(filename,'','',#ShellExePrint); Regards Jan Inge Ellingsen -Opprinnelig melding- Fra: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sendt: 6. august 2004 13:53 Til: [EMAIL PROTECTED] Emne: AW: [development-axapta] how print file from code? What kind of file ar

[development-axapta] QuerryBuildRange: filtering by sum of two fields

2004-08-06 Thread Max Belugin
Hello development-axapta, when I write .addRange(fieldNum(InventTrans, CostAmountPosted)) .value("((InventTrans.CostAmountPosted+InventTrans.CostAmountAdjustment)==0)"); Axapta sends to MSSQL the following ((COSTAMOUNTPOSTED + COSTAMOUNTADJUSTMENT) = 1 = ? ) this is wrong and produces SQ

[development-axapta] Webdeploy problem

2004-08-06 Thread petdba
Experiencing problem with webdeploy interface. It will install the base 3.0 client, but an error when loading sp2. The error reads "Failed to connect to Damgaard Axapta downlaod site a \\lgarch" The following are the parameters for the activex component: codeBase=""> .cab#version=3,0,0,2" h

[development-axapta] Minimum requirement for coding in Axapta

2004-08-06 Thread maroof
Hello I am new to Axapta. I have a 2-tier installation on a box. I wanted to know the minimum stuff required for Axapta development. Would appreciate if someone could explain in detail. Thanks, Maruf     __ Do you Yahoo!? Yahoo! Mail - 50x more st

Re: SV: [development-axapta] how print file from code?

2004-08-06 Thread mat_bin
thanks for that But can i specify a printer. best regards --- In [EMAIL PROTECTED], "Jan Inge Ellingsen" <[EMAIL PROTECTED]> wrote: > > WinAPI::shellExecute(filename,'','',#ShellExePrint); > > Regards > > Jan Inge Ellingsen > > > > -Opprinnelig melding- > Fra: [EMAIL PROTECTED

Re: [development-axapta] QuerryBuildRange: filtering by sum of two fields

2004-08-06 Thread Max Belugin
Hello Max Belugin, пятница, 6 августа 2004 г., you wrote: MB> .addRange(fieldNum(InventTrans, CostAmountPosted)) MB> MB> .value("((InventTrans.CostAmountPosted+InventTrans.CostAmountAdjustment)==0)"); MB> Axapta sends to MSSQL the following MB> ((COSTAMOUNTPOSTED + COSTAMOUNTADJUSTMENT) = 1 =