divo

12,824
Reputation
844 views

Registered User

name divo
member for 1 year
seen 2 hours ago
website
location Europe
age 33
3h
comment String Anglicization?
@Tyllyn: In fact the translation can also be language dependent. In Swedish "ö" is mapped to "o", whereas in German you would represent it as "oe".
3h
comment String Anglicization?
@Carl: As the system seems to be in C#, it could be assumed that it already supports Unicode. There might be text processing scenarios where you don't want diacritical characters (indexing, stemming, or some other form of text "normalization")
3h
comment String Anglicization?
-1. This answer is not useful.
1d
comment COM - .NET Interop - Winform from COM client
Is your WinForm application STA or MTA?
2d
awarded  Mortarboard
2d
comment VBA Clean use of many Constants
Wouldn't that be a use case for named ranges?
2d
awarded  Notable Question
Dec
4
comment XSLT Intellisense in Visual Studio 2008
I tried it once some time ago and then it worked, although the benefit didn't seem to be too much. Maybe it's no longer working since SP1...
Dec
4
answered XSLT Intellisense in Visual Studio 2008
Dec
3
revised Implementing a simple Master-Detail scenario for WPF in MVVM
typo corrected
Dec
2
accepted .NET windows service getting stopped abruptly
Nov
30
comment C#, does type conversion improve in next version?
A line like someString.Replace(someInt, ""); by itself does not make much sense as you disregard the result of the method call. I assume you intended to write string result = someString.Replace(someInt, "");.
Nov
27
revised How to capture the PID of a process when launching it in DOS
added 162 characters in body
Nov
27
answered How to capture the PID of a process when launching it in DOS
Nov
26
comment How to read command line arguments of another process in C#?
Interesting article by Raymond Chen: blogs.msdn.com/oldnewthing/archive/…
Nov
25
accepted XML file with imbedded image data or ZIP file with XML + separate image files
Nov
25
awarded  Yearling
Nov
24
answered In XSLT 1.0, how can I access attributes of a particular XML element when it is one of multiple elements with the same name?
Nov
24
comment data types and structs in C#
Int32 can be useful when dealing with interop and binary issues. I used it e.g. when writing a binary format parser, just because it looked more consistent in the mix with Int16, UInt16 etc.
Nov
24
comment C#: Is it possible to have a single application behave as Console or Windows application depending on switches?
Somewhat related, especially if you want to write to the Console from a Windows application: stackoverflow.com/questions/666823/…
Nov
24
comment C#: Is it possible to have a single application behave as Console or Windows application depending on switches?
Visual Studio does that trick, there is a devenv.exe Windows application and a devenv.com console application.
Nov
23
awarded  Popular Question
Nov
18
awarded  Popular Question
Nov
15
comment Easiest way to execute local file from Firefox?
Alternatively, you could register a protocol handler (as other applications like iTunes and Skype do) that would be handled by your IDE.
Nov
13
comment How to link from one stackoverflow question to others?
A good question, but it would better be discussed on meta.
Nov
12
comment outlook and programming with C#
Ah, ok, thanks! My misunderstanding then, I was afraid I had missed something like removed MAPI support in O2010...
Nov
12
comment outlook and programming with C#
Why wouldn't it work for Office 2010?
Nov
11
answered .NET windows service getting stopped abruptly
Nov
11
revised Converting a String to a DateTime variable?
updated from comment
Nov
9
revised please, i need explanation of this code
added 35 characters in body
Nov
9
comment convert any file into pdf format for .net?
@sikender: Your question doesn't say so (it says that you would like to convert any format). Could you please edit your question and make your scenario a bit more clear? Is this only about MS Office documents? Please also state the exact formats that you wish to convert.
Nov
9
accepted Transfering a file using FTP
Nov
7
comment How do you version service pack or hot fix?
@scott: This is probably true, but as far as I know Microsoft typically does not change the version number of their framework assemblies deployed to the GAC when applying a hotfix or service pack.
Nov
2
accepted C# - XPath-Question: How to get Nodes under a specified parent-node?
Oct
30
answered XML file with imbedded image data or ZIP file with XML + separate image files
Oct
30
comment Adding tags to textwriter?
3 questions: Do you want to create an XML document? What code do you already have (could you post a sample)? What is the desired output (post a short XML sample document)?
Oct
30
accepted What does it mean to call a Java method using “new” in a statement?
Oct
30
accepted VBA - “Can’t find Project or Library” for standard VBA functions
Oct
30
answered What does it mean to call a Java method using “new” in a statement?
Oct
29
comment StackOverflow when hosted as WCF - works fine in Console app
Not only file protection might be an issue, but w3wp.exe might be updated by hotfixes and service packs. You'd be safer with redesigning your code to use less stack space as "256kB ought to be enough for everyone" ;-).
Oct
29
accepted StackOverflow when hosted as WCF - works fine in Console app
Oct
29
comment StackOverflow when hosted as WCF - works fine in Console app
Just out of interest: Are you using XSLT within your process or are you passing large structs/arrays as function arguments?
Oct
29
revised StackOverflow when hosted as WCF - works fine in Console app
added 516 characters in body; edited body
Oct
29
answered StackOverflow when hosted as WCF - works fine in Console app
Oct
29
comment Win7: Out of Memory exception on Image.FromFile
Does an analysis with Process Monitor show any missing files/registry keys?
Oct
29
comment outof memory exception
Are you a clairvoyant? Out of memory basically only suggests that a memory allocation failed.
Oct
29
revised Throwing FaultException<T> from worker thread crashes WCF
added 180 characters in body
Oct
29
answered Throwing FaultException<T> from worker thread crashes WCF
Oct
29
comment How do I find the revision that changed a line in my code using TortoiseSvn?
Is there also a way to find all revisions a certain line was modified? Blame will only give me the last revision.
Oct
29
comment How to set Visual Studio to Publish pdf files
How about using multi-selection? Just a few mouse clicks and you are done. Or, if you PDF documents are spread among the project tree, open the project file in a text editor and do a global search and replace.