Re: [development-axapta] Error when try to filter ...

2004-02-23 Thread Jonathan St-Louis
Hi, Maybe isn't this for you, but when I got error where I haven't change anything, must do compilation. You can find it in Administration -- Periodic -- Compile application. It take about one hour, so I hope it'll solve you problem. - Original Message - From: Harish

Re: [development-axapta] moving on data source

2004-02-18 Thread Jonathan St-Louis
Hi, We'll say that the dataSource linked to the grid is BER_Inventaire. Method { boolean HaveNext = true; BER_Inventaire_ds.first(); while(HaveNext) { info(BER_Inventaire.Field); HaveNext = BER_Inventaire_ds.next(); } } The _ds can be use on any dataSource to replace the

Re: [development-axapta] Filtering on a memo field

2004-01-22 Thread Jonathan St-Louis
Hi, what kind of exeption do you have? - Original Message - From: axaptacoder To: [EMAIL PROTECTED] Sent: Thursday, January 22, 2004 10:30 AM Subject: [development-axapta] Filtering on a memo field Hi All, Has anybody ever been able to come up with a

Re: [development-axapta] Changes in classes when no X++ lisence

2004-01-05 Thread Jonathan St-Louis
Hi, you don't need to Export andImport. You can simply copy and paste the class. - Original Message - From: Steeve Gilbert To: [EMAIL PROTECTED] Sent: Monday, January 05, 2004 7:48 AM Subject: RE : [development-axapta] Changes in classes when no X++ lisence

Re: [development-axapta] Changes in classes when no X++ lisence

2004-01-05 Thread Jonathan St-Louis
For the cut and paste, youcan do it only on the method but the classDeclaration method is like the class. - Original Message - From: Steeve Gilbert To: [EMAIL PROTECTED] Sent: Monday, January 05, 2004 7:48 AM Subject: RE : [development-axapta] Changes in

Re: [development-axapta] datetime conversation..

2004-01-02 Thread Jonathan St-Louis
I don't know what is checked by the SQL Server Query Analyser but so it maybe a stupid answer but had you check your date format in SQL?? It can be because the date isn't the same type in SQL. 2001/09/29 can be read like 2001 september 1929 (or 2029) in SQL. In this case you should set the date

Re: [development-axapta] (forget it) Need help with form's datasource.

2004-01-02 Thread Jonathan St-Louis
I decide to put the description in another grid so I don't need linking anymore. It's not as user friendly as I wanted it to be, but it do the job. Thanks anyways! Yahoo! Groups Sponsor ADVERTISEMENT click here Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

Re: [development-axapta] The old label problem

2004-01-02 Thread Jonathan St-Louis
Thanks a lot! Your solution work very well. - Original Message - From: Sergey Siroklin To: [EMAIL PROTECTED] Sent: Thursday, October 02, 2003 12:17 PM Subject: RE: [development-axapta] The old label problem Del *ali files and restart Axapta -Original Message- From: johnn_16

Re: [development-axapta] Error During Synchronize

2004-01-02 Thread Jonathan St-Louis
Hi, I can't tell you exactly what's your problem, but I got something like that too. But It was on another XsomethingX table during synchronize. My error msg said that BER_CodeBarre(a table I created) couldn't be created because it already exist. So, I deleted the table in SQL. After that, the

Re: [development-axapta] Interform communication

2004-01-02 Thread Jonathan St-Louis
I'm not sure but I think you can use the args.caller().AMethod in form B to use the method on form A. You must set the caller parameter to this before calling the form B. After that, you can create a method to set your variable on form A like: void Set_AValue(str _Value) { FormALocalValue =

Re: [development-axapta] Color code

2004-01-02 Thread Jonathan St-Louis
Thanks, it work well. - Original Message - From: Lars Holm (LHO.DK) To: [EMAIL PROTECTED] Sent: Friday, October 10, 2003 12:05 PM Subject: SV: [development-axapta] Color code Use the winapi::rgb2int() instead. There you can specify red, green and blue. Regards, Lars

Re: [development-axapta] Re: SetFocus on grid

