Upload an image in a form window control Hi Guys, Here is the code for Upload an image in a form window control in your Axapta world. Go n Get It...... str filename; FileNameFilter filter = ['JPG files','*.jpg']; Bindata binData; Image signatureImage = n ew Image (); super(); filename = Winapi::getOpenFileName(element.hWnd(), filter, '', "Upload your image", '', ''); binData = new BinData(); if (binData.loadFile(filename)) { signatureImage = binData...(read more)
↧