Exception code: 3221225477
Thu, 28 Aug 2008 16:04:01 -0700
I am an Iraqi Veteran, and not too sharp when it comes to computers, and
really a novice user. Microsoft suggested that I post a question to this
forum, and hopefully I can get an answer to my difficult and annoying problem.
I keep getting EXCEPTION CODE: 3221225477
EXCEPTION ADDRESS: 0 ...
|
Cannot find out missing brace error }
Thu, 28 Aug 2008 14:44:11 -0700
Was editing code, am getting the following errors
} expected
Type or namespace definition, or end-of-file expected
Eyes crossed cannot find code below!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Wi ...
|
What i need in order to use Entity Framework
Thu, 28 Aug 2008 23:02:21 +0200
Hi at all!
I have Visual C# Express and Visual Web Developer Express installed,
but i have found any reference in order to create Entity Framework Data
Model.
I need Visual Studio Standard/Professional edition in order to work
with Entity Framework ?
ck1; ...
|
How can I detect if a program is started?
Thu, 28 Aug 2008 13:13:17 -0700 (PDT)
I want to create my C# program to run in the background and detect
when a program starts. In an interactive program, I know I can
iterate through an array of Processes to find my process if I click a
button, for example. But, I cannot find the best way to run my C#
program in the background waiting for a progr ...
|
Force Dictionary to use Identity versus Equality
Thu, 28 Aug 2008 12:25:20 -0700 (PDT)
Hello:
Is there a way to force a Dictionary to determine equivilence by
memory location?
I have a generic class where I don't want to treat equal items as
identical items. Only when two references point to the same instance
do I want to treat them as the same dictionary key.
Any help?
Thanks,
Travis ...
|
Run application even if the PDA device reboots.
Thu, 28 Aug 2008 09:08:01 -0700
Hi,
I developed an application for windows mobile however the application should
run all time. It should run even after the device rebooted or restarted. The
application should run automatically in any condition unless I
close that. Could someone please help me with the codes? I am using C# for
developing ...
|
Unwanted behaviour on browser back button
Thu, 28 Aug 2008 08:18:01 -0700
I have a registration form that updates a province/state droplist when a
country is selected from another droplist. When the user clicks the back
button though, the province list goes back to the prior country, but the
country list remains the same. This would be ok if the country went back to
the prior co ...
|
|
|
Calling an overloaded generic method
Thu, 28 Aug 2008 15:45:28 +0100
public void DoSomething<T>(object value)
{
<code omitted>
}
public void DoSomething<T>()
{
How do I now call this.DoSomething<T>(null);
}
Thanks
Pete ...
|
How to Create Custom Events?
Thu, 28 Aug 2008 06:29:01 -0700
I know how to use events, but how can I create a custom event?
Take the pointless class below:
class MyInt
{
int n;
public MyInt(int value)
{
n = value;
}
}
How would I create an event for it so that I can call a catching method
whenever the value is changed? ...
|
Events
Thu, 28 Aug 2008 15:06:18 +0200
Hi,
I have a tricky problem with events. I have two objects of the same
type: O1 and O2.
I want to pass the event handlers of O1 (the events of O1 are already
connected to appropriate event handlers) to O2.
Is there any possibility to achieve this?
Regards
Ferdinand ...
|