15,035 reputation
22748
bio website codingit.wordpress.com
location England, United Kingdom
age 31
visits member for 4 years, 9 months
seen 1 hour ago
stats profile views 920

I am an Analyst/Developer, primarily working on .NET applications for an IT consultancy. I'm currently deployed to A Very Large Financial Institution. I have a BSc (Hons) in Computer Science, and have worked commercially in C, C#, Java, VB6, VB .NET, HTML, T-SQL, Javascript, VBScript, PowerShell, NSIS, and Batch (I love batch!!).


Jun
7
revised C# How to find if an event is hooked up
Reformatted code.
May
30
comment How to improve code folding in Visual Studio?
C/C++ has this option, but not C# (I've checked VS2010 and 2012).
May
14
comment Convert centimeters to inches
100cm is 39.37 inches, which rounds to 39 inches, which is 3 feet, 3 inches, so it looks like your function works correctly.
May
13
revised Accessing Active Directory to get User's Manager in asp.net
Reformatted code
May
3
revised Split and insert string into database
Reformatted code
May
1
revised Partial Number SQL
Reformatted code
May
1
comment Partial Number SQL
I think the inner CAST is not necessary, as from the provided data it's clear that the relevant field is already a string :)
May
1
comment Partial Number SQL
Just use Left, e.g. LEFT(NGPCostPosition.ProjectNo, 5).
Apr
11
comment How do I get string output of compiled C# code?
@MudasirSoomro Check out codeproject.com/Articles/18577/… for how to redirect the standard output (you shouldn't need to redirect standard error or standard input for your purposes)
Apr
11
comment How do I get string output of compiled C# code?
You say you have the .exe generated correctly. Is "Run the exe using Process.Start and redirect standard output" a suitable answer? If so, I'll post the code :)
Apr
11
revised How do I get string output of compiled C# code?
Reformatted code
Apr
11
comment C# Msmq error: (0x80004005): An invalid handle was passed to the function
Can you edit the post to show the full definition of PeekWithoutTimeout and also show the code that calls that method? In particular, make sure you show how cursor is defined :)
Apr
11
comment C#: When performing XSLT: The process cannot access the file
@Mugen Note that you can use the Sysinternals tools Process Explorer and Process Monitor to help answer Marc's question.
Apr
11
revised check the string having full number or the combinbation of number and string
Reformatted code
Apr
11
revised how to convert string args[0] to char
Reformatted code
Apr
10
revised LINQ outer join gives error
Reformatted code
Apr
10
comment Linq query to display two fields from a list
This would be better posted on codereview.stackexchange.com :)
Apr
10
revised What does _.debounce do?
deleted 110 characters in body
Apr
10
revised Which user IIS uses for access to files
Reformatted code
Apr
10
comment What is the point/use of LBound in VBScript?
+1, but are the MSDN docs incorrect then? They state categorically that it will only ever return 0.