all groups > c# > april 2008 > threads for saturday april 5
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
Only System.Management namespace listed is Instrumentation... what is going on?
Posted by Matt Brown - identify at 4/5/2008 8:53:22 PM
I'm new to (visual) c# and began tonight. My background is in
VB .NET, so the adjust is mostly syntax.
Anyway...
I'm trying to perform a WMI query using classes in the
System.Management namespace, unfortunately the necessary namespaces
aren't listed. The only namespace listed is Instrumen... more >>
Object design - Is 18 nested classes going to far?
Posted by Andy B at 4/5/2008 6:43:43 PM
I need to decide on how to store online signed contracts for customers and
clients. I have considered a database in sql server 2005, but it seems to be
too complicated. Besides, if the contract contents or layout for new
contracts changes, I would have to change the whole database setup. Not t... more >>
vs2008 Team Suite - Website projects problems
Posted by Andy B at 4/5/2008 3:32:58 PM
Is there supposed to be no c# or VB language choices for website projects
using .net 3.5? or did my install somehow get messed up?
... more >>
Blocking calls in AsyncCallback?
Posted by Hoov at 4/5/2008 2:04:15 PM
I am writing (in C#) a transaction processing middle-tier server that
needs to handle 2000+ concurrent connections. The server receives a
connection and routes the connection to an appropriate upstream
server. After routing is done, this mid-tier server simply acts as a
pass-though between the c... more >>
Having a tough time with Lambda Expressions? Read this
Posted by Cowboy (Gregory A. Beamer) at 4/5/2008 12:20:23 PM
If you have a tough time getting your head around Lambda Expressions, see if
this blog entry helps:
http://tinyurl.com/4yeckd
I would gladly welcome comments, critiques and questions, as I am hoping
this entry really helps those who are struggling with this topic.
--
Gregory A. Beamer
... more >>
adding event handlers withour new operator
Posted by bart at 4/5/2008 12:08:00 PM
Hi,
I am very curious what is the difference between these two lines:
SomeEvent += new EventHandler(Method)
and
SomeEvent += new Method.
It bothers me lately:)... more >>
how to stop cursor keys from activating radio buttons?
Posted by colin at 4/5/2008 11:41:55 AM
Hi,
I have a form with some buttons and a graphical user control,
I need to use the cursor keys to move the camera position
in the control, but it has the unfortunate side effect of
cycling through the button controls on the form and changing
the state of the radio buttons, wich is catastrophic... more >>
c# use an object instance across appdomains
Posted by hufman at 4/5/2008 10:29:23 AM
Hi.
I need to use an object instance in 2 differnet AppDomains, meaning
changing his fields and such...
I tried to do it with Remoting but i couldn't find a way to refernce a
specific instance in the remoted appdomain where the object was
created.
what can i do?... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
redirection operator compatible console application
Posted by muquaddim@gmail.com at 4/5/2008 8:53:27 AM
Hi,
I have a program prog.exe. which takes IP as input its owner
information as output.
if input.txt contains,
xx.xx.xx.xx
yy.yy.yy.yy
zz.zz.zz.zz
now see how it works.
c:\> prog.exe xx.xx.xx.xx yy.yy.yy.yy > output.txt
it generates output.txt with contact info for each ip.
if I do... more >>
Detect scrollbars on treeview
Posted by Jesper, Denmark at 4/5/2008 8:41:00 AM
Hi,
Is there a way to detect whenever scrollbars (the vertical) are shown on a
treeview
I need to know.
1) If scrollbars are visible after a rezise
2) If scrollbars are visible after change in content (e.g. nodes
collapsed/expanded, nodes added/deleted ). Any event to hook into?
I fou... more >>
delegates that can see members in class
Posted by Jon Slaughter at 4/5/2008 12:18:28 AM
Is it possible for delegates to see members in in a class that has the
delegate definition in it?
Basically I want the ability to have users to define there own methods to
incorporate into my class. But instead of having to pass a few fields around
to them when I call them I wonder if there... more >>
|