[development-axapta] Re: Mobile Development for Barcode Scanner on Receiving Items

2009-08-07 Thread Steeve Gilbert
If your scanner can have 100% WiFi connection coverage than I would highly recommend using Terminal Services. That's what we do here. We've created special Ax forms that fit the device. When the user open Terminal Services it automatically opens Ax than it opens his special "Main menu". It's

[development-axapta] Re: How 2 Call StoreProcedure

2009-04-20 Thread Steeve Gilbert
Use connection and statement object. You can find example in the help. --- In development-axapta@yahoogroups.com, "raheel_mcs" wrote: > > Dear All!!! > > Kindly tell me the way to Call Store Procedure in Reports... > > Thanks in advance. >

[development-axapta] Re: Right click options on a form

2009-01-30 Thread Steeve Gilbert
Check method \Classes\SysSetupFormRun\task(). I think every options of the context menu have a different id that is passed as parameter to task(). Atleast, I've been able to disable "Configuration" and "Hide field" menu option with this approach. So I guess you can do the same. Just skip su

[development-axapta] Re: How to prevent other controls to execute validatewrite() method when any change is made on the form.

2008-11-20 Thread Steeve Gilbert
There's an easier way. Button property "SaveRecord". Set that to "No" on all the button that you don't want to automatically save your record. Steeve --- In development-axapta@yahoogroups.com, "syed baber" <[EMAIL PROTECTED]> wrote: > > Thanks Abdul Samad. The problem has been solved now but I

[development-axapta] Re: Calculation error in AX3.0SP3

2008-11-20 Thread Steeve Gilbert
Wow, that's scary. No error for us on AX3 SP3 Kernel Rollup 3. --- In development-axapta@yahoogroups.com, "Stefan" <[EMAIL PROTECTED]> wrote: > > Hi, > > I have the following code fragment: > > real a1,a2,a3; > > > a1=8.0/24.0*3.0; > a2=8.0/24.0*3.0; > > a3

[development-axapta] Re: How do you limit column headings to display on the first page only?

2008-10-23 Thread Steeve Gilbert
I don't where to put the code cause it depends on how your report works, but you could try those methods: // Set header to auto YourSection.noOfHeadingLines(1, AutoMode::Auto); // Force header to be printer now. YourSection.executeColumnHeadings(); // Hide row header You

[development-axapta] Re: Resizing ToolBar

2008-10-08 Thread Steeve Gilbert
Hi, You can bypass pretty much everything by setting those value on your form design: Frame = None WindowResize = Fixed Top = 0 Left = 0. Width/Height = set to fit your PDT screen. That way your form will be on top, in the top left corner. Perfect for PDT. There's also the problem of info/war

[development-axapta] Re: Online payment transaction

2008-09-24 Thread Steeve Gilbert
I haven't work with it yet but we are looking at it. I've heard Ax 2009 provide credit card process but in a limited way. There's also Red Maple (http://www.redmaple.com/) that offer what seems to be a better solution. Steeve --- In development-axapta@yahoogroups.com, "varun" <[EMAIL PROTECTED]

[development-axapta] Re: different results between thin and fat environments

2008-04-22 Thread Steeve Gilbert
You could try delete the file *.aoc in your C:\Documents and Settings\yourusername\Local Settings\Application Data folder. Those are code cache. Make sure to close your application before deleting those. Hope it will do the trick for you. Steeve... --- In development-axapta@yahoogroups.com,

[development-axapta] Re: How to Get range value ....:????????

2008-04-07 Thread Steeve Gilbert
Try this : YourDataSource_ds.query().dataSourceNo(1).rangeField(fieldNum (YourTable, TheField)).value() if you know the field, if not, check out YourDataSource_ds.query().dataSourceNo(1).range* method, you should find method to iterate thru ranges. good luck Steeve... --- In development-axapta

[development-axapta] Re: Fiiling a grid

2008-03-27 Thread Steeve Gilbert
Not really since grid are made to be used with tables. Maybe you could use the "Table" control. Check form tutorial_form_table i think. Steeve... --- In development-axapta@yahoogroups.com, "jquinteroz" <[EMAIL PROTECTED]> wrote: > > Hi!: > > I need to fill a grid in Axapta. > I got some exa

[development-axapta] Re: reading PPT file in Axapta ????

