Sign In
Palle Agermark's WebLog
About Dynamics AX development
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Bugs
Dynamics AX 3.0
Dynamics AX 4.0
Pages
Archive
Archives
June 2007
(9)
April 2007
(1)
March 2007
(1)
February 2007
(1)
January 2007
(2)
December 2006
(2)
October 2006
(2)
September 2006
(2)
August 2006
(3)
July 2006
(9)
June 2006
(6)
May 2006
(6)
April 2006
(3)
March 2006
(4)
February 2006
(1)
August 2005
(2)
July 2005
(1)
June 2005
(1)
May 2005
(3)
January 2005
(1)
June, 2007
MSDN Blogs
>
Palle Agermark's WebLog
>
June, 2007
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Palle Agermark's WebLog
Turn off regular expressions in TextBuffer
Posted
over 5 years ago
by
Palle Agermark
1
Comments
When you work with objects of the TextBuffer class they use regular expressions internally when applying operations on the text. So this example probably wouldn't perform as you'd expect, since "<" is a control character used by the regular expression...
Palle Agermark's WebLog
Import data from InfoPath forms to AX 4.0
Posted
over 5 years ago
by
Palle Agermark
1
Comments
Here is a very high-level description on how you can import data from an InfoPath form to AX 4.0: Create the AX web service you want to use (e.g. to create a sales order) Create a new InfoPath form Define the web service as data source in InfoPath...
Palle Agermark's WebLog
AX 4.0 Enterprise Portal and WSS 3.0 - Themes
Posted
over 5 years ago
by
Palle Agermark
1
Comments
When you apply other themes from WSS, like Reflector or Plastic, Enterprise Portal (EP) retains the default theme. This is because EP doesn't ship with style sheets for all the themes of WSS. To customize the EP style sheet to match the WSS theme you...
Palle Agermark's WebLog
Access SharePoint Document Library through UNC Path
Posted
over 5 years ago
by
Palle Agermark
1
Comments
I usually don't just link to other blogs from this blog, but this tip is very helpful and I seem to return to it again and again for reference. So here is the link: http://blogs.msdn.com/solutions/archive/2006/07/19/671873.aspx This posting is provided...
Palle Agermark's WebLog
Deploying AX with other directory servers than Active Directory
Posted
over 5 years ago
by
Palle Agermark
1
Comments
As you may very well know AX can't be deployed with other directory servers than Active Directory (AD). But a product like Microsoft Identity Integration Server (MIIS) allows you to integrate between AD and other directory servers. This will allow you...
Palle Agermark's WebLog
SysImport without confirmation dialog
Posted
over 5 years ago
by
Palle Agermark
1
Comments
If you run a something like the following, you'll be met with a confirmation dialog for existing elements. private void importAOT(str fileName) { SysImportElements sysImport = new SysImportElements(); sysImport.newFile(fileName); sysImport.parmImportAot...
Palle Agermark's WebLog
Create file directory on the AOS fileserver from code
Posted
over 5 years ago
by
Palle Agermark
1
Comments
WinAPIServer does not have createDirectory method, so best option is to use ClrInterop. static void createFileDirectory(Args _args) { FilePath path; new InterOpPermission(InteropKind::ClrInterop).assert(); System.IO.Directory::CreateDirectory(path...
Palle Agermark's WebLog
Remove HTML tags from a string
Posted
over 5 years ago
by
Palle Agermark
1
Comments
Just stumbled on this little, but usefull, method. Web::stripHTML(...) removes HTML tags from a string and returns the actual text of the HTML string. The HTML must be fairly simple though. This posting is provided "AS IS" with no warranties...
Palle Agermark's WebLog
How to disable a configuration key from X++
Posted
over 5 years ago
by
Palle Agermark
1
Comments
Please be aware that by running this code, you'll loose data in any table associated with the configuration key. ConfigurationKeySet configurationKeySet = new ConfigurationKeySet(); ; configurationKeySet.loadSystemSetup(); configurationKeySet...
Page 1 of 1 (9 items)