User dbkk - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T22:42:00Zhttp://stackoverflow.com/feeds/user/838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1360944/winforms-force-gui-update-from-ui-thread1WinForms: force GUI update from UI Threaddbkk2009-09-01T07:00:57Z2009-12-04T07:03:35Z
<p>In WinForms, how do I force an immediate UI update from UI thread? </p>
<p>What I'm doing is roughly:</p>
<pre><code>label.Text = "Please Wait..."
try
{
SomewhatLongRunningOperation();
}
catch(Exception e)
{
label.Text = "Error: " + e.Message;
return;
}
label.Text = "Success!";
</code></pre>
<p>Label text does not get set to "Please Wait..." before the operation.</p>
<p>I solved this using another thread for the operation, but it gets hairy and I'd like to simplify the code.</p>
http://stackoverflow.com/questions/1802774/c-drag-drop-controls-on-surface/1802797#18027971Answer by dbkk for C#: Drag drop controls on surfacedbkk2009-11-26T10:14:07Z2009-11-26T10:14:07Z<p>If your control is moving within one container (e.g. panel), you can override OnMouseDown / OnMouseMove events, and adjust the Location property of the control. </p>
<p>Based on your question, it does not seem that you need full drag-and-drop (moving data between different controls or even applications).</p>
http://stackoverflow.com/questions/1732671/how-to-get-instance-from-string-in-c/1733916#17339161Answer by dbkk for How to get instance from string in C#?dbkk2009-11-14T10:40:00Z2009-11-14T10:40:00Z<p>If the given control is an instance variable on your form (if you used the built-in WinForms designer, most are), first get the control, and then set the property on it:</p>
<pre><code> void Form_SetControlProperty(
String controlName, String propertyName, object value)
{
FieldInfo controlField = this.GetType().GetField(controlName,
BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public);
object control = controlField.GetValue(this);
PropertyInfo property = control.GetType().GetProperty(propertyName);
property.SetValue(control, value, new object[0]);
}
</code></pre>
<p>You may need to tweak <code>BindingFlags</code> to get this to work.</p>
<p>This must be a method on your form. Call it as:
SetControlProperty("myLabel", "Text", "my label text");</p>
<p>Pay attention to the scope of the method. It any control within the form, but not the form itself (to access the form itself, set <code>control</code> to <code>this</code>).</p>
<p>Note that this uses reflection and will be slow and brittle (change the name of a control and it will break).</p>
http://stackoverflow.com/questions/1674237/how-can-i-fire-event-before-item-is-added-to-collection-in-c/1674788#16747883Answer by dbkk for How can I fire event before item is added to collection in C#?dbkk2009-11-04T16:02:22Z2009-11-04T16:02:22Z<p>You should override the protected <code>BindingList.InsertItem</code> method (<a href="http://msdn.microsoft.com/en-us/library/ms132696.aspx" rel="nofollow">MSDN</a>). <code>Add</code>, <code>Insert</code> and such all call this to do the actual adding adding and raise appropriate events. Raise your event, and then call <code>base.InsertItem</code> to do the rest.</p>
http://stackoverflow.com/questions/813356/determine-where-activation-is-going-when-a-form-is-deactivated/1657259#16572590Answer by dbkk for Determine Where Activation Is Going When A Form Is Deactivateddbkk2009-11-01T14:13:13Z2009-11-01T14:13:13Z<p>I'm having the same issue when implementing an autocomplete popup window (similar to Intellisense window in VS).</p>
<p>Problem with the <code>WndProc</code> approach is that code must be added to any form that happens to host the popup. </p>
<p>Alternative approach is to use a timer and check Form.ActiveControl after a brief interval. This way, code is encapsulated better, <strong>within the editor control or the popup form</strong>.</p>
<pre><code>Form _txPopup;
// Subscribe whenever convenient
public void IntializeControlWithPopup(Form _hostForm)
{
_hostForm.Deactivate + OnHostFormDeactivate;
}
Timer _deactivateTimer;
Form _hostForm;
void OnHostFormDeactivate(object sender, EventArgs e)
{
if (_deactivateTimer == null)
{
_mainForm = sender as Form;
_deactivateTimer = new Timer();
_deactivateTimer.Interval = 10;
_deactivateTimer.Tick += DeactivateTimerTick;
}
_deactivateTimer.Start();
}
void DeactivateTimerTick(object sender, EventArgs e)
{
_deactivateTimer.Stop();
Form activeForm = Form.ActiveForm;
if (_txPopup != null &&
activeForm != _txPopup &&
activeForm != _mainForm)
{
_txPopup.Hide();
}
}
</code></pre>
http://stackoverflow.com/questions/15828/reading-excel-files-from-c22Reading Excel files from C#dbkk2008-08-19T07:23:46Z2009-10-15T14:50:50Z
<p>Is there a free or open source library to read Excel files (.xls) directly from a C# program? </p>
<p>It does not need to be too fancy, just to select a worksheet and read the data as strings. So far, I've been using Export to Unicode text function of Excel, and parsing the resulting (tab-delimited) file, but I'd like to eliminate the manual step.</p>
http://stackoverflow.com/questions/1570547/you-are-not-so-tough-without-your-car-fastest-lookup-list/1570820#15708200Answer by dbkk for You are not so tough without your car. Fastest lookup list.dbkk2009-10-15T07:32:44Z2009-10-15T07:32:44Z<p>Several solutions:</p>
<ol>
<li>Keep 2 lists in sync, do a linear search. Works well unless your collections are very large, or you're searching repeatedly. </li>
<li>Two hashtables. Writing your own is fairly easy -- it is just a fixed array of buckets (each bucket can be an ArrayList). Map an item to a bucket by doing <code>object.GetHashCode() % numBuckets</code>. </li>
<li>Two arrays the size of the range of values. If your numbers are in a fixed range, allocate an array the size of the range, with elements being items from the other group. Super quick and easy, but uses a lot of memory.</li>
</ol>
http://stackoverflow.com/questions/1542562/are-net-exes-real-executables/1542576#15425764Answer by dbkk for Are .net exes real executables?dbkk2009-10-09T08:33:46Z2009-10-09T08:33:46Z<p>.Net executables contain MSIL (Microsoft Intermediate Language) byte code, similar to Java bytecode. They are not native Intel32 code and cannot run without the .Net framework installed. Apart from MSIL there is a substantial amount of metadata included. You can use Ildasm or Reflector to look into the .Net executables.</p>
<p>Technically, they not interpreted, but JIT (Just-In-Time) compiled to machine code. There is a way to compile them to native code, NGen.exe utility. Sometimes, JIT code can be faster than NGen since it can do runtime analysis.</p>
http://stackoverflow.com/questions/1356051/read-password-protected-excel-file-using-oledb-in-c/1530341#15303410Answer by dbkk for Read password protected excel file using OLEDB in C#dbkk2009-10-07T08:47:43Z2009-10-07T08:47:43Z<p>You can use <a href="http://code.google.com/p/ooxmlcrypto/" rel="nofollow">OoXmlCrypto stream</a> to access Office 2007 encrypted files. Open source, includes modified ExcelPackage.</p>
<p>Sample code:</p>
<pre><code>using (OfficeCryptoStream stream = OfficeCryptoStream.Open("a.xlsx", "password"))
{
// Do stuff (e.g. create System.IO.Packaging.Package or
// ExcelPackage from the stream, make changes and save)
// Change the password (optional)
stream.Password = "newPassword";
// Encrypt and save the file
stream.Save();
}
</code></pre>
http://stackoverflow.com/questions/1502781/read-write-excel-2007-password-protected-documents0Read/write Excel 2007 password-protected documentsdbkk2009-10-01T08:58:30Z2009-10-07T08:43:46Z
<p>What method does Office 2007 use for encryption (when choosing Encrypt and setting a password from Office menu)?</p>
<p>My C# app needs to create and read encrypted Excel 2007 files (.xlsx). It is important that these files remain accessible from Excel, so I must use Microsoft's encryption method, can't brew my own.</p>
<p>Normal Excel 2007 file is a ZIP-compressed file, and I'm accessing it using <a href="http://excelpackage.codeplex.com" rel="nofollow">ExcelPackage</a>, which internally uses * System.Io.Packaging.Package* (part of .net 3.0).</p>
<p>However, the encryption in Office is <strong>not</strong> the standard ZIP encryption. The Package class seems not to support encryption, and reports a corrupted file. 7Zip opens the file (with no password provided) and shows a few binary files inside. </p>
http://stackoverflow.com/questions/1502781/read-write-excel-2007-password-protected-documents/1505836#15058360Answer by dbkk for Read/write Excel 2007 password-protected documentsdbkk2009-10-01T19:03:40Z2009-10-07T08:43:46Z<p>Based on several open source bits and pieces, I created a <a href="http://code.google.com/p/ooxmlcrypto/" rel="nofollow">OoXmlCrypto stream</a> wrapper to access Office 2007 encrypted files easily. </p>
<p>This is based on a <a href="http://www.lyquidity.com/devblog/?p=35" rel="nofollow">blog post</a> with <a href="http://www.lyquidity.com/devblog/wp-content/uploads/2008/12/ooxmlcrypto1.zip" rel="nofollow">source code</a> which does OOXML encryption/decryption. </p>
http://stackoverflow.com/questions/858232/office-open-xml-ooxml-specification-encryption/1505903#15059030Answer by dbkk for Office Open XML (OOXML) Specification: Encryptiondbkk2009-10-01T19:15:33Z2009-10-07T08:42:30Z<p>I created a <a href="http://code.google.com/p/ooxmlcrypto/" rel="nofollow">OoXmlCrypto stream</a> wrapper, connecting several open source bits and pieces to access Office 2007 encrypted files easily. </p>
<p>This <a href="http://stackoverflow.com/questions/1502781/read-write-excel-2007-password-protected-documents/1505836#1505836">answer</a> might be helpful.</p>
<p>Turns out [6]DataSpaces is ignored, but other two parts are used. The encrypted XLSX file is not really zipped, it's an OLE compound container. If you take out the parts, and zip them using 7zip, Excel does not open it.</p>
http://stackoverflow.com/questions/1259561/encrypt-sqlite-database-in-c1Encrypt SQLite database in C#dbkk2009-08-11T10:35:57Z2009-10-06T05:35:18Z
<p>What is the best approach to encrypting a SQLite database file in .Net/C#? I'm using <a href="http://sourceforge.net/projects/sqlite-dotnet2" rel="nofollow">sqlite-dotnet2</a> wrapper.</p>
<p>There are tools like <a href="http://www.hwaci.com/sw/sqlite/see.html" rel="nofollow">SQLite Encryption Extension</a> and <a href="http://sqlite-crypt.com/" rel="nofollow">SQLite Crypt</a>, but both are non-free, while my project is under GPL. </p>
<p>The naive approach I thought of using was to let SQLite handle a temporary file, then to encrypt it on program exit, and overwrite (zero-out) the original. The obvious drawback is that if program crashes (and while it is running), the plain text DB is accessible.</p>
<p>Is there a better way to approach this? Can I pass an encrypted stream to the wrapper (instead of using SQLiteConnection.CreateFile) ?</p>
<p>[edit] Maybe I am overthinking this. Is is sufficient to use Password option in the connection string? Would the file be encrypted properly in that case (or is it some weaker protection)?</p>
http://stackoverflow.com/questions/15828/reading-excel-files-from-c/1501792#15017920Answer by dbkk for Reading Excel files from C#dbkk2009-10-01T03:44:08Z2009-10-01T03:44:08Z<p><a href="http://excelpackage.codeplex.com/" rel="nofollow">Excel Package</a> is an open-source (GPL) component for reading/writing Excel 2007 files. I used it on a small project, and the API is straightforward. Works with XLSX only (Excel 200&), not with XLS.</p>
<p>The source code also seems well-organized and easy to get around (if you need to expand functionality or fix minor issues as I did).</p>
<p>At first, I tried the ADO.Net (Excel connection string) approach, but it was fraught with nasty hacks -- for instance if <em>second</em> row contains a number, it will return ints for all fields in the column below and quietly drop any data that doesn't fit.</p>
http://stackoverflow.com/questions/725190/export-to-xlsx/1501783#15017830Answer by dbkk for Export to .xlsxdbkk2009-10-01T03:39:58Z2009-10-01T03:39:58Z<p><a href="http://excelpackage.codeplex.com/" rel="nofollow">Excel Package</a> is an open-source (GPL) component for reading/writing Excel 2007 files. I used it on a small project, and the API is straightforward. </p>
<p>The source code also seems well-organized and easy to get around (if you need to expand functionality or fix minor issues as I did).</p>
<p>You can use either approach (customizing a template or creating everything from scratch). Customizing is much easier if you want the result to look nice.</p>
http://stackoverflow.com/questions/1453732/referencing-an-uncompiled-c-class/1453813#14538131Answer by dbkk for referencing an uncompiled c# classdbkk2009-09-21T10:23:07Z2009-09-21T10:30:41Z<p>You didn't ask about compiling, so I assume you just want to instantiate the class and use it.</p>
<p>You should make the class implement an interface covering the functionality you need, and then you can instantiate it using the <a href="http://msdn.microsoft.com/en-us/library/system.activator%5Fmethods.aspx" rel="nofollow">Activator class</a>:</p>
<pre><code>ObjectHandle fooHandle = Activator.CreateInstanceFrom(
@"C:\somePath\FooAssembly.dll", "FooNamespace.Foo");
IFoo foo = (IFoo)fooHandle.Unwrap();
</code></pre>
<p>The class should have a default constructor. When loading assemblies by name as above, consider security implications.</p>
http://stackoverflow.com/questions/621577/clipboard-event-c/1394225#13942252Answer by dbkk for Clipboard event C#dbkk2009-09-08T14:05:02Z2009-09-08T14:12:43Z<p>For completeness, here's the control I'm using in production code. Just drag from the designer and double click to create the event handler.</p>
<pre><code>using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Drawing;
namespace ClipboardAssist {
// Must inherit Control, not Component, in order to have Handle
[DefaultEvent("ClipboardChanged")]
public partial class ClipboardMonitor : Control
{
IntPtr nextClipboardViewer;
public ClipboardMonitor()
{
this.BackColor = Color.Red;
this.Visible = false;
nextClipboardViewer = (IntPtr)SetClipboardViewer((int)this.Handle);
}
/// <summary>
/// Clipboard contents changed.
/// </summary>
public EventHandler<ClipboardChangedEventArgs> ClipboardChanged;
protected override void Dispose(bool disposing)
{
ChangeClipboardChain(this.Handle, nextClipboardViewer);
}
[DllImport("User32.dll")]
protected static extern int SetClipboardViewer(int hWndNewViewer);
[DllImport("User32.dll", CharSet = CharSet.Auto)]
public static extern bool ChangeClipboardChain(IntPtr hWndRemove, IntPtr hWndNewNext);
[DllImport("user32.dll", CharSet = CharSet.Auto)]
public static extern int SendMessage(IntPtr hwnd, int wMsg, IntPtr wParam, IntPtr lParam);
protected override void WndProc(ref System.Windows.Forms.Message m)
{
// defined in winuser.h
const int WM_DRAWCLIPBOARD = 0x308;
const int WM_CHANGECBCHAIN = 0x030D;
switch (m.Msg)
{
case WM_DRAWCLIPBOARD:
OnClipboardChanged();
SendMessage(nextClipboardViewer, m.Msg, m.WParam, m.LParam);
break;
case WM_CHANGECBCHAIN:
if (m.WParam == nextClipboardViewer)
nextClipboardViewer = m.LParam;
else
SendMessage(nextClipboardViewer, m.Msg, m.WParam, m.LParam);
break;
default:
base.WndProc(ref m);
break;
}
}
void OnClipboardChanged()
{
try
{
IDataObject iData = Clipboard.GetDataObject();
if (ClipboardChanged != null)
{
ClipboardChanged(this, new ClipboardChangedEventArgs(iData));
}
}
catch (Exception e)
{
// Swallow or pop-up, not sure
// Trace.Write(e.ToString());
MessageBox.Show(e.ToString());
}
}
}
public class ClipboardChangedEventArgs : EventArgs
{
public readonly IDataObject DataObject;
public ClipboardChangedEventArgs(IDataObject dataObject)
{
DataObject = dataObject;
}
}
}
</code></pre>
http://stackoverflow.com/questions/484278/log-off-user-from-win-xp-programmatically-in-c11Log off user from Win XP programmatically in C#dbkk2009-01-27T17:10:45Z2009-08-26T18:28:28Z
<p>How do I initiate a Windows XP user Log Off from a C# app? The action of my app should produce the same result as clicking "Log Off" in XP start menu -- it's fine if the system asks for a confirmation.</p>
<p>Is there a .Net or an unmanaged API for this?</p>
http://stackoverflow.com/questions/484278/log-off-user-from-win-xp-programmatically-in-c/1336633#13366330Answer by dbkk for Log off user from Win XP programmatically in C#dbkk2009-08-26T18:28:28Z2009-08-26T18:28:28Z<p>For completeness, the simplest way I found is to call Shutdown.exe (included with Windows).</p>
<pre><code>Process.Start("shutdown.exe", "-l -t 0");
</code></pre>
<p>This is the answer Cerebrus suggested, just in C# form.</p>
http://stackoverflow.com/questions/1225689/watch-dog-or-sandbox-system-in-c/1225738#12257381Answer by dbkk for "Watch Dog" or sandbox system in c#dbkk2009-08-04T04:31:59Z2009-08-04T04:31:59Z<p>Why would the function not quit? What result does it produce? </p>
<p>My first try would be to make the code tight enough and handling all the "stuck" cases so you don't need a watchdog -- if you're waiting on resources to be released, put timeouts on the waits, and handle exceptions appropriately.</p>
<p>Short of this, I'd try to spawn an out-of-process watchdog, doing Process.Kill as necessary. This is more effective than Thread.Abort -- if you're going for the brutal solution way, why not go all the way?</p>
http://stackoverflow.com/questions/35002/does-c-have-a-way-of-giving-me-an-immutable-dictionary/35666#3566618Answer by dbkk for Does C# have a way of giving me an immutable Dictionary?dbkk2008-08-30T03:56:02Z2009-07-08T22:00:52Z<p>No, but a wrapper is rather trivial:</p>
<pre><code>public class ReadOnlyDictionary<TKey, TValue> : IDictionary<TKey, TValue>
{
IDictionary<TKey, TValue> _dict;
public ReadOnlyDictionary(IDictionary<TKey, TValue> backingDict)
{
_dict = backingDict;
}
public void Add(TKey key, TValue value)
{
throw new InvalidOperationException();
}
public bool ContainsKey(TKey key)
{
return _dict.ContainsKey(key);
}
public ICollection<TKey> Keys
{
get { return _dict.Keys; }
}
public bool Remove(TKey key)
{
throw new InvalidOperationException();
}
public bool TryGetValue(TKey key, out TValue value)
{
return _dict.TryGetValue(key, out value);
}
public ICollection<TValue> Values
{
get { return _dict.Values; }
}
public TValue this[TKey key]
{
get { return _dict[key]; }
set { throw new InvalidOperationException(); }
}
public void Add(KeyValuePair<TKey, TValue> item)
{
throw new InvalidOperationException();
}
public void Clear()
{
throw new InvalidOperationException();
}
public bool Contains(KeyValuePair<TKey, TValue> item)
{
return _dict.Contains(item);
}
public void CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
{
_dict.CopyTo(array, arrayIndex);
}
public int Count
{
get { return _dict.Count; }
}
public bool IsReadOnly
{
get { return true; }
}
public bool Remove(KeyValuePair<TKey, TValue> item)
{
throw new InvalidOperationException();
}
public IEnumerator<KeyValuePair<TKey, TValue>> GetEnumerator()
{
return _dict.GetEnumerator();
}
System.Collections.IEnumerator
System.Collections.IEnumerable.GetEnumerator()
{
return ((System.Collections.IEnumerable)_dict).GetEnumerator();
}
}
</code></pre>
<p>Obviously, you can change the this[] setter above if you want to allow modifying values. </p>
http://stackoverflow.com/questions/1065900/function-naming-actionifcondition2Function naming: ActionIfCondition()dbkk2009-06-30T20:35:55Z2009-07-01T13:06:38Z
<p>I often need to use a function which performs and action X is condition Y is set. What is the best way to name such a function? </p>
<p>I don't want to repeat <em>if</em> statements, since they could be complex.</p>
<p>For instance, if I want to trim a string if a property is set, function could be named:</p>
<ul>
<li><strong>void TrimIfOptionSet(string)</strong> -- too unwieldy, especially if condition is complex</li>
<li><strong>bool TryTrim(string)</strong> -- does not mention an external condition, I'd expect it to only take the argument into account.</li>
<li><strong>void ConditionalTrim(string)</strong> -- bit verbose</li>
</ul>
<p>Are there any conventions for this situation in C#/.Net, or any similar language?</p>
http://stackoverflow.com/questions/866816/dynamically-create-tests-in-nunit/866832#8668322Answer by dbkk for Dynamically create tests in NUnitdbkk2009-05-15T03:18:14Z2009-05-15T03:18:14Z<p>Try the <a href="http://code.google.com/p/nunit-extension-datadriven/" rel="nofollow">data driven test cases</a> NUnit extension.</p>
http://stackoverflow.com/questions/626037/variable-height-rows-in-winforms-listview3Variable height rows in WinForms ListViewdbkk2009-03-09T12:33:41Z2009-05-13T06:42:04Z
<p>Is it possible to have variable-height rows within a WinForms ListView in Details mode?</p>
<p>There is no RowHeight or Rows[i].Height property on the control as far as I know.</p>
<p>Some blogs suggests implementing OwnerDraw, which I did, but I still can't find anything resembling height property from within the event handlers. </p>
<p>Ideally, the row height would auto-size to show multiline text when needed.</p>
http://stackoverflow.com/questions/836786/reserve-screen-area-in-windows-7/836840#8368402Answer by dbkk for Reserve screen area in Windows 7dbkk2009-05-07T20:23:19Z2009-05-07T20:23:57Z<p>I feel silly answering my own question, but thanks to Michael's hint, I found an appropriate <a href="http://www.google.com/search?hl=en&q=SPI%5FSETWORKAREA%2BC%23&btnG=Google%2BSearch&aq=f&oq=" rel="nofollow">C# code sample</a>. </p>
<pre><code>using System;
using System.Runtime.InteropServices;
public class WorkArea
{
[System.Runtime.InteropServices.DllImport("user32.dll", EntryPoint="SystemParametersInfoA")]
private static extern Int32 SystemParametersInfo(Int32 uAction, Int32 uParam, IntPtr lpvParam, Int32 fuWinIni);
private const Int32 SPI_SETWORKAREA = 47;
public WorkArea(Int32 Left,Int32 Right,Int32 Top,Int32 Bottom)
{
_WorkArea.Left = Left;
_WorkArea.Top = Top;
_WorkArea.Bottom = Bottom;
_WorkArea.Right = Right;
}
public struct RECT
{
public Int32 Left;
public Int32 Right;
public Int32 Top;
public Int32 Bottom;
}
private RECT _WorkArea;
public void SetWorkingArea()
{
IntPtr ptr = IntPtr.Zero;
ptr = Marshal.AllocHGlobal(Marshal.SizeOf(_WorkArea));
Marshal.StructureToPtr(_WorkArea,ptr,false);
int i = SystemParametersInfo(SPI_SETWORKAREA,0,ptr,0);
}
}
</code></pre>
http://stackoverflow.com/questions/836786/reserve-screen-area-in-windows-73Reserve screen area in Windows 7dbkk2009-05-07T20:11:27Z2009-05-07T20:23:19Z
<p>Is it possible to reserve a screen area near an edge of the screen for your app in Windows 7? It would behave similar to the Windows taskbar (i.e. maximized windows would not overlap with it).</p>
<p>I'm writing a taskbar app with proper support for multiple monitors. The primary purpose is to show a taskbar on each screen containing only the apps on that screen. None of the existing solutions (<a href="http://www.realtimesoft.com/ultramon/" rel="nofollow">Ulltramon</a>, <a href="http://www.binaryfortress.com/displayfusion/" rel="nofollow">DisplayFusion</a>) I know of work for Win 7, and none are open source.</p>
<p>C# code would be nice, but any hints are appreciated as well. </p>
http://stackoverflow.com/questions/797530/c-is-it-possible-to-mark-overriden-method-as-final9C# - is it possible to mark overriden method as finaldbkk2009-04-28T12:02:53Z2009-04-28T12:11:44Z
<p>In C#, is it possible to mark an overridden virtual method as final so implementers cannot override it? How would I do it?</p>
<p>An example may make it easier to understand:</p>
<pre><code>class A
{
abstract void DoAction();
}
class B : A
{
override void DoAction()
{
// Implements action in a way that it doesn't make
// sense for children to override, e.g. by setting private state
// later operations depend on
}
}
class C: B
{
// This would be a bug
override void DoAction() { }
}
</code></pre>
<p>Is there a way to modify B in order to prevent other children C from overriding DoAction, either at compile-time or runtime?</p>
http://stackoverflow.com/questions/788535/eric-lipperts-challenge-comma-quibbling-best-answer/789603#7896036Answer by dbkk for Eric Lippert's challenge "comma-quibbling", best answer?dbkk2009-04-25T19:52:20Z2009-04-25T20:05:34Z<p>Inefficient, but I think clear.</p>
<pre><code>public static string CommaQuibbling(IEnumerable<string> items)
{
List<String> list = new List<string>(items);
if (list.Count == 0) { return "{}"; }
if (list.Count == 1) { return "{" + list[0] + "}"; }
String[] initial = list.GetRange(0, list.Count - 1).ToArray();
return "{" + String.Join(", ", initial) + " and " + list[list.Count - 1] + "}";
}
</code></pre>
<p>If I was maintaining the code, I'd prefer this to more clever versions.</p>
http://stackoverflow.com/questions/35662/best-practices-when-going-dark-or-going-solo/35682#356821Answer by dbkk for Best practices when "going dark" (or going solo)dbkk2008-08-30T04:21:27Z2009-04-21T16:49:28Z<p>I've worked as an only developer on a big project (about a year later other people joined). I find that it's helpful to follow most of the usual practices (as you'd do with a team), and not rely on keeping things in your brain:</p>
<ul>
<li>Use source control, no excuses.</li>
<li>Write a basic and brief functional spec and review it with your business partner. (I find a Wiki is good for this, since it's easy to edit and share). It helps to have a clear vision of what you're trying to create, rather than just pile on ideas.</li>
<li>Break down the work into several high-level items. Fill out lower-level subitems as soon as they're clear. </li>
<li>Use a bug database for work items as well as defects. You can use it to prioritize features.</li>
<li>QA: Do as much dev/unit testing as you consider efficient, but do have someone external (maybe your business partner/wife, doesn't need to be a developer) to act as an independent tester. Functional spec that you wrote/reviewed together will come in handy here, so they know how things are supposed to work. You'd be surprised at bugs devs miss (we rarely look beyond our own assumptions).</li>
<li>Plan to have a rudimentary / testable version working after a month or two, and then add features. Small, achievable milestones help.</li>
</ul>
http://stackoverflow.com/questions/764879/is-file-export-always-redundant-when-you-have-file-save-as/764888#76488810Answer by dbkk for Is File >> Export always redundant when you have File >> Save As...?dbkk2009-04-19T05:29:20Z2009-04-19T06:02:36Z<p>No it is not redundant.</p>
<p>"Save" should be the primary way to save files in formats that don't cause a significant loss / degradation of data. </p>
<p>I would use "Export" for file formats where major loss of fidelity or information is expected (for example, exporting a spreadsheet to txt or csv). </p>
<p>Looking at the inverse operations ("Open" vs. "Import") may be useful -- I think "Open" should be able to immediately read a file, while "Import" may require specifying extra options for parsing it (e.g. marking columns or delimiters to use when getting a table from a txt file).</p>
<p>Export/Import may also imply partial/incomplete support for a format. When I use Save/Open, I'd expect to be able to use the format as the native one, with no loss of data ever.</p>
http://stackoverflow.com/questions/1739930/icons-on-titlebar/1739954#1739954Comment by dbkk on Icons on Titlebardbkk2009-11-16T03:54:53Z2009-11-16T03:54:53Z... and no support for Ribbon or icons on the taskbar that the question is about.http://stackoverflow.com/questions/1732671/how-to-get-instance-from-string-in-c/1733916#1733916Comment by dbkk on How to get instance from string in C#?dbkk2009-11-14T20:00:09Z2009-11-14T20:00:09ZIf you do run into performance problems, it might be worth caching the PropertyInfo (say, in a Dictionary indexed by controlName.propertyName). Not sure how much it would help, depends on your usage pattern.http://stackoverflow.com/questions/813356/determine-where-activation-is-going-when-a-form-is-deactivated/1657259#1657259Comment by dbkk on Determine Where Activation Is Going When A Form Is Deactivateddbkk2009-11-14T19:57:02Z2009-11-14T19:57:02Z@Zach. I agree timers could be fragile. Your intercept trick is great, didn't know that was possible.http://stackoverflow.com/questions/813356/determine-where-activation-is-going-when-a-form-is-deactivated/813720#813720Comment by dbkk on Determine Where Activation Is Going When A Form Is Deactivateddbkk2009-11-14T19:55:53Z2009-11-14T19:55:53ZThe intercept trick is really cool.http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-0Comment by dbkk on Best way to reverse a string in C# 2.0dbkk2009-11-14T10:46:52Z2009-11-14T10:46:52ZSurprisingly tricky if you want proper international support. Example: Croatian/Serbian have two-character letters lj, nj etc. Proper reverse of "ljudi" is "idulj", NOT "idujl". I'm sure you'd fare far worse when it comes to Arabic, Thai etc.http://stackoverflow.com/questions/533604/handling-enums-in-json/543275#543275Comment by dbkk on Handling enums in JSONdbkk2009-11-07T04:27:20Z2009-11-07T04:27:20ZThe wrapper <code>is Nullable<T></code>, replace <code>MyEnum</code> with <code>MyEnum?</code>.http://stackoverflow.com/questions/1683029/return-zero-for-negative-integersComment by dbkk on Return zero for negative integersdbkk2009-11-06T04:06:34Z2009-11-06T04:06:34ZBit wise, byte foolish.http://stackoverflow.com/questions/1668870/suggest-a-good-method-for-having-a-number-with-high-precision-in-c/1668902#1668902Comment by dbkk on Suggest a good method for having a number with high precision in C#dbkk2009-11-03T18:25:39Z2009-11-03T18:25:39ZIf encryption is the goal why not use tried-and-tested .Net API? Rolling your own encryption rarely works out well (and you're likely not to know you failed). Is it steganography perhaps?http://stackoverflow.com/questions/1648797/how-can-i-create-neural-networks-in-cComment by dbkk on How can i create neural networks in c#?dbkk2009-10-30T09:36:03Z2009-10-30T09:36:03Z"Anybody help me with broad area X" is not a great question. Please be more specific with phrasing. http://stackoverflow.com/questions/1613781/visual-studio-2010-beta-2-installation-probComment by dbkk on Visual Studio 2010 Beta 2 Installation Probdbkk2009-10-30T04:42:37Z2009-10-30T04:42:37ZI couldn't even install Beta2. I uninstalled Beta1, but Beta2 still complains it is installed...http://stackoverflow.com/questions/1419263/using-autocomplete-in-a-datagridview-causes-a-crash-when-editingComment by dbkk on Using AutoComplete in a DataGridView causes a crash when editing?dbkk2009-10-13T18:43:37Z2009-10-13T18:43:37ZYou're not getting an answer since it does not seem you have gone through customary debugging steps. Can you catch a specific exception (check Debug >> Exceptions >> Common Language Runtime >> Thrown)? Can you step through the code and see which line triggers the crash?http://stackoverflow.com/questions/1535397/boolean-code-clarity-which-style-to-use/1535562#1535562Comment by dbkk on Boolean Code Clarity - which style to use?dbkk2009-10-08T04:13:24Z2009-10-08T04:13:24ZI agree with you. The ability to implicitly evaluate an number/pointer to a boolean is a flaw in C/C++. It sucks that "if (ptr)" means "if (ptr != NULL" and "if (num)" means "if (num != 0)". However, plenty of legacy code relies on it, so it can't be ignored.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234170#234170Comment by dbkk on What is your best programmer joke?dbkk2009-10-04T11:33:57Z2009-10-04T11:33:57ZIt's not only called "bug" in the USA. <a href="http://en.wikipedia.org/wiki/Volkswagen_Beetle#Names_for_the_Type_1" rel="nofollow">en.wikipedia.org/wiki/…</a>http://stackoverflow.com/questions/580443/svn-one-working-copy-two-repositoriesComment by dbkk on SVN: one working copy, two repositories?dbkk2009-10-01T19:24:08Z2009-10-01T19:24:08ZThis is useful for open source projects when submitting a patch, but not wanting to wait for it to be a approved before building another one.http://stackoverflow.com/questions/1064203/how-do-you-open-encrypted-ooxml-document-in-cComment by dbkk on How do you open encrypted OOXML document in C#?dbkk2009-10-01T19:12:36Z2009-10-01T19:12:36ZSimilar question:
<a href="http://stackoverflow.com/questions/1502781/read-write-excel-2007-password-protected-documents" rel="nofollow" title="read write excel 2007 password protected documents">stackoverflow.com/questions/1502781/…</a>