all groups > c# > november 2007 > threads for saturday november 3
Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
Class, Constructor and Property
Posted by RP at 11/3/2007 11:45:08 PM
I found a code in a book of a class:
=====================================================
Class Products
{
string ProductName;
int UnitPrice;
int Quantity;
// Empty Constructor
public Products () { }
//Constructor
public Products(string _ProductName, int _UnitPrice, int _Quanti... more >>
is it true that vstudio 2008 is released?
Posted by GS at 11/3/2007 11:17:04 PM
Or did I get mixed up with the CTP version release?
what about the status of .net 3?
... more >>
why there is no specialized generics?
Posted by Valery at 11/3/2007 9:58:04 PM
Why there are no specializations of generics in C# similar to those in
C++? Is there a fundamental reason for that? If there is no, can we
expect to have it ... eventually?
We write performance critical software in C# and it is very often
required to have kind of specialization for several typ... more >>
FindControl problem...
Posted by Dave at 11/3/2007 6:56:07 PM
I'm trying to set a Calendar Value to a control that is in the
EditItem and InsertItem Templates. It's been suggested that I use the
below lines...
TextBox t =
(TextBox)fvCapture.Row.FindControl("CaptureDateTextBox");
t.Text = Calendar1.SelectedDate.ToShortDateString();
No... more >>
PInvoke GlobalGetAtomName
Posted by PLS at 11/3/2007 5:29:37 PM
I'm having problem calling the Win32 function GlobalGetAtomName from C#.
I'm getting a debugger popup telling me that the called function has
unbalanced the stack.
I'm hoping someone here can see what I'm doing wrong.
Here is the function declaration, in a class call DDEFunctions:
[... more >>
what is the proper to bind checkbox
Posted by GS at 11/3/2007 4:03:03 PM
I tried to represent windows form checkbox as int 1 for checked otherwise 0
and bind as checkstate. That did not work. should I bind to text or
whatever, or I should use something other than Int in the sql database?
I tried Google so far no luck, built-in help no luck except possibly some
th... more >>
How to costraint a generics to be a number
Posted by Matteo Migliore at 11/3/2007 3:37:00 PM
Hi.
I want to costraint a generics T to be a number (Int32, Double, Byte etc...)
but
how I can do?
I need beacuse I want to use arithmetic operators (+, -...).
Thx! ;-)
--
Matteo Migliore.
Blog: http://blogs.ugidotnet.org/matteomigliore
... more >>
How can I catch all of file notifications happening all over the hard disk?
Posted by AliRezaGoogle at 11/3/2007 1:53:28 PM
Dear group,
I need to know what is going on in my hard disk. When ever any file is
being copied or is being deleted or is being opened I should be aware
of. Please note that I want to monitor entire part of hard disk not a
particular file or folder. Is there any solution?
... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Timer problem
Posted by Dave at 11/3/2007 12:31:00 PM
I am trying to use the timer to make a login form show after a specified
interval. However, if the interval is set to a value greater than 5000
nanosecond, then it does not respond. What could be the issue here? Thanks.
private void frmMain_Load(object sender, EventArgs e)
{
... more >>
|