04.07.2011, 12:11 | #1 |
Участник
|
axaptapedia: WinAPI
Источник: http://axaptapedia.com/WinAPI
============== Summary: New page: WinAPI is a wrapper class in Dynamics AX that provides access to the Windows API and its DLLs. ===Dynamics AX 3.0=== Get files in Directory WinAPI api = new WinAPI(); str fileName; ... WinAPI is a wrapper class in Dynamics AX that provides access to the Windows API and its DLLs. ===Dynamics AX 3.0=== Get files in Directory WinAPI api = new WinAPI(); str fileName; int i; ; [i,fileName] = WinAPI::findFirstFile("C:/Users/Public/Documents/Test/*.*"); while(fileName) { info(fileName); fileName = WinAPI::findNextFile(i); } Источник: http://axaptapedia.com/WinAPI
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|