dbkk

1,865
Reputation
165 views

Registered User

Name dbkk
Member for 1 year
Seen yesterday
Website
Location TH
Age 28
Nov
26
answered C#: Drag drop controls on surface
Nov
22
awarded  Famous Question
Nov
16
accepted Read/write Excel 2007 password-protected documents
Nov
16
awarded  Popular Question
Nov
14
comment How to get instance from string in C#?
If 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.
Nov
14
comment Determine Where Activation Is Going When A Form Is Deactivated
@Zach. I agree timers could be fragile. Your intercept trick is great, didn't know that was possible.
Nov
14
comment Determine Where Activation Is Going When A Form Is Deactivated
The intercept trick is really cool.
Nov
14
accepted How to get instance from string in C#?
Nov
14
comment Best way to reverse a string in C# 2.0
Surprisingly 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.
Nov
14
answered How to get instance from string in C#?
Nov
7
comment Handling enums in JSON
The wrapper is Nullable<T>, replace MyEnum with MyEnum?.
Nov
6
comment Return zero for negative integers
Bit wise, byte foolish.
Nov
4
accepted How can I fire event before item is added to collection in C#?
Nov
4
answered How can I fire event before item is added to collection in C#?
Nov
3
comment Suggest a good method for having a number with high precision in C#
If 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?
Nov
1
answered Determine Where Activation Is Going When A Form Is Deactivated
Oct
30
comment How can i create neural networks in c#?
"Anybody help me with broad area X" is not a great question. Please be more specific with phrasing.
Oct
30
comment Visual Studio 2010 Beta 2 Installation Prob
I couldn't even install Beta2. I uninstalled Beta1, but Beta2 still complains it is installed...
Oct
15
answered You are not so tough without your car. Fastest lookup list.
Oct
13
comment Using AutoComplete in a DataGridView causes a crash when editing?
You'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?
Oct
9
accepted Are .net exes real executables?
Oct
9
answered Are .net exes real executables?
Oct
8
comment Boolean Code Clarity - which style to use?
I 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.
Oct
7
answered Read password protected excel file using OLEDB in C#
Oct
7
revised Read/write Excel 2007 password-protected documents
link; added 48 characters in body
Oct
7
revised Office Open XML (OOXML) Specification: Encryption
added link
Oct
4
comment What is your best programmer joke?
It's not only called "bug" in the USA. en.wikipedia.org/wiki/…
Oct
1
comment SVN: one working copy, two repositories?
This 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.
Oct
1
answered Office Open XML (OOXML) Specification: Encryption
Oct
1
comment How do you open encrypted OOXML document in C#?
Similar question: stackoverflow.com/questions/1502781/…
Oct
1
answered Read/write Excel 2007 password-protected documents
Oct
1
comment Read/write Excel 2007 password-protected documents
Thanks. That's a rather long spec. I'm still hoping for a black box :)
Oct
1
asked Read/write Excel 2007 password-protected documents
Oct
1
comment Reading Excel files from C#
XML Spreadsheet is a fairly clean format :)
Oct
1
comment Encrypt SQLite database in C#
This is a useful suggestion for a user or admin. However, it is not as helpful when including the encryption feature in a program.
Oct
1
answered Reading Excel files from C#
Oct
1
answered Export to .xlsx
Sep
29
comment Create Excel (.XLS and .XLSX) file from C#
Be very careful with this -- it's a big ugly cludge (for example, sometimes it guesses a column type and discards all the data that does not fit).
Sep
29
comment Displaying Time Zones in WPF/C#. Discover Daylight Savings Time Offset
-1. Please improve the title, 50% of it is redundant. Every SO question could potentially start with "Anyone worked with X?". Accepted answer: "Yes, some people did work with it."
Sep
21
revised referencing an uncompiled c# class
added 148 characters in body
Sep
21
answered referencing an uncompiled c# class
Sep
14
comment Library for lossless image conversion
How is GIF lossy (except for a 256-color maximum)?
Sep
14
comment Auto-Generate place holder format string for String.Format()
You should probably write your own function -- it's not easy to understand exactly what you're trying to do. String.Join may be useful.
Sep
8
revised Clipboard event C#
Cliboard - I carnt speel
Sep
8
answered Clipboard event C#
Sep
1
asked WinForms: force GUI update from UI Thread
Aug
26
answered Log off user from Win XP programmatically in C#
Aug
25
awarded  Popular Question
Aug
11
comment Encrypt SQLite database in C#
Encryption built into .Net is not difficult to use... my question has more to do with SQLite and good ways to wrap that specific file.
Aug
11
revised Encrypt SQLite database in C#
Connection string Password option