RE: [development-axapta] creating password field

2006-04-27 Thread Mayle, Michael
Hema, There is a property on the stringEdit of whatever field you are displaying called Password Style. Set that to Yes and you should be set. --Michael -Original Message- From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday,

RE: [development-axapta] ENUM Element

2006-04-26 Thread Mayle, Michael
Mike, I just tried this one... static void Job590(Args _args) { int x; ; x = salesStatus::Canceled; box::info(int2str(x)); } Not sure if it will work for your application, but there it is. Enjoy, Michael Mayle Disc Makers -Original Message- From:

RE: [development-axapta] Signature in a report

2006-04-19 Thread Mayle, Michael
Hi Hilda, We have a creative solution for the exact same problem. We have a font in which each character in the font is an employee's signature. We set the report to use this font for the signature. We then added a field emplSigCharacter to our employee table, and each employee gets a

RE: [development-axapta] Signature in a report

2006-04-19 Thread Mayle, Michael
Hi Hilda, We have a creative solution for the exact same problem. We have a font in which each character in the font is an employee's signature. We set the report to use this font for the signature. We then added a field emplSigCharacter to our employee table, and each employee gets a

RE: [development-axapta] OR criterias in query

2006-01-22 Thread Mayle, Michael
Jan, I had to do something like this before... This worked for me, not sure if this helps... QBR = thisDS.addRange(FieldNum(t, fieldA)); strRange = strfmt('((%1 == %3 %2 == %4) || (%1 == %5 %2 == %6))', fieldstr(t, fieldA), fieldstr(t, fieldB), '100', '200', '500', '700'));

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

2006-01-20 Thread Mayle, Michael
I am going to say that the programming is not so perfect (joke, I think...) You can get to the page by navigating to it from the front page, but the link fails if you go directly there. The page cannot be displayed There is a problem with the page you are trying to reach and it

RE: [development-axapta] Re: How to send file to FTP

2006-01-10 Thread Mayle, Michael
Here is a copy of the XPO of all of Jan's wonderful tips here. I have also added my own ftpCreateDirectory, ftpDeleteFile, ftpRemoveDirectory, and ftpRenameFile, and I as well as have attempted ftpCommand and ftpGetCurrentDirectory, but gave up. Please share any solutions that you may have

RE: [development-axapta] Re: How to send file to FTP

2006-01-10 Thread Mayle, Michael
Message- From: Byteway [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 10, 2006 2:16 PM To: development-axapta@yahoogroups.com; Mayle, Michael Subject: Re: [development-axapta] Re: How to send file to FTP Hi, I think you first have to implement the InternetGetLastResponseInfo method

RE: [development-axapta] Sending files via FTP

2005-06-13 Thread Mayle, Michael
comes standard with Windows... From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mayle, Michael Sent: Friday, June 10, 2005 1:08 PM To: development-axapta@yahoogroups.com Subject: RE: [development-axapta] Sending files via FTP I have

RE: [development-axapta] Sending files via FTP

2005-06-11 Thread Mayle, Michael
I have done 2 things: 1. Purchased a DLL object (I Use Dart FTP) and interface with it via the COM class 2. Wrote a class that takes in all of the information and writes out the FTP commands to a batch file with the ASCIIIO class, then runs the batch file via a winAPI::Shell(). Both are

RE: [development-axapta] pb with shellExecute

2005-05-20 Thread Mayle, Michael
You just need to add quotes around the filename. --Mike Michael Mayle Lead Programmer Disc Makers 7905 N Route 130 Pennsauken, NJ 08110 1-800-468-9353 x5540 [EMAIL PROTECTED] -Original Message- From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [development-axapta] Re: Simple email vaidation

2005-05-06 Thread Mayle, Michael
-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mayle, Michael Sent: 05 May 2005 13:58 To: development-axapta@yahoogroups.com Subject: RE: [development-axapta] Re: Simple email vaidation Hi Andrew, Thanks, but I actually have a library of regular expressions, it's just

RE: [development-axapta] Re: Simple email vaidation

2005-05-05 Thread Mayle, Michael
to validate an email address. The regular _expression_ checker in Axapta is the match() function, in case you hadn't got that far yet. Cheers Andrew --- In development-axapta@yahoogroups.com, Mayle, Michael [EMAIL PROTECTED] wrote: Hi all, I am trying to adapt a regular _expression_ to use in Axapta

[development-axapta] Simple email vaidation

2005-05-04 Thread Mayle, Michael
Hi all, I am trying to adapt a regular _expression_ to use in Axapta for email address checking. Does anyone have one? Any help appreciated, but I can of course write a method to satisfy this. I just thought there was an easy way in Axapta to do it. Thanks in advance. --Mike Michael Mayle

RE: [development-axapta] Address Fields

2004-11-22 Thread Mayle, Michael
Is this an address field you have added to a table or is it one that already existed in Axapta? --Mike _ From: mud_mullet [mailto:[EMAIL PROTECTED] Sent: Monday, November 22, 2004 8:04 AM To: [EMAIL PROTECTED] Subject: [development-axapta] Address Fields Hi All Im

RE: [development-axapta] Credit Card Payments in Enterprise Portal

2004-11-05 Thread Mayle, Michael
We have done so at my company. I can give you tips on it if you like, it was some fairly simple programming. Michael Mayle Lead Programmer Disc Makers 7905 N Route 130 Pennsauken, NJ 08110 (856)661-5540 (800)468-9353 x5540 [EMAIL PROTECTED] _ From: Vanessa Kirberger

RE: [development-axapta] Re: Barcode Scaners

2004-07-15 Thread Mayle, Michael
Installed with the OS. Depending on what unit you get, the scanner may not work in the TS client, though. --Michael _ From: arecki2001 [mailto:[EMAIL PROTECTED] Sent: Thursday, July 15, 2004 3:13 AM To: [EMAIL PROTECTED] Subject: [development-axapta] Re: Barcode Scaners Thanks for

RE: [development-axapta] Re: Disabling address validation ...

2004-01-02 Thread Mayle, Michael
Hello, I do not know if it the same as it is in Axapta 2.5, but here there is a table map in the tables section of the AOT called AddressMap that maps to all addresses that are checked, and there is a method that is called AnalyzeAddress that is called to do the address checking. This is where