User huseyint - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T14:23:39Zhttp://stackoverflow.com/feeds/user/39http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1176566/get-current-windows-user-name-within-silverlight2Get current Windows user name within Silverlighthuseyint2009-07-24T09:18:10Z2009-12-03T02:53:08Z
<p>Is it possible to get the currently logged in user's username with Silverlight? You can assume that user has Windows OS and the Silverlight application is hosted in Internet Explorer. Getting the identity from server side with ASP.NET is not an option, this SL application will be hosted on a static HTML file.</p>
http://stackoverflow.com/questions/15880/read-from-msg-files3Read from .msg fileshuseyint2008-08-19T08:07:28Z2009-10-22T22:27:30Z
<p>I need to read from Outlook .MSG file in .NET <em>without</em> using COM API for Outlook (cos it will not be installed on the machines that my app will run). Are there any free 3rd party libraries to do that? I want to extract From, To, CC and BCC fields. Sent/Receive date fields would be good if they are also stored in MSG files.</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/3264#3264184Answer by huseyint for What is the single most influential book every programmer should read?huseyint2008-08-06T10:26:16Z2009-10-05T23:09:35Z<p>What about putting book image covers here, just the text is kinda'...boring.</p>
<p><a href="http://cc2e.com/" rel="nofollow"><img src="http://cc2e.com/%5Fimg/cc2e-cover-small.gif" alt="Code Complete 2" /></a>
<a href="http://www.pragprog.com/titles/tpp/the-pragmatic-programmer" rel="nofollow"><img src="http://www.pragprog.com/images/covers/190x228/tpp.jpg?1184184147" alt="The Pragmatic Programmer" /></a></p>
http://stackoverflow.com/questions/687/keyboard-for-programmers/788#788232Answer by huseyint for Keyboard for programmershuseyint2008-08-03T18:47:12Z2009-09-20T09:12:39Z<p>I started using <a href="http://www.microsoft.com/hardware/mouseandkeyboard/productdetails.aspx?pid=043" rel="nofollow">Microsoft Natural Ergonomic Keyboard 4000</a> at work 1 year ago. At first week it was a bit weird, especially with "Integrated Palm Rest" (4). But then I have got used to it so much and I bought one for my PC at home.</p>
<p><img src="http://www.microsoft.com.nyud.net/hardware/mouseandkeyboard/images/products/nek4k/mk%5Fproductfeatures%5Fnek4k.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/179#17911Answer by huseyint for How do I programmatically create a PDF in my .NET application?huseyint2008-08-01T18:42:10Z2009-09-09T09:42:03Z<p>Try <a href="http://www.pdfsharp.net/" rel="nofollow">PDFsharp and MigraDoc</a>, it is an open source PDF creation component written in .net</p>
http://stackoverflow.com/questions/473306/benefits-of-developing-mmc-snap-ins-instead-of-traditional-gui-apps4Benefits of developing MMC snap-ins instead of traditional GUI appshuseyint2009-01-23T15:25:52Z2009-08-26T08:36:17Z
<p>What are the benefits of developing MMC snap-ins instead of traditional GUI apps? AFAIK the MMC snap-ins can be loaded remotely to control some server applications but I have never dived deep in this approach. What are the pros and cons of MMC snap-in approach over traditional Win Forms (or WPF) GUI applications?</p>
<p>And btw lately PowerShell is getting a lot of attention and again AFAIK there are some relation between MMC snap-ins and PowerShell script but I don't know any further. Any ideas?</p>
http://stackoverflow.com/questions/1196186/what-might-be-causing-string-format-to-move-characters-around-unexpectedly/1196213#11962133Answer by huseyint for What might be causing String.Format to move characters around unexpectedly?huseyint2009-07-28T19:23:13Z2009-07-28T19:23:13Z<p>How about this:</p>
<pre><code>String flipsMessage = String.Format(
"Flips: {0} / Aggr: {1} ({2:P})",
numFlips, numAggrFlips, pctAggrFlips
);
</code></pre>
http://stackoverflow.com/questions/1196059/itextsharp-sending-in-memory-pdf-in-an-email-attachment/1196082#11960821Answer by huseyint for iTextSharp - Sending in-memory pdf in an email attachmenthuseyint2009-07-28T18:58:00Z2009-07-28T19:16:58Z<p>Probably calling doc.Close() Disposes the underlying stream. Try removing doc.Close() and instead of that line set memoryStream.Position = 0;</p>
<p>Alternatively you can use a temp file:</p>
<pre><code>var tempFilePath = Path.GetTempFileName();
try
{
var doc = new Document();
PdfWriter.GetInstance(doc, File.OpenWrite(tempFilePath));
doc.Open();
doc.Add(new Paragraph("First Paragraph"));
doc.Add(new Paragraph("Second Paragraph"));
doc.Close();
MailMessage mm = new MailMessage("username@gmail.com", "username@gmail.com")
{
Subject = "subject",
IsBodyHtml = true,
Body = "body"
};
mm.Attachments.Add(new Attachment(tempFilePath, "test.pdf"));
SmtpClient smtp = new SmtpClient
{
Host = "smtp.gmail.com",
Port = 587,
EnableSsl = true,
Credentials = new NetworkCredential("username@gmail.com", "my_password")
};
smtp.Send(mm);
}
finally
{
File.Delete(tempFilePath);
}
</code></pre>
http://stackoverflow.com/questions/1195896/c-threadstart-with-parameters/1195918#11959181Answer by huseyint for C# ThreadStart with parametershuseyint2009-07-28T18:35:18Z2009-07-28T18:35:18Z<pre><code>class Program
{
static void Main(string[] args)
{
Thread t = new Thread(new ParameterizedThreadStart(ThreadMethod));
t.Start("My Parameter");
}
static void ThreadMethod(object parameter)
{
// parameter equals to "My Parameter"
}
}
</code></pre>
http://stackoverflow.com/questions/1189803/dynamic-datatemplate-in-wpf/1189924#11899240Answer by huseyint for Dynamic Datatemplate in WPFhuseyint2009-07-27T18:48:40Z2009-07-27T18:48:40Z<p>Say you have Resource Dictionaries in the root of your WPF project like these for each User group/type:</p>
<ul>
<li>UserOneResources.xaml</li>
<li>UserTwoResources.xaml</li>
<li>...</li>
</ul>
<p>Which contains DataTemplates:</p>
<pre><code><!-- UserOneResources.xaml -->
<DataTemplate DataType="{x:Type s:String}">
<TextBlock Text="{Binding .}" />
</DataTemplate>
<!-- UserTwoResources.xaml -->
<DataTemplate DataType="{x:Type s:String}">
<TextBox Text="{Binding .}" />
</DataTemplate>
</code></pre>
<p>Then in the constructor of your App.xaml.cs you can select appropriate resource dictionary for the current user type like the following:</p>
<pre><code>public App()
{
string resourceDictionaryToUse;
if (user.Type = UserType.One)
{
resourceDictionaryToUse = "UserOneResources.xaml";
}
else
{
resourceDictionaryToUse = "UserTwoResources.xaml";
}
var rd = new ResourceDictionary() { Source = new Uri("pack://application:,,,/" + resourceDictionaryToUse) };
this.Resources.MergedDictionaries.Add(rd);
}
</code></pre>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1189559/csv-file-read-special-chars-problem/1189616#11896161Answer by huseyint for CSV File read. Special Chars problem.huseyint2009-07-27T17:47:42Z2009-07-27T17:47:42Z<p>Here, there are two places you may be screwing,</p>
<ol>
<li>While reading (which inherently screws the next step)</li>
<li>While writing</li>
</ol>
<p>Check for the source file <strong>encoding</strong> (you may try <a href="http://www.flos-freeware.ch/notepad2.html" rel="nofollow">Notepad2</a> which has a status bar that shows the encoding) and use that while reading from source file.</p>
<p>After successfully reading the file, write with UTF-8 to preserve those characters in output file.</p>
http://stackoverflow.com/questions/1189478/domain-names-and-www/1189569#11895691Answer by huseyint for domain names and wwwhuseyint2009-07-27T17:35:36Z2009-07-27T17:35:36Z<p>See <a href="http://no-www.org/" rel="nofollow">no-www.org</a> for a great deal of explanations why www should not be used.</p>
http://stackoverflow.com/questions/1189384/wpf-pixels-to-desktop-pixels/1189533#11895331Answer by huseyint for WPF Pixels to desktop pixelshuseyint2009-07-27T17:29:54Z2009-07-27T17:29:54Z<p>How about built-in <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.visual.pointtoscreen.aspx" rel="nofollow">PointToScreen</a> and <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.visual.pointfromscreen.aspx" rel="nofollow">PointFromScreen</a> methods? Or am I missing something?</p>
http://stackoverflow.com/questions/104/anatomy-of-a-memory-leak29Anatomy of a "Memory Leak"huseyint2008-08-01T15:12:34Z2009-07-26T04:32:02Z
<p>In .NET perspective:</p>
<ul>
<li>What is a <a href="http://en.wikipedia.org/wiki/Memory%5Fleak" rel="nofollow">Memory Leak</a>?</li>
<li>How to understand whether your application leaks? What are the effects?</li>
<li>How to prevent a memory leak?</li>
<li>If your application has memory leak, does it go away when the process exits or killed? Or do memory leaks in your application affects other processes on the system even after process completion?</li>
<li>And what about unmanaged code accessed via COM Interop and/or P/Invoke?</li>
</ul>
<p>These are the questions that I have some answers myself but not complete. What do you think?</p>
http://stackoverflow.com/questions/1181336/how-to-send-a-wpf-window-to-the-back/1181764#11817641Answer by huseyint for How to send a WPF window to the back?huseyint2009-07-25T09:47:34Z2009-07-25T11:36:52Z<p>You can use the following code:</p>
<pre><code>[DllImport("user32.dll")]
static extern bool SetWindowPos(
IntPtr hWnd,
IntPtr hWndInsertAfter,
int X,
int Y,
int cx,
int cy,
uint uFlags);
const UInt32 SWP_NOSIZE = 0x0001;
const UInt32 SWP_NOMOVE = 0x0002;
static readonly IntPtr HWND_BOTTOM = new IntPtr(1);
static void SendWpfWindowBack(Window window)
{
var hWnd = new WindowInteropHelper(window).Handle;
SetWindowPos(hWnd, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOMOVE);
}
</code></pre>
<p>Source: <a href="http://www.aeroxp.org/board/lofiversion/index.php?t4983.html" rel="nofollow">http://www.aeroxp.org/board/lofiversion/index.php?t4983.html</a></p>
http://stackoverflow.com/questions/1176080/create-excel-file-in-java/1176083#11760839Answer by huseyint for Create Excel file in Javahuseyint2009-07-24T06:42:38Z2009-07-24T06:49:21Z<p>You can use <a href="http://poi.apache.org/" rel="nofollow">Apache POI</a> for creating native binary xls files.</p>
<p>Or you can use <a href="http://jexcelapi.sourceforge.net/" rel="nofollow">JExcelApi</a> which is another, and somewhat light-weight as far as I can remember, Java library for Excel.</p>
http://stackoverflow.com/questions/39/reliable-timer-in-a-console-application/45#452Answer by huseyint for Reliable Timer in a Console Applicationhuseyint2008-08-01T12:56:37Z2009-03-23T21:15:51Z<p>You can use something like Console.ReadLine() to block the main thread, so other background threads (like timer threads) will still work. You may also use an <a href="http://msdn.microsoft.com/en-us/library/system.threading.autoresetevent.aspx" rel="nofollow">AutoResetEvent</a> to block the execution, then (when you need to) you can call Set() method on that AutoResetEvent object to release the main thread. Also ensure that your reference to Timer object doesn't go out of scope and garbage collected.</p>
http://stackoverflow.com/questions/624172/library-for-simulating-http-transactions-like-a-browser-with-cookie-and-session-s1Library for simulating HTTP transactions like a browser with cookie and session supporthuseyint2009-03-08T19:46:28Z2009-03-08T20:45:07Z
<p>I wonder if there is a .NET library that mimics a browser in terms of HTTP transactions. In other words I am going to make multiple GET/POST requests and I want the cookies to be persisted to a storage, so that consecutive request will be identified by the remote host. AFAIK <a href="http://curl.haxx.se/" rel="nofollow">cURL</a> has support for this functionality.</p>
http://stackoverflow.com/questions/239567/decode-escaped-url-without-using-httputility-urldecode2Decode escaped Url without using HttpUtility.UrlDecodehuseyint2008-10-27T11:05:45Z2009-02-06T10:27:34Z
<p>Is there any function that converts an escaped Url string to its unescaped form? System.Web.HttpUtility.UrlDecode() can do that job but I don't want to add a reference to System.Web.dll. Since my app is not a web application, I don't want to add a dependency for only using a function in an assembly.</p>
<p><strong>UPDATE:</strong> Check <a href="http://www.west-wind.com/weblog/posts/617930.aspx" rel="nofollow">Rick Strahl's blog post</a> about the same issue.</p>
http://stackoverflow.com/questions/510709/tutorials-for-net-remoting/510725#5107254Answer by huseyint for Tutorials for .NET Remotinghuseyint2009-02-04T09:55:15Z2009-02-05T07:51:18Z<p>Check out one and only Ingo Rammer's <a href="http://www.thinktecture.com/resourcearchive" rel="nofollow">.NET Remoting FAQ</a>. The information maybe some outdated as .NET Remoting.</p>
<p>And here is a PowerPoint presentation called <a href="http://www.ilmservice.com/twincitiesnet/Presentations/RemotingIntro.ppt" rel="nofollow">Introduction to .NET Remoting</a> which helps you understand basic concepts behind remoting with figures/graphics.</p>
<p>Lastly here is the <a href="http://msdn.microsoft.com/en-us/library/z415cf9a(VS.80).aspx" rel="nofollow">Remoting Settings Schema</a> from MSDN if you frequently get lost (like me) in app.config files while configuring remoting.</p>
http://stackoverflow.com/questions/4/when-setting-a-forms-opacity-should-i-use-a-decimal-or-double/86#8614Answer by huseyint for When setting a form's opacity should I use a decimal or double?huseyint2008-08-01T14:23:28Z2009-01-23T12:04:27Z<p>A more generic answer for the generic question "Decimal vs Double?": Decimal for monetary calculations to preserve the precision, Double for scientific calculations that do not get affected by small differences. Since Double is a type which is native to the CPU (internal representation is stored in base 2), calculations made with Double perform better then Decimal (which is represented in base 10 internally).</p>
http://stackoverflow.com/questions/120022/tool-to-monitor-http-tcp-etc-web-service-traffic5Tool to monitor HTTP, TCP, etc. Web Service traffichuseyint2008-09-23T09:20:39Z2009-01-12T09:10:53Z
<p>What's the best tool that you use to monitor Web Service, SOAP, WCF, etc. traffic that's coming and going on the wire? I have seen some tools that made with Java but they seem to be a little crappy. What I want is a tool that sits in the middle as a proxy and does port redirection (which should have configurable listen/redirect ports). Are there any tools work on Windows to do this?</p>
http://stackoverflow.com/questions/406053/in-java-why-do-people-prepend-fields-with-this/406257#4062574Answer by huseyint for In Java, why do people prepend fields with `this`?huseyint2009-01-02T07:58:39Z2009-01-02T07:58:39Z<p>In .NET world the Microsoft StyleCop tool also has a rule called "Prefix Local Calls With This":</p>
<blockquote>
<p>A violation of this rule occurs whenever the code contains a call to an instance member of the local class or a base class which is not prefixed with ‘this.’. An exception to this rule occurs when there is a local override of a base class member, and the code intends to call the base class member directly, bypassing the local override. In this case the call can be prefixed with ‘base.’ rather than ‘this.’.</p>
<p>By default, StyleCop disallows the use of underscores or m_ to mark local class fields, in favor of the ‘this.’ prefix. The advantage of using ‘this.’ is that it applies equally to all element types including methods, properties, etc., and not just fields, making all calls to class members instantly recognizable, regardless of which editor is being used to view the code. Another advantage is that it creates a quick, recognizable differentiation between instance members and static members, which are not be prefixed.</p>
<p>A final advantage of using the ‘this.’ prefix is that typing this. will cause Visual Studio to show the IntelliSense popup, making it quick and easy for the developer to choose the class member to call.</p>
</blockquote>
<p>My suggestion is to choose a convention (use this. or not) and stick with that.</p>
http://stackoverflow.com/questions/386133/get-signatures-of-exported-functions-in-a-dll2Get signatures of exported functions in a DLLhuseyint2008-12-22T12:20:15Z2008-12-22T15:18:41Z
<p>Is it possible to get an exported (C style?) function's signature (parameter count/types, return type) from a DLL? I can view the list of function names, addresses, ordinals, etc. with <a href="http://www.nirsoft.net/utils/dll_export_viewer.html" rel="nofollow">DLL Export Viewer</a> but I can't view the signatures. I only have the dll file and don't have neither .h nor .def files.</p>
<p><strong>UPDATE:</strong> Using a tool called <a href="http://www.apimonitor.com/" rel="nofollow">API Monitor</a>, I can attach to a process that uses the mentioned dll and see the calls to the functions. This lets me to see the number of parameters, return value and their integer values (pointers?) but this doesn't help a lot. I probably should find a way to determine what type of structures those pointers are pointing to at the call time.</p>
http://stackoverflow.com/questions/97459/automatically-select-all-text-on-focus-in-winforms-textbox/385839#3858390Answer by huseyint for Automatically select all text on focus in WinForms TextBoxhuseyint2008-12-22T09:18:47Z2008-12-22T09:18:47Z<p>Have you tried <a href="http://social.msdn.microsoft.com/forums/en-US/winforms/thread/e0d183d7-5bfe-4e68-abbb-fba9fdd209fd/" rel="nofollow">the solution suggest on MSDN Forums</a> which simply subclasses TextBox.</p>
http://stackoverflow.com/questions/368926/how-do-i-determine-if-a-wpf-window-is-modal/369077#3690770Answer by huseyint for How do I determine if a WPF window is modal?huseyint2008-12-15T17:18:43Z2008-12-15T17:18:43Z<p>Using UI Automation in Windows, I have come up with something like this:</p>
<pre><code>void Window2_Loaded(object sender, RoutedEventArgs e)
{
var hwnd = new System.Windows.Interop.WindowInteropHelper(this).Handle;
var el = AutomationElement.FromHandle(hwnd);
Object oPattern = null;
if (el.TryGetCurrentPattern(WindowPattern.Pattern, out oPattern))
{
var pattern = oPattern as WindowPattern;
this.Title = pattern.Current.IsModal.ToString();
}
}
</code></pre>
<p>But this seems not working. There is an IsModal property <a href="http://msdn.microsoft.com/en-us/library/system.windows.automation.provider.iwindowprovider.ismodal.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.automation.provider.iwindowprovider.ismodal.aspx</a> there must be a proper way to get AutomationElement for the window and check whether IsModal property of it is true via Automation.</p>
http://stackoverflow.com/questions/368830/best-way-to-quickly-determine-whether-a-user-account-is-a-member-of-an-ad-group/368890#3688905Answer by huseyint for Best way to quickly determine whether a user account is a member of an AD group?huseyint2008-12-15T16:21:51Z2008-12-15T16:21:51Z<p>If you are on .NET 3.5 stack, <a href="http://msdn.microsoft.com/en-us/library/system.directoryservices.accountmanagement.aspx" rel="nofollow">System.DirectoryServices.AccountManagement.dll assembly</a> has a nice API on top of AD. The following method can be implemented to solve your issue:</p>
<pre><code>static bool IsUserMemberOf(string userName, string groupName)
{
using (var ctx = new PrincipalContext(ContextType.Domain))
using (var groupPrincipal = GroupPrincipal.FindByIdentity(ctx, groupName))
using (var userPrincipal = UserPrincipal.FindByIdentity(ctx, userName))
{
return userPrincipal.IsMemberOf(groupPrincipal);
}
}
// Usage:
bool result = IsUserMemberOf("CONTOSO\\john.doe", "CONTOSO\\Administrators");
</code></pre>
<p>I don't know how this method performs but it is a clean solution.</p>
http://stackoverflow.com/questions/345180/how-do-you-access-a-custom-net-dll-in-vbscript/345248#3452484Answer by huseyint for How do you access a custom .net dll in vbscript?huseyint2008-12-05T21:38:43Z2008-12-05T21:38:43Z<p>You can register that .NET dll with <a href="http://msdn.microsoft.com/en-us/library/tzat5yw6.aspx" rel="nofollow">regasm utility</a> by specifying /codebase parameter. This parameter is not encouraged to use with unsigned assemblies but it works when you can not put your assembly into GAC.</p>
<pre><code>regasm your.dll /codebase
</code></pre>
<p>Please note that you should not change your.dll's path after this operation since it inserts this path into the Windows registry.</p>
http://stackoverflow.com/questions/345178/question-about-createobject-in-vb6-vba/345184#34518411Answer by huseyint for Question about CreateObject() in VB6 / VBAhuseyint2008-12-05T21:22:02Z2008-12-05T21:27:22Z<p>It is the <a href="http://www.vbaccelerator.com/progid.htm" rel="nofollow">ProgID</a> of the component which is registered in Windows registry under HKCR key:</p>
<p>HKEY_CLASSES_ROOT\Scripting.FileSystemObject</p>
<p>ProgID's are human readable identifiers for COM objects. They point to the actual CLSIDs, which in this case is:</p>
<p>HKEY_CLASSES_ROOT\CLSID{0D43FE01-F093-11CF-8940-00A0C9054228}</p>
<p>This is the place where you can find the actual COM .dll that includes the implementation of the component.</p>
<p>In the first sample code you have provided you are doing an early-binding, and in the second one you are doing a late-binding.</p>
http://stackoverflow.com/questions/343968/reading-a-large-file-into-a-dictionary/344037#3440375Answer by huseyint for Reading a large file into a Dictionaryhuseyint2008-12-05T14:50:46Z2008-12-05T14:50:46Z<p>Maybe you can convert that 1 GB file into a SQLite database with two columns key and value. Then create an index on key column. After that you can query that database to get the values of the keys you provided.</p>
http://stackoverflow.com/questions/1196059/itextsharp-sending-in-memory-pdf-in-an-email-attachment/1196082#1196082Comment by huseyint on iTextSharp - Sending in-memory pdf in an email attachmenthuseyint2009-07-29T06:40:18Z2009-07-29T06:40:18ZYes, definitely brianng's answer is the right way to achieve this. Glad you solved it!http://stackoverflow.com/questions/1196186/what-might-be-causing-string-format-to-move-characters-around-unexpectedlyComment by huseyint on What might be causing String.Format to move characters around unexpectedly?huseyint2009-07-28T19:45:30Z2009-07-28T19:45:30ZIf you were doing C coding, there may be some reasons for this kind of behavior but in a Managed Memory environment, this is very strange...http://stackoverflow.com/questions/1196059/itextsharp-sending-in-memory-pdf-in-an-email-attachment/1196082#1196082Comment by huseyint on iTextSharp - Sending in-memory pdf in an email attachmenthuseyint2009-07-28T19:24:25Z2009-07-28T19:24:25ZDid you give "Creating a temp file" a try?http://stackoverflow.com/questions/1196059/itextsharp-sending-in-memory-pdf-in-an-email-attachment/1196082#1196082Comment by huseyint on iTextSharp - Sending in-memory pdf in an email attachmenthuseyint2009-07-28T19:13:29Z2009-07-28T19:13:29ZThen try memoryStream.Flush(); before setting the Positionhttp://stackoverflow.com/questions/1195896/c-threadstart-with-parameters/1195910#1195910Comment by huseyint on C# ThreadStart with parametershuseyint2009-07-28T18:48:13Z2009-07-28T18:48:13ZUse ParameterizedThreadStart to be able to pass parameters to that delegate when you call Start method. You are using a ThreadStart delegate which does not expect a method with a parameter in its signature, that is wrong in your case.http://stackoverflow.com/questions/1195778/read-extended-image-properties-in-c/1195807#1195807Comment by huseyint on Read extended image properties in c#huseyint2009-07-28T18:45:25Z2009-07-28T18:45:25ZIMO he means that not loading the actual image data, opening and reading metadata should be fine. Otherwise there are no ways inspect that file. The real perf bottleneck will be loading the image data, not the metadata.http://stackoverflow.com/questions/1195896/c-threadstart-with-parametersComment by huseyint on C# ThreadStart with parametershuseyint2009-07-28T18:40:28Z2009-07-28T18:40:28Z"varies widely" ??? how so?http://stackoverflow.com/questions/1181336/how-to-send-a-wpf-window-to-the-back/1181764#1181764Comment by huseyint on How to send a WPF window to the back?huseyint2009-07-28T14:56:37Z2009-07-28T14:56:37ZAdd using System.Runtime.InteropServices;http://stackoverflow.com/questions/1189384/wpf-pixels-to-desktop-pixels/1189533#1189533Comment by huseyint on WPF Pixels to desktop pixelshuseyint2009-07-27T17:38:29Z2009-07-27T17:38:29ZYou can always use Adapter Pattern to create wrappers from one type to another. See en.wikipedia.org/wiki/Adapter_patternhttp://stackoverflow.com/questions/1181336/how-to-send-a-wpf-window-to-the-back/1181764#1181764Comment by huseyint on How to send a WPF window to the back?huseyint2009-07-27T08:00:02Z2009-07-27T08:00:02ZSo, did my answer worked for you? Then please mark it as accepted.http://stackoverflow.com/questions/1176566/get-current-windows-user-name-within-silverlight/1178226#1178226Comment by huseyint on Get current Windows user name within Silverlighthuseyint2009-07-24T15:31:37Z2009-07-24T15:31:37ZActually we have initially go for a JavaScript solution, and it worked. But it requires the user to accept a bunch of security dialogs which is far from ideal.http://stackoverflow.com/questions/1176566/get-current-windows-user-name-within-silverlight/1176830#1176830Comment by huseyint on Get current Windows user name within Silverlighthuseyint2009-07-24T11:29:08Z2009-07-24T11:29:08ZNice answer! I will probably (and unfortunately) mark this answer as accepted if there won't be any creative answer (hack?)http://stackoverflow.com/questions/39/reliable-timer-in-a-console-application/45#45Comment by huseyint on Reliable Timer in a Console Applicationhuseyint2009-03-23T21:16:07Z2009-03-23T21:16:07Zyeah, thanks, fixed :)http://stackoverflow.com/questions/440163/textboxemployeename-vs-employeenametextbox/440528#440528Comment by huseyint on textBoxEmployeeName vs employeeNameTextBoxhuseyint2009-01-14T13:54:42Z2009-01-14T13:54:42Z"Hungarian notation" is discouraged in this day and age. See reasons at <a href="http://en.wikipedia.org/wiki/Hungarian_notation" rel="nofollow">en.wikipedia.org/wiki/Hungarian_notation</a>http://stackoverflow.com/questions/399713/wpf-why-listbox-items-do-not-fill-uniformgridComment by huseyint on WPF - Why Listbox items do not fill uniformgridhuseyint2008-12-30T08:13:29Z2008-12-30T08:13:29ZCan you provide a sample XAML?