2008-03-12 Thread Steeve Gilbert
Use the COM component PowerPoint (PowerPoint.Application) just like it is used for Excel in Axapta. It's just that the interface (SysPowerPoint...) is not implemented in Axapta. http://msdn2.microsoft.com/en-us/library/aa141357(office.10).aspx --- In development-axapta@yahoogroups.com, "amitsi

[development-axapta] Re: Deleting a label

2008-02-27 Thread Steeve Gilbert
You can delete a label by going to Menu Tools -> Dev tools -> Label - > Search Label. Find your label, select it and use the delete as if you delete a record in a table. Steeve... --- In development-axapta@yahoogroups.com, Malcolm Burtt <[EMAIL PROTECTED]> wrote: > > Hi > > As far as I know y

[development-axapta] Re: Translate from Transac SQL to select in X++

2008-01-24 Thread Steeve Gilbert
One thing for sure si that you cannot do "embedded" (forgot the real term) sql statement. I'm talking about the sql statement between parenthesis. Make a view with that statement and use the view instead. The rest should be ok. Steeve... --- In development-axapta@yahoogroups.com, "jquintero

[development-axapta] Re: Create Document handling Form

2007-12-24 Thread Steeve Gilbert
Hi, Since your new form is open form sales order, it should know which sales order is currently selected. From there, let the user select which txt he needs and when he press "Ok" create a new DocuRef record with the correct Ref* field and and the text selected by the user in "Notes" field.

[development-axapta] Re: reduce Qty in SalesLine abfter InventPickingListRegistrate

2007-12-20 Thread Steeve Gilbert
You can start with that method : \Classes\SalesFormLetter_PickingListJournal\writeJournalLine() it is executed for each line of your picking list when it is posted from SalesEditLine. From there you can update salesLine. Steeve... --- In development-axapta@yahoogroups.com, "gost05021982" <[EM

[development-axapta] Re: Print Reort in Exel

2007-12-05 Thread Steeve Gilbert
You could always try export file to HTML and rename it to XLS but doesn't always give great results. But if you want more control over it you will probably have to do some coding with SysExcel* classes. Steeve... --- In development-axapta@yahoogroups.com, "febinpc" <[EMAIL PROTECTED]> wrote:

[development-axapta] Re: Deleting a batch process from queue in AX3 and AX4

2007-10-17 Thread Steeve Gilbert
Go to Main menu Basic / Batch list - User. From there you'll be able to delete batch process of the current user. If you want to clean all users batch process you can probably modify that form or delete directly in the table Batch. Steeve... --- In development-axapta@yahoogroups.com, "Earl R

[development-axapta] Re: Help on AX3 logon

2007-10-17 Thread Steeve Gilbert
Use that to close Axapta : infolog.shutDown(true); Steeve... --- In development-axapta@yahoogroups.com, "Earl Rey Lacsina" <[EMAIL PROTECTED]> wrote: > > I have extend SysStartupCmd class to perform a specific task on startup. My > problem is that I need to supply username and password on the

[development-axapta] Re: COM to Excel fails

2007-10-16 Thread Steeve Gilbert
I'm curious, how did you hide the Excel application? I usually instruct user not to play with Excel while an Excel generation occurs in Axapta otherwise it crash. But If I can avoid that, that would be better. Steeve... --- In development-axapta@yahoogroups.com, "thnathan" <[EMAIL PROTECTED]

[development-axapta] Re: Performance of a form with display Methods

2007-08-23 Thread Steeve Gilbert
Oh! Simple, just go to Tools, Options, there's a scroll bar called "Performance", just drag it all the way to the right and that should do it. Just kidding. :) >From what you explain, the performance problem is caused by your display methods. So if you want to raise performance you need to o

[development-axapta] Re: How we can Upload our images in axapta ?

2007-08-16 Thread Steeve Gilbert
You can check how the company logo is imported in CompanyInfo form. You can also upload pictures/file with Document Handling feature. Steeve... --- In development-axapta@yahoogroups.com, "Alok Kumar Mishra" <[EMAIL PROTECTED]> wrote: > > Hi friends how we can upload our photos in axapta > tha

[development-axapta] Re: add range.value in a query

2007-08-07 Thread Steeve Gilbert
I guess you need that : SysQuery::valueNotEmptyString(); Steeve... --- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]> wrote: > > Hi > I want to add a range in a query where the value of the field must not be > empty. > like in this example we added a range where salesstatus

