|
More site info...
Discussions in... - www.microsoft.com/communities/newsgroups... | Site profile
|
|
Site profile page for http://www.microsoft.com/communities/newsgroups....
This report page has aggregated and summarized the online discussions from the Message Board located at http://www.microsoft.com/communities/newsgroups....
This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional site profile information for http://www.microsoft.com/communities/newsgroups... is also shown in the following divisions:
1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a site's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity table on Discussions in microsoft.public.dotnet.languages.csharp:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
104
|
319
|
941
|
|
Post:
|
270
|
868
|
2,617
|
|
|
Authority Badge:
|
|
|
BoardReader Authority Badge code for Discussions in microsoft.public.dotnet.languages.csharp (http://www.microsoft.com/communities/newsgroups...)
|
|
Put this code anywhere on your forum page:
|
|
|
|
|
|
|
|
Rating - The position measured by activity among all forum sites tracked by BoardReader.
If rating is 10 there are 9 forum sites which have higher activity.
Posts - Number of posts on forum site during last 7 days.
Threads - Number of threads on forum site active during last 7 days.
Authors - Number of authors which contributed to the site within last 7 days.
|
|
|
|
|
Discussions in microsoft.public.dotnet.languages.csharp posting activity graph:
|
|
http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx?dg=microsoft.public.dotnet.languages.csharp Alexa graph:
|
Top authors on Discussions in microsoft.public.dotnet.languages.csharp during last week:
user's latest post:
Catching PageUp and PageDown in...
Published (2009-12-16 21:30:00)
Peter Duniho wrote: > [...] > KeyDown represents actual physical key movements. If you need to know > when a particular physical key has been pushed down or released, this is > the event you need to handle. Er, I meant to mention the KeyUp event in the above paragraph. Obviously, the KeyDown event isn't going to tell you when a key is released. :) .
user's latest post:
noobie: calling external DLL in...
Published (2009-12-14 20:06:00)
On 12/14/2009 9:40 PM, Arne Vajh?j wrote: > On 14-12-2009 11:55, Paul Dolen wrote: <snip> >> I haven't been in these MS newsgroups in quite some time. Activity >> level is lower than I would have expected, just a few posts per day >> here. > > What? > > mpdlc seems to have around 50 posts per day at average during > the last few...
user's latest post:
a sort of multiple inheritance...
Published (2009-12-16 14:30:00)
John Rivers wrote: > Thanks for the reply > > This technique seems very powerful > > But I can't find a way to limit instanciation of the nested class to > the parent class: > > public class A { > B b = new B(); // won't compile > public class B { > protected B() { > } > } > } > > there doesn't seem to be...
user's latest post:
Get Short Path Name without...
Published (2009-12-14 15:26:00)
Is there a way to get the short path name of a file or directory without using the GetShortPathName API call? Thanks! .
user's latest post:
j in...
Published (2009-12-11 02:07:00)
user's latest post:
Windows Image Acquisition...
Published (2009-12-16 10:10:00)
Oops, I forgot a little bit to add to it... once you have set the filter, you apply it to your scan... ImageObject = ImageProcess1.Apply(ImageObject); This has to be done after your scan.
user's latest post:
Having your form display...
Published (2009-12-12 07:56:00)
On Dec 12, 7:44?am, Family Tree Mike <FamilyTreeM...@ThisOldHouse.com> wrote: > On 12/12/2009 9:18 AM, CSharp-Jay wrote: > > > > > On Dec 12, 7:01 am, Family Tree Mike<FamilyTreeM...@ThisOldHouse.com> > > wrote: > >> On 12/12/2009 8:40 AM, CSharp-Jay wrote: > > >>> I am currently working on...
user's latest post:
CLR threads vs Windows thread in...
Published (2009-12-16 17:00:00)
On 16-12-2009 15:17, Kursat wrote: > Once I read an article about threading in .NET and the author was saying > that there is no one to one relationship between CLR threads and native > Windows threads. His claim was CLR implements managed threads as Windows > Fibers and can schedule them independently from OS scheduler. Now I am > reading "CLR via C#" by Jeffrey Richter and I...
user's latest post:
datatable in...
Published (2009-12-16 11:40:00)
Please always mention the error message so that we are sure. For now your code doesn't compile as m_datable is not m_datatable but I have no idea if this is a typo in your postor if you have the same errror in your actual code (this is where the exact error message could have been helpfull)... You also have other errors in your code (once again not sure if typo or actual errors).
user's latest post:
encrypt / decrypt string with...
Published (2009-12-16 04:03:00)
Hi all I am trying to build two functions (EncryptString and DecryptString). I would like to use the highest possible security (SHA512Managed ?). I have found the following code: System.Security.Cryptography.SHA512Managed HashTool = new System.Security.Cryptography.SHA512Managed(); Byte[] PasswordAsByte = System.Text.Encoding.UTF8.GetBytes(string.Concat(Password, Salt)); Byte[] EncryptedBytes = HashTool.ComputeHash(PasswordAsByte);...
|
|
|
Top 10 active forums on Discussions in microsoft.public.dotnet.languages.csharp during last week:
|
|
Top 10 forums on Discussions in microsoft.public.dotnet.languages.csharp:
|
|
|
|
Latest active threads on Discussions in microsoft.public.dotnet.languages.csharp:
Started 1 day, 13 hours ago (2009-12-16 11:40:00)
by Patrice
Please always mention the error message so that we are sure.
For now your code doesn't compile as m_datable is not m_datatable but I have
no idea if this is a typo in your postor if you have the same errror in your
actual code (this is where the exact error message could have been
helpfull)... You also have other errors in your ...
Started 1 day, 6 hours ago (2009-12-16 18:46:00)
by gazza670128
On Dec 17, 11:02 am, gazza670128 <garyhoran670...@gmail.com> wrote:
> Hi,
>
> I have a form and want to detect a user pressing pageup or pagedown.
> These events dont seem to be captured by KeyPress or anything like
> that.
>
> Is there an easy way to do this?
OK I answer my own question, KeyPress does not detect ...
Started 1 day, 12 hours ago (2009-12-16 13:10:00)
by Peter Duniho
Kursat wrote:
> Hi All,
>
> Once I read an article about threading in .NET and the author was saying
> that there is no one to one relationship between CLR threads and native
> Windows threads.
There is no guarantee of a one-to-one relationship, that's true.
> His claim was CLR implements managed threads as ...
Started 1 day, 10 hours ago (2009-12-16 15:30:00)
by Peter Duniho
shapper wrote:
> Hello,
>
> On a Linq query I have the following:
>
> ..Where(o => ids.Contains(o.Id) && o.SlideLocalized. Language.Code ==
> language)
>
> ids is a List<Int32>. I get the following error:
>
> Method 'Boolean Contains(Int32)' has no supported translation to SQL.
>
> If I change ids...
Started 1 day, 21 hours ago (2009-12-16 04:26:00)
by Harlan Messinger
John Rivers wrote:
> by implementing abstract classes as nested classes
>
> the implementation has full access (via a reference) to all the
> members of the parent class
This is a variant of the alternative to multiple inheritance known as
"aggregation", and is commonly recommended even for use in C++ to avoid
the ...
|
|
Hot threads for last week on Discussions in microsoft.public.dotnet.languages.csharp:
Started 2 days, 14 hours ago (2009-12-15 11:10:00)
by Patrice
Hello,
> what would be the values of x and y? Are both operations treated as though
> they were
And if you just try, do you see something unexpected ?
Started 3 days, 15 hours ago (2009-12-14 10:16:00)
by Jeff Johnson
"Paul Dolen" <nospam@nowhere.com> wrote in message
news:c3rci51utn3bqvhgo8vob28far5qbqdk87@4ax.com. ..
> I've been mainly using Delphi for years, and just starting on a
> personal project in C#. I'm going to need to access an external DLL,
> so, I searched the net for examples, and found this MSDN article:
>
> http://msdn....
Started 5 days, 19 hours ago (2009-12-12 06:30:00)
by CSharp-Jay
On Dec 12, 6:40 am, CSharp-Jay <bluemana...@gmail.com> wrote:
> I am currently working on building a programmer resume. The resume is
> going to include a series of forms that walk the user through the
> resume, showing off my coding abilities as they go. I was thinking it
> would be pretty nifty as well to also have perhaps a read only ...
Started 4 days, 15 hours ago (2009-12-13 09:46:00)
by Family Tree Mike
On 12/13/2009 10:30 AM, Steve Ricketts wrote:
> I'm obviously new at C# and this question is more about the language
> than the example. I have a MDI child and I want to get/set a label
> (labIndex) value on another child form. I have:
>
> private string labIndex
> {
> get {return labIndex.value; }
> set {labIndex.value ...
Started 3 days, 9 hours ago (2009-12-14 16:26:00)
by Wilson, Phil
I don't know the specific answer, but I believe there's a general security
rule that you shouldn't be able to infer too much from the result of an API
call. If you ask about the existence of a file that you can't access you're
supposed to get an answer "there is no file" rather than the answer "the
file exists but you don't have access...
Started 4 days, 20 hours ago (2009-12-13 04:56:00)
by Family Tree Mike
On 12/13/2009 6:05 AM, ofiras wrote:
> Hello everyone,
> I have a problem that I couldn't solve. What I have to do is a
> function that will get an array of points ( the polygon), a point and
> int variable that will represent a side I need to check. This function
> has to check if the point will come across the polygon if it will go...
Started 4 days, 11 hours ago (2009-12-13 14:06:00)
by Jeroen Mostert
On 2009-12-13 20:17, mick wrote:
> In my app I needed to play the odd sound. Initially I used the
> SoundPlayer but found I had no control
> over the volume so I decided to use unmanaged PlaySound.
PlaySound() gives you no control over the volume either and the current
implementation of SoundPlayer.Play() in fact delegates to ...
Started 3 days, 16 hours ago (2009-12-14 08:56:00)
by Scott M.
"hdjim" <hdjim69@yahoo.com> wrote in message
news:7157bfcf-1970-4de1-8ab2-13c806dff549@s31g20 00yqs.googlegroups.com...
> Hello, the following code comes from a book and I'm not sure what the
> new[] preceding the braces is used for. There is no datatype
> following the brackets so I'm not sure what it does. Here is the code:
>...
Started 1 day, 21 hours ago (2009-12-16 04:26:00)
by Harlan Messinger
John Rivers wrote:
> by implementing abstract classes as nested classes
>
> the implementation has full access (via a reference) to all the
> members of the parent class
This is a variant of the alternative to multiple inheritance known as
"aggregation", and is commonly recommended even for use in C++ to avoid
the ...
Started 1 week, 1 day ago (2009-12-09 19:15:00)
by Peter Duniho
Michael Covington wrote:
> What differences between 32-bit and 64-bit Windows should a .NET C#
> programmer be aware of?
You can allocate more memory before running out (in fact, on a 64-bit
system you'll likely run out of disk space before you run out virtual
address space).
> I understand .NET endeavors to work ...
|
|