| T O P I C    R E V I E W | 
              
                | Vish | Posted - Jun 02 2020 : 08:22:14 Hi Team
 
 I am looking to scan images to ImageEnMView.
 
 I want to place the image scanned image in the list base on followings
 
 At Top
 At Bottom
 Replace selected
 Below current Selected
 Above current selected.
 
 Based on above value selected, I want to place the image in list.How can we do this
 | 
              
                | 2   L A T E S T    R E P L I E S    (Newest First) | 
              
                | Vish | Posted - Jun 03 2020 : 03:30:35 Thanks Nigel
 | 
              
                | xequte | Posted - Jun 02 2020 : 21:41:14 Hi
 
 By default, TImageEnMView.MIO.Acquire() adds the acquired images at the current selected position, so you just need to set the position prior to acquisition, e.g.
 
 // Add at top...
 ImageEnMView1.SelectedImage := 0;
 ImageEnMView1.MIO.Acquire();
 
 
 https://www.imageen.com/help/TImageEnMIO.Acquire.html
 
 Nigel
 Xequte Software
 www.imageen.com
 |