[development-axapta] Re: Disable Prompt for file overwrite

2007-08-07 Thread Steeve Gilbert
May be that could help : element.printJobSettings().warnIfFileExists(false); Steeve... --- In development-axapta@yahoogroups.com, "James Flavell" <[EMAIL PROTECTED]> wrote: > > Is it possible in a report (or I guess any object) to disable the override > existing file prompt? The reason is I

[development-axapta] Re: x++ book

2007-07-29 Thread Steeve Gilbert
You could look at MorphX It from Steen Andreasen http://www.steenandreasen.com/purchase.asp Steeve... --- In development-axapta@yahoogroups.com, "melhabian" <[EMAIL PROTECTED]> wrote: > > hi > > i need x++ book.any one have any book in x++ please tell me >

[development-axapta] Re: Debugging Purchase table and form

2007-07-16 Thread Steeve Gilbert
If you're looking for posting code you should start by looking at the form's button that triggers that posting. You'll see that they point to MenuItem that starts with PurchFormLetter*. Those will all poin to class PurchFormLetter with different parameters. If you launch a menu Item that poi

[development-axapta] Re: Enterprise Portal Logo

2007-06-18 Thread Steeve Gilbert
Have you tried opening the EPHeader, do some modification and save it, then redeploy everything? There was a bug where you needed to go and save the Standard Pages again after an Import so the changes would take effect. regards, Steeve... --- In development-axapta@yahoogroups.com, "col.sven"

[development-axapta] Re: Print Archive

2007-06-18 Thread Steeve Gilbert
Use element.reset() in your report to create a new blank report for the next customer group. Steeve... --- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]> wrote: > > Hi > > I have requirement to create report(for customer) in a print archive format. > this part I am able to d

[development-axapta] Re: Query Addrange For Array Fields...!

