0
votes
2answers
68 views
Calling an Oracle store procedure with nHibernate
I've got a stored procedure in Oracle:
procedure Test(results OUT gencursor, id in number) is
v_cursor gencursor;
begin
OPEN v_cursor FOR
select id, name, age from tblcu …
0
votes
Enable Visual Styles for a Class Library
You'll have to use the OpenThemeData Win32 api in your control:
MSDN: Using Windows XP Visual Sty …
0
votes
Debugging outofmemoryexception
I hope you mean runtime error, and not compile-time error.
Typically this would happen if you have a list growing, which is saved in a static field or a system-wide ASP.NET container.
…
0
votes
C#/.NET - Custom Binary File Formats - Where to Start?
Suppose your format is:
struct Format
{
struct Header // 1
{
byte a;
bool b1, b2, b3, b4, b5, b6, b7, b8;
string name;
…
2
votes
Date Difference in ASP.Net
const string DateFormat = "dd/MM/yyyy hh:mm:ss";
DateTime d1 = DateTime.ParseExact("28/04/2009 09:26:14", DateFormat, null);
DateTime d2 = DateTime.ParseExact("28/04/2009 09:28:14", DateFo …
2
votes
I’ve read that assemblies manually placed inside Bin are also automatically referenced by…
Q1: "add reference" in a web site project means more than just copying the dll to the bin directly. It also means to place a dependency in app.config and to place a hint file which helps Visual Stu …
0
votes
Slickest way to put objects into separate lists based on a property value.
If you don't want to go thru the list twice, then:
var collectionOfThings = new[]
{
new Thing { Id = 1, Type = "typeX" },
new Thing { Id = 2, Ty …
7
votes
Qt vs WPF/.NET
Future of WPF
WPF's Direct3D architecture lets the graphics card do what it is good in: do graphics. The architecture for sure has future. I wouldn't be suprised if the next Windows versi …
4
votes
understanding events and event handlers in C#
C# knows two terms, delegate and event. Let's start with the first one.
Delegate
A delegate is a reference to a method. Just like you can cr …
6
votes
C# IEnumerator/yield structure potentially bad?
You're not always unsafe with the IEnumerable. If you leave the framework call GetEnumerator (which is what most of the people will do), then you're safe. Basically, you're as safe as …
0
votes
Why can’t IEnumerator’s be cloned?
This might help. It needs some code to call the Dispose() on the IEnumerator:
class Program
{
static void Main(string[] args)
{
//var list = MyClass.DequeueAll().ToL …
5
votes
Fastest way to add new node to end of an xml?
You need to use the XML inclusion technique.
Your error.xml (doesn't change, just a stub. Used by XML parsers to read):
<?xml version="1.0"?>
<!DOCTYPE logfile [
&l …
1
vote
How do I control a Power Strip’s power from C#?
You need an IO board with a relais protection (so that you can switch 230/110V)
There are many out there. I've used the Velleman board (available in Europe), which works with Windows XP/200 …
3
votes
Run Message Loop while waiting for WaitHandle
I'd run the whole "Complicated-function-that-can-not-be-split" in a separate background thread, and have it to report to the GUI only when it needs to (using Invoke/BeginInvoke methods on a control …
0
votes
TransactionScope in .NET application
TransactionScope supports (hybrid) fast local transactions with the option to promote them to more expensive distributed transactions, when ever required. For distributed transactions, MSDTC is req …
