Showing related tags and posts across the entire site.
-
The Dimension EDT does not extend from SysDimension base enum, because its base type is not a base enum, but a string. This EDT is used for input of actual financial dimensions, like on the Sales order header, Dimension Tab. The relation between Dimension and SysDimension is done through a Related Field...
-
Create a new method on WinAPI class: static int setWindowLong (HWND _HWND, int _nIndex, int _dwNewLong) { DLL DLL; DLLFunction DLLFunction; ; DLL = new DLL(#UserDLL); DLLFunction = new DLLFunction(DLL, ' SetWindowLongA ' ); DLLFunction.arg(ExtTypes::DWord, ExtTypes::DWord, ExtTypes::DWord); DLLFunction...
-
I would go with the 2-datasource model. It is logically more correct and easy, and this is more reliable, at least. It probably is also more efficient, because you won't have to re-query the table each time the tab is changed. You will just preformed 2 queries at form startup.
-
Well, it's fairly simple. You can use the Image class for that: Image image = new Image(); image.loadImage(_filePath); <YourTable>.<YourField> = image.getData();