2007-06-07 Thread Steeve Gilbert
Just making sure it's not a typo on the message : >range = strfmt('(((Dimension == "P-001") || ((Dimension[2] == I guess Dimension should be Dimension[1]. Steeve... --- In development-axapta@yahoogroups.com, "david santoso" <[EMAIL PROTECTED]> wrote: > > Hi All, > > i wanna create querybu

[development-axapta] Re: Scheduled batch compile

2007-06-07 Thread Steeve Gilbert
I'll probably be the 20th person to reply, anyway. Yes you can do it like this to compile all the AOT: ax32.exe -startupcmd=compileAll Add " +" or " -" at the end if you want to run the Cross-Reference update or not. See SysStartumCmdCompileAll for me details. Remember that you will have to

[development-axapta] Re: Error in Sql Statement

2007-06-07 Thread Steeve Gilbert
Hi Daniel, First of all set the infos detail level to "All" in your user options so you can see all infolog posted. In your message you're missing useful SQL error explaintion that could help you. In your second statement, replace de "order by" for "group by" and that should resolve your prob

[development-axapta] Re: setting the property on a table

2007-06-06 Thread Steeve Gilbert
Hi Brian, Use the TreeNode class to change property of your table. regards, Steeve... --- In development-axapta@yahoogroups.com, "branjema" <[EMAIL PROTECTED]> wrote: > > I have a table and need change the table property in code. > How do I do this? > > Thanks > > Brian >

[development-axapta] Re: Excel Chart

2007-05-30 Thread Steeve Gilbert
Hi, What I suggest is to record a macro in Excel that does what you need and examine the code. You'll then be able to replicate that code in Axapta since Axapta uses Excel COM to work with Excel. Good luck! Steeve... --- In development-axapta@yahoogroups.com, "branjema" <[EMAIL PROTECTED]>

[development-axapta] Re: Update Dimensions according to OnHand - InventSum

2007-05-28 Thread Steeve Gilbert
Hi John, I've done a similar customization and I put the trigger code in InventUpt_Physical.updateNow(). If I remember correctly it is only triggered when PhysivalInvent is changed, but maybe that can give you a hint. Good luck! Steeve... --- In development-axapta@yahoogroups.com, "jpchirco

[development-axapta] Re: storing images

2007-05-23 Thread Steeve Gilbert
Check in CompanyInfo form, there's a button that is used to store the company logo. Maybe you can mimic this to achieve what you want. Steeve... --- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]> wrote: > > Hi > I have a requirement wherein we use a image to show on the repor

[development-axapta] Re: How to lock the sorting and group total in Sorting tab In SysQueryform

2007-05-08 Thread Steeve Gilbert
Hi Anuj, Try setting "AllowAdd" property of all your dataSource to "No Fields". This will lock the sorting for sure, but for the group total I'm not sure what you're talking about. regards, Steeve... --- In development-axapta@yahoogroups.com, Anuj Rastogi <[EMAIL PROTECTED]> wrote: > > Hi A

[development-axapta] Re: reading xml in axpata

2007-04-20 Thread Steeve Gilbert
All tools for XML are in classes starting with "XML". Start by using XMLDocument::newFile(yourFilePath) and go on from there. Steeve... --- In development-axapta@yahoogroups.com, "branjema" <[EMAIL PROTECTED]> wrote: > > I have to read an xml file that has a one to many relation. can > anyone

[development-axapta] Re: Axapta 3.0 SP4 compatibility with SQL 2005 SP2

2007-04-20 Thread Steeve Gilbert
I don't know about SP4 but if you want to move to SQL 2005 you should also install Kernel Rollup 3. Steeve... --- In development-axapta@yahoogroups.com, "ken_wsyap" <[EMAIL PROTECTED]> wrote: > > Dear all, > > I would like to know whether Axapta 3.0 SP4 have any issue with SQL > 2005 SP2. We

[development-axapta] Re: Exporting Security Settigns for User Groups

2007-02-16 Thread Steeve Gilbert
Hi, You can export a user group and it's setting. Go to the user group form, select the group, click "Permissions" and on the right you'll see "Export". Try that. As for where is stored this data, I don't know. Steeve... --- In development-axapta@yahoogroups.com, "cbharda" <[EMAIL PROTECTE

[development-axapta] Re: update_recordset with container field

2007-02-16 Thread Steeve Gilbert
Maybe it doesn't want to run methods in update_recordset. Try this instead : container emptyCon = connull(); update_recordset T setting F = emptyCon; or update_recordset T setting F = []; (don't know if it compiles) good luck! Steeve... --- In development-axapta@yahoogroups.com, "mlefoa" <[

Re: RE : [development-axapta] print to Fax

2007-02-08 Thread Steeve Gilbert
). Sales order > confirmations are posted in batch jobs, so having the user enter > interactively the fax number, etc won't suffice. So...we are looking > at other options, like ascii files with imbedded FCL. Do you have > any suggestions, lessons learned, or words of wisdom?

[development-axapta] Re: Axapta-Knowledge-Village@yahoogroups.com

2007-02-08 Thread Steeve Gilbert
Usually, mobile phone company will provide an email address where you can send message that will be redirect to your phone via SMS. Something like [EMAIL PROTECTED] Steeve... --- In development-axapta@yahoogroups.com, "V G" <[EMAIL PROTECTED]> wrote: > > Hi > Is there a way in dynamics to sen

[development-axapta] Re: print report automatically

2007-01-29 Thread Steeve Gilbert
Set "Interactive" property of the report and the query to "No". Then play with element.printJobSettings to set whatever printer you need. Steeve... --- In development-axapta@yahoogroups.com, "tangolp" <[EMAIL PROTECTED]> wrote: > > Hello, > > I'd like to know how to send a report to the print

[development-axapta] Re: Unreserve and reserve an item through code

2007-01-29 Thread Steeve Gilbert
Try using : InventUpd_Reservation::updateReserveFromForm(salesLine, tblInventdim, tblInventDimParm , totalQty); That's what we do and it's working fine. Steeve... --- In development-axapta@yahoogroups.com, Akash <[EMAIL PROTECTED]> wrote: > > Hi, > > I am able to find a perticular transaction

[development-axapta] Re: Built-in function list

2007-01-11 Thread Steeve Gilbert
I hope you're not looking for documentation cause it's not in Axapta that you'll find that! :) Anyway here's lists you can check : - All static methods from class Global. - Right-click in your code and choose "List built-in functions". regards, Steeve... --- In development-axapta@yahoogroups

[development-axapta] Re: Working with an XML string

2007-01-11 Thread Steeve Gilbert
possible todo faster I would be very > glad. > So I read you were able to extract fields to a struct, from a DLL?? > Would you share some idea's or code with me? > > Satch > > --- In development-axapta@yahoogroups.com, "Steeve Gilbert" > wrote: > > &g

[development-axapta] Re: PurchTable "Purchase order" formula: Grid positions.....

2007-01-09 Thread Steeve Gilbert
If that can help you, I know that selecting "None" on "Summary update for" in "Other" Tab on the posting form prevent the order form from refreshing and losing it's position. Steeve... --- In development-axapta@yahoogroups.com, Mikael Dalgård (GPV International A/S) <[EMAIL PROTECTED]> wrote:

[development-axapta] Re: Working with an XML string

2007-01-07 Thread Steeve Gilbert
Hi, I think the XML version will indeed be a bit slower, but unless your code is heavily used, I don't think you'll see a difference between XML and DLL call. I've been able to use struct with DLL but not array. If you want to extract data from your XML string, use XML helper class (XMLDocume

[development-axapta] Re: error field id does not exist in table

2006-12-07 Thread Steeve Gilbert
Can you write us the line that throws this error? Steeve... --- In development-axapta@yahoogroups.com, "axaeffect" <[EMAIL PROTECTED]> wrote: > > hi all, > > I have an error in my Ax says "field id 12345 does not exist in table > MyTable".. does anyone knows what error is it? and how to resolv

[development-axapta] Re: Methods on word application objects

2006-12-07 Thread Steeve Gilbert
If you are working on a Word document, I guess you are using word COM interface. If so, then even thought the methods doesn't show in the drop down list when you type "." you can use all methods from the COM interface, thanks to late binding. Refer to : http://msdn.microsoft.com/library/defaul

RE : [development-axapta] changing Formdatasource field allowedit property from code

2006-11-24 Thread Steeve Gilbert
Hi Ramazan, You were almost there. Here's what you need : InventTable_ds.object(fieldNum(InventTable, ItemId)).allowEdit(false); Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Ramazan GÝRGÝN Envoyé

[development-axapta] Layman's Spec questions

2006-05-24 Thread Steeve Gilbert
Hi everyone, I just finished reading Layman's Spec for AX40 and I have a couple of questions: * It says AX40 will use Active directory logon.  Should I understand by that, that we won't be able to enter a different login to have access to Axapta?  So we won't be able to login wit

[development-axapta] Ax 4.0 with SQL Reporting Services

2006-05-16 Thread Steeve Gilbert
Hi everyone,   Can someone tell us about SQL Reporting Services integration in Ax 4.0?  How well is it integrated?  How is it to create a report that will use SQL Reporting Services in Ax 4.0?  Any kind of info would be appreciated. Regards, Steeve... [Non-text portions of this m

RE : [development-axapta] Re: Populate grid from StringEdit box

2006-05-10 Thread Steeve Gilbert
Create a temporary table (Table Property Temporary = Yes) and add it to your form.  On clicked() of a button, insert the data of your stringEdit into your table with a simple SQL query like : YourTmpTable.clear(); YourTmpTable.someValue = yourstringeditvalue; YourTmpTable.insert(); Then later b

RE : [development-axapta] Create New fields during runtime in dialog

2006-04-24 Thread Steeve Gilbert
Hi vijay, Creating fields at run time is not the best thing ever.  Still, if this is what you need you can do this :     AOTTableFieldList fields;     TreeNode myTable;     TreeNode field;     myTable = TreeNode::findNode("\\Data Dictionary\\Tables\\TheTable");     fields = myTable.AOTfindChi

RE : [development-axapta] Signature in a report

2006-04-12 Thread Steeve Gilbert
Here's an example of how to get an image saved in Document Handling.  You can use that method for your bitmap control and the image should be displayed. display Bitmap getMirageLogo(){     DocuRef dc;     DocuValue dv;     select ValueRecId from dc     where ((dc.RefTableId == tableNum(Com

[development-axapta] View doesn't use indexes

2006-04-02 Thread Steeve Gilbert
Hi group,   I'm trying to improve performance in some part of our application. I've stumble on a view that end up doing a table scan on SalesLine.  I thought their must be missing index, that's why the table scan is required.  It wasn't the case; all the required indexes were there. I've rep

RE : [development-axapta] How to get distinct records in report?

2006-03-30 Thread Steeve Gilbert
r 7 hp   I have set group by in report Datasource's orderby mode. which field default taken for group by. i want to group by as equipment class.how to do?      regards,   vijay   Steeve Gilbert <[EMAIL PROTECTED]> wrote:   Hi Vijay, To do a group by, take a look at the property OrderM

RE : [development-axapta] How to get distinct records in report?

2006-03-29 Thread Steeve Gilbert
Hi Vijay, To do a group by, take a look at the property OrderMode of your report's dataSource. Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de vk Envoyé : 28 mars 2006 23:39 À : development-axapta@yahoogroups.co

RE : [development-axapta] Report Design Problem

2006-03-29 Thread Steeve Gilbert
Yes, resetting user data could be a start.  Are both user using the same printer?  I've had issue with user using different printer that didn't get the exact same layout. Take care, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la

RE : [development-axapta] hello!

2006-03-28 Thread Steeve Gilbert
Hi, You can override task() method of the form.  When _taskId = #taskEnter (taken from Task macro), then that's because enter was pressed.  Problem is that you don't know on what control is just happened.  You could use getFocus() and lostFocus() to track the control that have the current focus

RE : [development-axapta] Syntax for Axapta SQL statement

2006-03-23 Thread Steeve Gilbert
Your query could be translate to : Select PurchLine where purchid like "234334, 345345, 34534"; Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Rajkumar Envoyé : 23 mars 2006 03:33 À : development-axapta@yahoogr

RE : [development-axapta] Form problem

2006-03-21 Thread Steeve Gilbert
Whenever it is possible, always try to put methods on the tables as you will be able to use them elsewhere in the code and they will profit from some optimization. In that case it will resolve your problem.  The problem you encountered is probably due to the fact that you have put your method

RE : [development-axapta] How to show a form again after the user has it closed

2006-03-14 Thread Steeve Gilbert
Hi Patrick, Why would you want to do that?  Preventing the form to be closed would be a better approach.  Maybe if you explain to us what the goal is, we'll be able to help you. Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED

RE : [development-axapta] How to access report controls dynamically?

2006-03-05 Thread Steeve Gilbert
Run() method would be a good place to do it (before super() I think).  Make sure your control's autodeclaration = yes (property).  Then you can do this : yourControlName.visible(false); Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE : [development-axapta] Configuration Utility

2006-02-27 Thread Steeve Gilbert
Hi Frank, I don't know anyway to cleanly read the Config Utility file from Axapta but here's where you can get the info you asked for. Name : XUserInfo::find(false, curUserId()).name Language : infolog.language() Tell us what info you need and we might be able to guide you. Regards, Steeve

RE : [development-axapta] Variant, COMVariant

2006-02-12 Thread Steeve Gilbert
I have no solution for you but I just wanted to show everyone a little anytype test I've tried to check your statement:     anytype typeFreeVar;     typeFreeVar = "sdf";     info(strfmt("%1", typeFreeVar));     typeFreeVar = 54.2;     typeFreeVar += 54.2; // will result in : 54.254.2.  Weird

[development-axapta] Automate Cross-References update

2006-02-09 Thread Steeve Gilbert
Hi group,   I'm trying to setup something so that the Cross-Reference update is run every night on our Dev instance.  I've tried calling the update from a small app that run the COM Connector and calls xRefUpdate::main(new Args(classStr(SysCompileAll))).  But when I run it I endup with this

RE : [development-axapta] Open axapta form from E-Mail or command line??

2006-02-08 Thread Steeve Gilbert
To my knowledge there's not build-in functionnality that can do that.  But it can be easily developed by adding a commandline parameter.  Take a look at class SysStartupCmd and its child. Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL

RE : [development-axapta] Axapta Code Protection - Source Scrambling

2006-02-03 Thread Steeve Gilbert
Just hire some really bad programmer and the code will be scrambled just has he typed it. :) Have a nice day! Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Leberbauer Herbert - News Envoyé : 3 février 2006 04:54 À : de

RE : [development-axapta] add a field in the invoice report generated when posting invoice

2006-02-01 Thread Steeve Gilbert
Hi Malters, Take a look in report SalesInvoice. Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de maltmega Envoyé : 31 janvier 2006 11:50 À : development-axapta@yahoogroups.com Objet : [development-axapta] add a field in t

[development-axapta] Kernel Rollup

2006-01-31 Thread Steeve Gilbert
Hi everyone, Just saw that a Kernel Rollup for Axapta was out at http://axaptafreak.blogspot.com/.  Anyone thinking about installing it or waiting for 4.0?  In the fixlist they talk about SP5, is it out already? Regards, Steeve... [Non-text portions of this message have been rem

RE : [development-axapta] Re: Unit testing tool

2006-01-30 Thread Steeve Gilbert
Hi! I've looked at Test Complete to see if it could help us with test and was wondering if it's really what you use to run automated test in Axapta?  It looks like it's a lot of work to build some basic test case.  Do you run automated test in Axapta at all?  Almost 3 years now that we develop

RE : RE : [development-axapta] Axapta programming version control

2006-01-27 Thread Steeve Gilbert
checkin objects to version control system (only if modified) > - ... > > Best regards, > > Daniel > > --- In development-axapta@yahoogroups.com, "Steeve Gilbert" > <[EMAIL PROTECTED]> wrote: > > > > Hi Andrew, > > > >   It seems l

RE : [development-axapta] swapping language

2006-01-05 Thread Steeve Gilbert
With this : element.design().languageID(CustTable.LanguageId); Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Askeryd Thomas Envoyé : 5 janvier 2006 05:31 À : development-axapta@yahoogroups.com Objet : [develop

RE : [development-axapta] urgent-updating menu item

2006-01-03 Thread Steeve Gilbert
When starting your report with the MenuItem, press "Default" or in select form press "Reset".  That will flush last ranges used and bring the new ones. Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Fortune For

RE : [development-axapta] for copying the database

2006-01-03 Thread Steeve Gilbert
I would go the excel import way since it goes thru Axapta processing (Recid assignement, etc...).  Directly importing in SQL could cause some trouble. Will your VB app play directly into the tables or thru the Axapta COM? Regards, Steeve... -Message d'origine- De : development-axa

RE : [development-axapta] Command line

2006-01-03 Thread Steeve Gilbert
Try with WinAPI::shellExecute(...). Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Edine Le Roux Envoyé : 3 janvier 2006 07:14 À : Axapta-Knowledge-Village; Development Axapta Objet : [development-axapta] Command line H

RE : [development-axapta] Tree view of customer and item transaction details in form.

2006-01-03 Thread Steeve Gilbert
All you need is custTrans.  Build your tree with the info from custTrans grouped by ItemId and filtering for a particular customer.  Then on selecting an item in the treeview, just filter a grid that list all CustTrans (custTrans_ds.query().dataSourceNo(1).addRange(...)). Regards, Steeve...

RE : [development-axapta] Axapta programming version control

2006-01-03 Thread Steeve Gilbert
Hi Andrew,   It seems like finding information on version control for Axapta is a hard task.  I've started taking a look around and it seems that there are very few products.  Beside NextInnovation, I've seen axSource in the add-in catalogue but it isn't supported anymore.  I'm starting to bel

RE : [development-axapta] sending a record

2005-12-23 Thread Steeve Gilbert
Send the record?  What do you mean by that?  Send where? Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de woodychr Envoyé : 23 décembre 2005 04:47 À : development-axapta@yahoogroups.com Objet : [development-axapt

RE : RE : RE : [development-axapta] Reset position in a tablebuffer

2005-12-22 Thread Steeve Gilbert
nt millisec;     ;     millisec    = time mod 3600 mod 60 mod 1000;     time    = time div 1000;     return  Time2strHMS(time) + "." + num2str0(millisec, 3,0,0,0); } Barry. -Original Message- From: development-axapta@yaho

RE : RE : [development-axapta] Reset position in a tablebuffer

2005-12-21 Thread Steeve Gilbert
apta@yahoogroups.com Objet : Re: RE : [development-axapta] Reset position in a tablebuffer Yes "select ct" initialises the buffer again. But it doesn't matter if you uses "while select" or "next". Simon  --- In development-axapta@yahoogroups.com, "Stee

RE : [development-axapta] Reset position in a tablebuffer

2005-12-20 Thread Steeve Gilbert
I would redo the "select ct;".  But you should be doing that instead : While select ct {     info(ct.AccountNum); } Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de cdlmalherbe01 Envoyé : 20 décembre 2005 06:02 À : devel

RE : [development-axapta] Version control in Axapta 3.0

2005-12-17 Thread Steeve Gilbert
What do you mean by version control?  Versioning and source control? Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de pvraghavanmca Envoyé : 16 décembre 2005 05:02 À : development-axapta@yahoogroups.com Objet : [

RE : [development-axapta] Page change event on a report

2005-12-06 Thread Steeve Gilbert
You could create a PageHeader section.  It is triggered at each new page. Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Martin Sujkowski Envoyé : 5 décembre 2005 15:33 À : development-axapta@yahoogroups.com Ob

RE : [development-axapta] Switching Report Designs

2005-11-29 Thread Steeve Gilbert
In the init() you can select the design you want the report to use by calling element.design("designName"); Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Martin Sujkowski Envoyé : 29 novembre 2005 09:05 À : development-

RE : [development-axapta] update field

2005-11-24 Thread Steeve Gilbert
Where (what method) do you update that third field and what code do you use? Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Vanessa kajtaz Envoyé : 24 novembre 2005 11:07 À : development-axapta@yahoogroups.com Objet : [d

RE : [development-axapta] Report design problem

2005-11-21 Thread Steeve Gilbert
I don't think you need to override fetch/send.  Just add a element.newPage() in the executeSection() (after super() ) for the one page per row feature.  What do you mean by "arrange the different column?".  You can arrange all you want in the report design. Regards, Steeve... -Message

RE : RE : [development-axapta] I cant move fields in report designer

2005-11-16 Thread Steeve Gilbert
evelopment-axapta] I cant move fields in report designer Hi, no the fields are not in a group. I tried adding a group but I cant find the property anywhere. I'm running Axapta 2.5. This property might not be included in this version? --- In development-axapta@yahoogroups.com, "Stee

RE : [development-axapta] I cant move fields in report designer

2005-11-13 Thread Steeve Gilbert
Are your field in a group in the design tree?  If they do you'll have to change the "AutoFieldGroupOrder" property of the group in order be able to move them. Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Thomas Envoyé 

RE : [development-axapta] Sequence of methods on reports

2005-11-08 Thread Steeve Gilbert
I've tried your example and I can confirm the behaviour you mentioned.  But I can't really explain it. Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Dahlsgaard Jan Envoyé : 7 novembre 2005 12:38 À : developmen

RE : RE : [development-axapta] can we get exterior datasource in Axapta ?

2005-10-26 Thread Steeve Gilbert
-- In development-axapta@yahoogroups.com, "Steeve Gilbert" <[EMAIL PROTECTED]> wrote: > > To my knowledge, the only way to read a table on another sqlserver is to use a connection object like UserConnection, ODBCConnection, etc... > > Regards, > > Steeve... &

RE : [development-axapta] can we get exterior datasource in Axapta ?

2005-10-25 Thread Steeve Gilbert
To my knowledge, the only way to read a table on another sqlserver is to use a connection object like UserConnection, ODBCConnection, etc... Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de acloudy_yin Envoyé : 2

RE : [development-axapta] Validation of contents of a stringedit control

2005-10-24 Thread Steeve Gilbert
I've tried replicating the problem here but it's working correctly.  Take a look at my Form and tell us what is different in your case. Regards, Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de cdlmalherbe01 Envoyé : 24 o

RE : [development-axapta] div two field from table

2005-10-17 Thread Steeve Gilbert
I think I don't quite get it, here's what I understand : Result = myTable.RealField1 div myTable.RealField2; Is that it? Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Vanessa kajtaz Envoyé : 17 octobre 2005 05:53 À :

RE : [development-axapta] multiple pointers to the same temporary table

2005-10-17 Thread Steeve Gilbert
I've build a small example that shows that it does pretty much what you want.  What do you want to do exactly? TmpSum sumTab; TmpSum sumTab2; sumTab.Balance01 = 11; sumTab.Key = "1"; sumTab.insert(); sumTab.Balance01 = 22; sumTab.Key = "2"; sumTab.insert(); sumTab2.setTmpData(sumTab); selec

RE : [development-axapta] flush of cache

2005-10-12 Thread Steeve Gilbert
In Tools -> Options -> Usage data, look for the name of you form in the "Form setup" and "Form selections" tabs.  Use a delete query to remove the record for your form. Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de wood

RE : [development-axapta] ComboBox in Grid - Changing drop down list

2005-10-09 Thread Steeve Gilbert
A custom lookup will probably achieve what you want if your options are stored in a table.  Check for "lookup form" in the index of the Developer Help. Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de rickhardy22 Envoyé :

RE : [development-axapta] How to make the fields in report displayed in descending?

2005-10-03 Thread Steeve Gilbert
It's not just a matter of setting the Ordering property of the sorting field of the dataSource to Descending? Steeve... -Message d'origine- De : development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de junjunok77 Envoyé : 3 octobre 2005 04:00 À : development-axapta

  1   2   3   4   >