Re: [development-axapta] operation from combination of enum

2005-03-17 Thread Hans-Walter Bous
Hi, you can do something like this: switch (enumA) { case(enumA::TypeA) : switch (enumB) { case(enumB::TypeA) : do something; break; } } John daniellim_yh [EMAIL PROTECTED] wrote: hi all, i have 2 enum type, 4 elements each, i wonder wat is the best way for me to do like this in

AW: [development-axapta] operation from combination of enum

2005-03-17 Thread jesper.joergensen
Hi You can loop over an enum like this static void EnumTest(Args _args) { SysDictenum dictEnum; Counter counter; ; dictEnum = new SysDictEnum(EnumNum(ABC)); for (counter = 0; counter dictEnum.values(); counter++) { print dictEnum.index2Name(counter); } pause; }

[development-axapta] Delete from webgrid

2005-03-17 Thread jesmondus
Hi, I'm trying to use the delete functionality that exists on a WebGrid (Enterprise Portal). So I have only implemented the ShowDeleteButton on the Webgrid, and also the functionality to select the record. However when one tries to delete the record I'm getting the following error:

[development-axapta] Making my introduction

2005-03-17 Thread Brandon George
Hello Everyone! My name is Brandon George, and I am a .Net Software Engineer out of LaGrange, GA., USA! Anyway, I found this dev group, because my company is real close in our new project. We are about to implement Axapta 3.0 + Enterprise Portal Server as well. We are a Medium sized

[development-axapta] Axapta scale interface

2005-03-17 Thread Howard Black
Hi, I am new to X++ , Is there any object module in Axapta that I can used to develop an interface between Axapta and an industrial scale. Thanks Howard Send instant messages to your online friends http://uk.messenger.yahoo.com [Non-text portions of this message have been

[development-axapta] Re: (Axapta development) how export table in file .txt

2005-03-17 Thread erpdesert
Hello there, There is an interesting article on how to create a universal job for exporting table data on http://axapta-lessons-learned.blogspot.com/ erpdesert --- In development-axapta@yahoogroups.com, jaiver avila [EMAIL PROTECTED] wrote: I am interesed in the code for export

RE: [development-axapta] Making my introduction

2005-03-17 Thread Zillmer, Ryan
Hello Brandon...glad to see another American around! I'm new to Axapta, as well. I was just hired to train and become this company's Axapta guru. I come from a background of using Visual Basic and other languages to modify and add on to old and poorly designed ERP systems. So far I'm really

Re: AW: [development-axapta] operation from combination of enum

2005-03-17 Thread daniel lim
hi jesper, thx for ur suggestion, ur solutions is most useful for me among all.i will only need 2 for loop for 2 enum with 4 elements each. thx very much. rgds, daniel [EMAIL PROTECTED] wrote: Hi You can loop over an enum like this static void EnumTest(Args _args) { SysDictenum

[development-axapta] dynamic operator

2005-03-17 Thread daniellim_yh
hi all, i need to do somoething like this and wonder it can be done in axapta: void deltbl(anytype parm_operator, str _value) { delete_from TblA where TblA.FieldA parm_operator _value; //i need to pass in dynamic operator, for e.g like, ==, // != as parm_operator } can it be done in

RE : [development-axapta] Making my introduction

2005-03-17 Thread Steeve Gilbert
Welcome aboard Brandon! I don't know any book that talks about Axapta, the only thing that come to my mind is the Dev Guide in the help menu. You can take a look at those sites : http://www.axapta-lessons-learned.blogspot.com/ http://technet.navision.com/usered/Axaptaindex.htm

[development-axapta] dynamic operator

2005-03-17 Thread daniellim_yh
hi all, i need to do somoething like this and wonder it can be done in axapta: void deltbl(anytype parm_operator, str _value) { delete_from TblA where TblA.FieldA parm_operator _value; //i need to pass in dynamic operator, for e.g like, ==, // != as parm_operator } can it be done in