Search the web
Sign In
New User? Sign Up
win_tech_off_topic · Windows Technical: Off Topic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 37903 - 37932 of 59807   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
37903
Hi, What is the difference between locking on a container and locking on the container’s SyncRoot property. I have read the text in the docs until I am blue...
Richard Howells
loopylozzysdad
Offline Send Email
Mar 1, 2005
12:11 pm
37904
... I've heard that it's to avoid deadlocks, but I'm not sure how it helps. Could it be to avoid problems in case you have a reference to some sort of proxy..?...
John Elliot
jj5v1
Offline Send Email
Mar 1, 2005
12:27 pm
37905
Technically no difference. Conceptually, yes, the synchronized versions of the containers are using the SyncRoot underneath to acquire synchronized access. It...
Ryan Heath
ryan_88keys
Offline Send Email
Mar 1, 2005
12:32 pm
37906
... From the docs for Array.SyncRoot: "Note that some implementations of SyncRoot might return the Array itself." I'd guess and say that would be the typical...
John Elliot
jj5v1
Offline Send Email
Mar 1, 2005
12:41 pm
37907
I'm using the objects from the System.Management namespace to access remote machine's WMI info. I'm doing this from a corporate network, so things are getting...
Jamin Guy
guy_jamin
Offline Send Email
Mar 1, 2005
5:01 pm
37908
Hi John, Ryan, Thank you for your thoughts. I think I understand it a bit better now. Google brought up this [1] reference to Brad Abram's blog. It seems...
Richard Howells
loopylozzysdad
Offline Send Email
Mar 1, 2005
7:05 pm
37909
Hello. i'd like to know if anyone has a good explanation for this kind of behavior: interface ITest { } class Test { } class MainTest: Test, ITest...
Luis Abreu
thekingcobra_pt
Offline Send Email
Mar 1, 2005
8:06 pm
37910
... It's just the language specification[1]. The base class, if you have one, must appear before an in the inheritance list before any interfaces. HTH, Drew ...
Marsh, Drew
drew_marsh
Offline Send Email
Mar 1, 2005
8:12 pm
37911
It's the rules for C#. The base class must be first. Let's see if I can find the actual spot in the spec... Yep, section 10.1.2. The definition for the...
Chris Tavares
durgansmith
Offline Send Email
Mar 1, 2005
8:14 pm
37912
... Are you asking where this requirement (i.e. base class must be listed before interfaces) is documented? If so, here's one place [1]. If you think it's...
Stuart Laughlin
stuartlaughlin
Offline Send Email
Mar 1, 2005
8:16 pm
37913
Hello again. ... Chris, I've seen it. what i'd like to know is if there's any special reason for this...maybe it's as you say: it's the way the grammar defines...
Luis Abreu
thekingcobra_pt
Offline Send Email
Mar 1, 2005
8:43 pm
37914
... If I had to speculate as to the motivations of Anders and Scott Wiltamuth, I would guess that it's just a practical way of simplifying the declaration...
Stuart Laughlin
stuartlaughlin
Offline Send Email
Mar 1, 2005
8:57 pm
37915
Rob, If you compile with /EHa (to enable asynchronous exceptions) rather than the default /EHs (standard C++ exceptions), you can catch WIN32 structured...
Graham Harwood
gharwo
Offline Send Email
Mar 1, 2005
9:00 pm
37916
You'd have to ask Anders for the reasoning. I would guess that since there's only one base class, they put it first so it's easier to find it. There's nothing...
Chris Tavares
durgansmith
Offline Send Email
Mar 1, 2005
9:03 pm
37917
thanks again for the feedback! -- Regards, Luis Abreu email: labreu_at_gmail.com http://weblogs.pontonetpt.com/luisabreu http://www.pontonetpt.com ...
Luis Abreu
thekingcobra_pt
Offline Send Email
Mar 1, 2005
9:12 pm
37918
... Bingo. -S...
Shawn A. Van Ness
arithex
Offline Send Email
Mar 1, 2005
10:23 pm
37919
Gurus I am trying to create a COM component that stubbornly refuses to be created on any thread that has not entered the STA. I spawned a new thread, made it...
rdilipk
Offline Send Email
Mar 1, 2005
11:37 pm
37920
This is just a guess, but how about System.Windows.Forms.Application.Run( ) or some variant thereof? An STA has to run a windows message pump. -Chris ... From:...
Chris Tavares
durgansmith
Offline Send Email
Mar 1, 2005
11:59 pm
37921
Now why the heck didn't I think of that? Thanks Chris -- I will try this out. This will probably involve referencing System.windows.forms.dll -- any chance I...
rdilipk
Offline Send Email
Mar 2, 2005
12:58 am
37922
Well, you could always use P/Invoke to call down to GetMessage, but I suspect referencing System.Windows.Forms.dll is a lot easier. No clue on the WaitHandle...
Chris Tavares
durgansmith
Offline Send Email
Mar 2, 2005
1:03 am
37923
See Chris Brumme's interesting post for a discussion of pumping and waiting... (maybe that helps?) Seems like handle.WaitOne should pump COM calls... ...
johan_ericsson@...
johanericsson
Offline Send Email
Mar 2, 2005
1:27 am
37924
Do u guys know availability of any TDS server (just like SQL server), that would be easy to modify? I need a tool to mock as SQL server for some stored procs...
Anila Weldon
sanjoseuser
Offline Send Email
Mar 2, 2005
1:33 am
37925
How about MSDE? Aaron ... -- Aaron Weiker http://aaronweiker.com/ http://www.sqlprogrammer.org/...
Aaron Weiker
atweiker
Offline Send Email
Mar 2, 2005
1:36 am
37926
I dont think I can change MSDE to reply with different rowsets. MS does not offer its source code. ... server), ... provide ... fledged ... table, ... ...
Anila Weldon
sanjoseuser
Offline Send Email
Mar 2, 2005
1:43 am
37927
... Could you elaborate on what you mean by this? It's possible to have a single stored procedure return an unknown number of rows and columns. It just...
Aaron Weiker
atweiker
Offline Send Email
Mar 2, 2005
1:48 am
37928
What are you trying to do? If you're trying to mock-up database responses for testing, there are frameworks to do that (DBUnit) ... ...
Greg Akins
angrygreg
Offline Send Email
Mar 2, 2005
2:59 am
37929
Or maybe this will help. http://www.cs.washington.edu/lab/sw/everywhere.html freetds.org is an open-source tds compliant database. But there is also...
Greg Akins
angrygreg
Offline Send Email
Mar 2, 2005
3:01 am
37930
Hi, Because other people on the list provided you with lots of links re ... Yes, just buy[1] (if you haven't already) John Robbins' "Debugging Applications"...
Stoyan Damov
stoyan_damov
Offline Send Email
Mar 2, 2005
7:01 am
37931
Hello Stuart. ... yes, i've already seen that. what i really wanted to know is why does it have to be that way. thanks again -- Regards, Luis Abreu email:...
Luis Abreu
thekingcobra_pt
Offline Send Email
Mar 2, 2005
9:22 am
37932
Plz correct me if I am wrong, but I think DBUnit does not provide network level support...for instance, u just can't replace an original DB server with a mock...
Anila Weldon
sanjoseuser
Offline Send Email
Mar 2, 2005
3:59 pm
Messages 37903 - 37932 of 59807   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help