all groups > c# > october 2005 > threads for sunday october 2
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 31
How do you preprocess WM_MOVING and/or WM_MOVE???
Posted by Benny Raymond at 10/2/2005 10:48:07 PM
I need to be able to process the message WM_MOVING and WM_MOVE, however
I noticed that the following breakpoint in PreProcessMessage isn't hit
on move (it does get hit when I press alt for instance though). It does
get hit on the WndProc, however I can't return a true here, so it's
worthles... more >>
How much is C# slower than C++?
Posted by Roy Gourgi at 10/2/2005 9:36:51 PM
Hi,
How much is C# slower than C++?
TIA
Roy
... more >>
Listview - Enable and Disable Rows
Posted by JC at 10/2/2005 9:09:02 PM
I am a newbe to C#, and I am required to enable and disable rows in a
listview, depending on certain criteria.
e.g. The listview contains -
Apples
Oranges
Grapes
I am required to have Apples and Grapes enabled and available for
selection, and Oranges must be disabled so that a user cannot... more >>
Remove Event Handler without -=
Posted by Franco, Gustavo at 10/2/2005 8:34:56 PM
How can I remove all event handler from one event without do -=?
I won't explain why because is too long, and that the only option left I
have right now.
I have one event declared for:
AppDomain.CurrentDomain.AssemblyResolve += XFUNCTION
I need to remove all event handlers for the even... more >>
Custom Events must be assigned to or program crashes
Posted by Jim at 10/2/2005 7:53:35 PM
I have extended a DataGrid, and made a KeyInput event so I could handle
keypresses in the grid.
Here's the relevant code:
[in the namespace of the class, but not in the class]
public delegate void KeyboardInputDelegate(Keys keyData);
[class member]
public event KeyboardInputDelegate Keyboar... more >>
Collections Problem
Posted by John Bowman at 10/2/2005 7:48:56 PM
Hi All,
I've got a problem with the following example test code crashing,
complaining that the object reference is not set (.NET 1.1). Basically, I
instantiate a
collection of objects and begin populating the collection with appropriate
objects, then print them out. What am I doing wrong to ... more >>
I Need URL To Microsoft Documentation For Favorites
Posted by clintonG at 10/2/2005 7:27:03 PM
I've been hunting around. Does anybody have a URL to
Microsoft'sdocumentation for Favorites?
--
<%= Clinton Gallagher
METROmilwaukee (sm) "A Regional Information Service"
NET csgallagher AT metromilwaukee.com
URL http://metromilwaukee.com/
URL http://... more >>
Visual C# Express Bug?? :(
Posted by Danny Tuppeny at 10/2/2005 6:13:09 PM
Hi All,
I've created an empty class that inherits from ListView:
Class MyListView : System.Windows.Forms.ListView
{
}
My prooject builds fine, but when I try to drag this control onto a form, I
get an error saying it couldn't be loaded, and will be removed from the
toolbox! (to then b... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
DataGrid selection
Posted by Mike at 10/2/2005 11:06:03 AM
Hi,
in vb.net this the code to select the value for the first column in the
currentrow:
grdConcerts.Item(grdConcerts.CurrentRowIndex, 0)
but is not working with C#
--
Regads,
Rochdi... more >>
Selecting Events
Posted by Mike at 10/2/2005 9:19:03 AM
Hi,
I'm new to C# and I can't find events for my controls in the drop down box
in the leftside like in vb.net!!!?
Thanks
--
Regads,
Rochdi... more >>
VB.net to C#
Posted by Kevin at 10/2/2005 8:33:04 AM
I'm trying to convert this VB.net function to C#:
Public Overridable Function nbhdValidate() As Boolean
If ((strFrom <> "") Or (strTo <> "")) Then
Return False
Else
Return True
End If
End Function
This is... more >>
Service Control Manager?
Posted by Raed Sawalha at 10/2/2005 8:16:01 AM
I developed a windows service, and i need to achieve the following:
i need a windows application like to control the windows service
1. start
2. stop
3. and i need to invode and certain function in windows service after
starting it
manualy like what I see in sql server there is start/stop... more >>
Newbie!! Needs help though!
Posted by Zack Whittaker (R2 Mentor) at 10/2/2005 12:00:00 AM
Hey,
I'm very new to all this C# stuff and I think I might need a little bit of help! I've got
Microsoft Visual C# 2005 Express Edition Beta2 running, and I'm making at the moment a
simple application which has a menu bar of "About" and "Help" and that's it, but with a
web browser window fo... more >>
protocol violation - httpwebrequest
Posted by piotrek at 10/2/2005 12:00:00 AM
Hi.
I have problem : The server committed a protocol violation.
Section=ResponseStatusLine - exeption.
in code:
--------------------------------------------------------------------------------------------------<code>
String server = "http://nyc.etn.fm:80/stream/1077";
request = (HttpWebRequ... more >>
|