2004-01-02 Thread Jonathan St-Louis
It had be a good solution but I found something else with a global variable. I think that your solution had be better but I don't have time to change. Thanks a lot anyway! - Original Message - From: Thomas Vogt Poulsen To: [EMAIL PROTECTED] Sent: Friday, October 17, 2003 4:36 AM

Re: [development-axapta] Problem with Exel import

2004-01-02 Thread Jonathan St-Louis
Thanks, we should install SP2 today so it'll be solve! - Original Message - From: Harshawardhan Deshpande To: [EMAIL PROTECTED] Sent: Sunday, October 19, 2003 4:19 AM Subject: Re: [development-axapta] Problem with Exel import hi as mentioned by someone else, this is fixed in SP 2.0

Re: [development-axapta] How to know the selected Language.

2004-01-02 Thread Jonathan St-Louis
Thanks! - Original Message - From: Joannick Bacon To: [EMAIL PROTECTED] Sent: Friday, October 24, 2003 1:41 PM Subject: RE : [development-axapta] How to know the selected Language. Infolog.language() Bacon Joannick Stagiaire

Re: [development-axapta] Problem with Exel import again

2004-01-02 Thread Jonathan St-Louis
Thanks, but it didn't solve my problem. I always got the same error. But the first problem appear someday. But usualy it worked. Now, even with SP2 installed it didn't work. Can it be a garbage data? Like when the fields in a form are displayed incorrectly and you must delete something in

Re: [development-axapta] Problem with Exel import again

2004-01-02 Thread Jonathan St-Louis
-Original Message- From: Jonathan St-Louis [mailto:[EMAIL PROTECTED] Sent: Tuesday, 28 October 2003 2:22 a.m. To: [EMAIL PROTECTED] Subject: Re: [development-axapta] Problem with Exel import again Thanks, but it didn't solve my problem. I always got the same error. But the first problem appear

Re: [development-axapta] Get next NumberSequence by code.

2004-01-02 Thread Jonathan St-Louis
No, that's not a joke. I already tried that but I always got that error : Incorrect call of number sequence when the numberSeq.num() is executed. That's why I asked if it's possible or not. Do you know why I always got that error? - Original Message - From: Andrae, Tobias To:

Re: [development-axapta] Get next NumberSequence by code.

2004-01-02 Thread Jonathan St-Louis
Hi, finaly it work. It's was probably a garbage data. Because I just close Axapta and reopen it and now it work. Stupid isn't it! - Original Message - From: Jonathan St-Louis To: [EMAIL PROTECTED] Sent: Wednesday, October 29, 2003 1:14 PM Subject: Re: [development-axapta] Get next

Re: [development-axapta] Problem with args's class

2004-01-02 Thread Jonathan St-Louis
Both of your explaination helped me to found a solution to my problem. The only thing that was missing is because I wanted to use that value in the the form called. It's because I didn't think that the class was created in the report. Stupid error from me. But I wasn't sure if how work classes

Re: [development-axapta] Comparison of Producdion and Test

2004-01-02 Thread Jonathan St-Louis
Yes, you just have to choose the report, class or form you want to compare. Right-click, go in the Add-in and click on Compare. You'll have to choose the level you want to compare (in your case I think you'll choose USR and SYS) and you should see your modification in another color. But dont

Re: [development-axapta] Refresh grid without saving the datasource line

2004-01-02 Thread Jonathan St-Louis
Thanks Steeve! It solved my problem very well and I saved a lot of coding! - Original Message - From: Steeve Gilbert To: [EMAIL PROTECTED] Sent: Monday, November 10, 2003 9:55 AM Subject: RE : [development-axapta] Refresh grid without saving the datasource line I've had a similar

Re: [development-axapta] enum2str() .. language labels

2004-01-02 Thread Jonathan St-Louis
Hi, if you use label file and that you have set the enum text value with your label number, I think that you can use the following line. String = element.design().lookupLabel(literalStr(@USR105 , en-us)); Hope it'll help. - Original Message - From: itsjanzu To: [EMAIL PROTECTED] Sent: