Click here to Skip to main content
15,867,756 members

Comments by Roman Lerman (Top 18 by date)

Roman Lerman 9-Aug-12 3:01am View    
See the example code above.

<pre lang="cs">SaveFileDialog saveFileDialog = new SaveFileDialog();

if (saveFileDialog.ShowDialog() == DialogResult.OK)
{
SaveAsBitmap(this, saveFileDialog.FileName);
}</pre>
Roman Lerman 8-Aug-12 3:24am View    
Yes, use thread. What is the problem with timer?
Roman Lerman 7-Aug-12 10:03am View    
What I'm using is modified version of this approach FileByteArray[^] My file can be accessed and modified on the fly, the length of "FileArray" is dynamic and the read speed is enough for reading fast large amount of data (~50 MB/sec, depends on op. system). I hope it will help you. Sorry for my English.
Roman Lerman 22-Jul-12 2:28am View    
Topmost="True" in xaml or yourDialog.Topmost="true"; in code, and open the dialog using "yourDialog.ShowDialog()".
Try it.