Quick inheritance Q211145 (6/30/2010 10:19:58 AM) DuncanHi,
I have a class 'A' that has a virtual member 'm()'. Another class 'B'
inherits from A and overrides m. Yet another class 'C' inherits from B.
A <- B <- C
From C, can I call A's implementation of...
Error: InterfaceDictionary ... does not implement interface member ...11255 (7/1/2010 4:46:19 PM) RichI am attempting to create a custom collection class which implements
IDictionary -- with parameters --
public class MyClassCollection : IDictionary
The purpose for this effort is to learn ...
Storing a generic type11076 (7/1/2010 8:38:21 AM) CraigI have a class with a property, called Value, which contains different
types of data. That is, it might hold a Float, an Int, a String... The
property value depends on another property which defines they type...
Are there methods with parameters of interface type in the standard library?31050 (7/1/2010 12:23:58 AM) ram Are there any methods in the standard .NET library that have
parameters of an interface type?
(Preferably, simple methods with only one parametersthat
can be called without many preparations and ca...
#.NET help to video processing?11089 (7/1/2010 9:42:09 AM) Pasanho,
I need to count moving objects per minute in a video stream. I'm
currently using Aforge.NET. But unfortunately I could not find a way to do
this using Aforge.NET. I checked their forums/Code proje...
vs2005 c# app on windows 7/x64 fatal ?41008 (6/29/2010 2:18:19 PM) SagaertHi all
I have an app running ok on W7 32 bit but on an W7/x64 it crashes immediate
(no exeption thrown) .
the program has stopped, windows is searching for a solution......
Runs ok in XP mode.
Sh...
C# projects21082 (6/27/2010 6:01:56 PM) UtfC# project questions:
1. In a C#.net solution that was maintained by a team of programmers, is
there a way to tell how to get the build to locate no errors when it is
compiled. Basically I would like to ...
Threading131277 (6/29/2010 7:48:27 AM) UtfAre there any dangers with a line of code such as:
new System.Threading.Thread(UpdateContacts).Start();
On completion, does the thread get taken care of by ... what?
...
Works just as good without the Threadstart4995 (6/30/2010 11:55:10 PM) TonyHello!
Here I have a simple example to start a Thread. I have noticed that I can
skip the Threadstart and pass the working method directly to the Thread
C-tor.
So what is the point to use ThreadStart wh...
Visual Web Developer 2010 Express - connect to MySQL44299 (6/16/2010 5:47:26 AM) AlanHi,
I cannot find VWD newsgroup so I post the message here.
Just downloaded VWD 2010, would like to know the steps to connect to MySQL
5.
I have downloaded MySQL ODBC driver and added into System -> DSN ...
the Clear method for the Queue class31159 (6/30/2010 6:57:10 PM) TonyHello!
Can somebody explain what this text mean ?
When you call the Clear method for a Queue object, the capacity of the
Queue object is not changed.
//Tony
...
Use of Assembly Attributes31293 (6/29/2010 8:16:36 PM) ShalomWe have been trying to mimic a sort of "plug-in" design with our
app. We are loading assemblies which are in the app's assembly
directory and then iterating all the Types in each Assembly to find
ones which...
how to iterate SimpleDictionary that implements IDictionary?31334 (6/29/2010 7:27:25 PM) RichI am practicing creating a custom SimpleDictionary collection object
that implements IDictionary as follows below. I generated
the default members to this custom collection object from the cont...
string format question11214 (6/30/2010 11:27:36 AM) YoavoHi,
I want to make a dynamically string format padding on a given string but I
get ABORT when doing it:
string aTest = string.Format("--{0,10}--", "test"); // this is
OK
string...
Question about the garbage collector181203 (6/24/2010 7:41:46 AM) DanielHello,
I am trying to understand how the garbage collector works. To do this I
created a simple test with a timer. I create a timer and then release all
references leading to this timer, then I force a g...
Problem with TTable0947 (6/30/2010 7:45:12 AM) PatrickHello
my application uses TTable here is my code where I ocreate and open TTable
//////////////////////////////////////////////////////////////////////////////////////////////////////
AnsiString nomdatabase...
delegate vs condition check11328 (6/29/2010 3:05:14 PM) Arthello everyone,
today i tested the speed of a delegate relaying to a function against
the speed of an an if, that checks the condition of a boolean value,
relaying to a function (the code is attached at th...
After merging 2 ContextMenuStrip how to call Opening ?11208 (6/29/2010 1:46:59 PM) fred06250Hello All
I ve got 2 ContextMenuStrip
menu1 :
_A
_B
menu2 :
_C
_D
I set Opening on both menu
menu1.Opening += new CancelEventHandler(MyOpening1);
menu2.Opening += new CancelEventHandler(MyOpen...
Painting datagrid view01198 (6/29/2010 2:35:12 PM) deriancI currently have a datagrid view that's bound to a table. I have the
AllowUserToAddRows is set to false so there is no extra row on the
bottom of the dgv. I also have cell painting logic that changes the
c...
Formsauthentication timeout and 2 login pages01253 (6/29/2010 2:10:35 PM) CHi,
My client wants 2 separate login pages for an ASP.Net app, one for
regular users, one for support staff. I am using the standard
FormAuthentication component for authentication. Is it possible to
redi...