Questions tagged [msdn]

Microsoft Developer Network

The Microsoft Developer Network (MSDN) is the portion of Microsoft responsible for managing the firm's relationship with developers and testers, such as: hardware developers interested in the operating system (OS), and software developers standing on the various OS platforms or using the API and/or scripting languages of Microsoft's applications. The relationship management is situated in assorted media: web sites, newsletters, developer conferences, trade media, blogs and DVD distribution. The life cycle of the relationships ranges from legacy support through evangelizing potential offerings.

1089 questions
13
votes
2 answers

SQL Server TRY...CATCH with XACT_STATE

I have a question regarding the MSDN documentation for TRY CATCH blocks. Check out this article and scroll down to Example C "Using TRY…CATCH with XACT_STATE" http://msdn.microsoft.com/en-us/library/ms175976.aspx The example first places a COMMIT…
JohnB
  • 1,743
  • 5
  • 21
  • 40
12
votes
4 answers

Does Microsoft BizSpark come with full MSDN benefits?

was wondering if there are anyone else here that has signed up with the same program and could give me some advise. I've signed on to the Microsoft BizSpark program sometime earlier a month or two ago, and has activated the MSDN subscription that…
Darkwoof
  • 359
  • 4
  • 14
12
votes
2 answers

Visual Studio 2010 Ultimate for x64?

I have an x64 machine and an MSDN subscription. I want to download VS2010 Ultimate. However, I'm not seeing an x64 version on the subscriber downloads page. Why might this be? Am I missing something?
Nick Heiner
  • 119,074
  • 188
  • 476
  • 699
12
votes
8 answers

Does the cost of MSDN Subscriptions represent a deterrent to .NET adoption

I know just the question is a bit of heresey, but I'm curious... Sure, there are the express editions. But when Microsoft is effectively competing for 'hearts and minds' in an OSS world, it seems more than a bit counterproductive to charge devs who…
J Healy
  • 2,332
  • 1
  • 18
  • 13
11
votes
1 answer

ToUpperInvariant() – is MSDN wrong on its recommendation?

In Best Practices for Using Strings in the .NET Framework, StringComparison OrdinalIgnoreCase is recommended for case-insensitive file paths. (Let's call it Statement A.) I can agree with that, because I can create two files in the same…
miroxlav
  • 11,796
  • 5
  • 58
  • 99
11
votes
4 answers

MSDN about stored procedure default return value

Could anyone point exactly where MSDN says thet every user stored procedure returns 0 by default if no error happens? In other words, could I be sure that example code given below when being a stored procedure IF someStatement BEGIN RETURN…
Ilya
  • 565
  • 2
  • 5
  • 13
11
votes
2 answers

Where are CLR-defined methods like [delegate].BeginInvoke documented?

[EDIT, Completely rephrased:] Seems like my question was poorly worded indeed, and poorly received too. So I hope that this complete rephrasing helps... MSDN tells clearly specifies: Control.BeginInvoke() Executes a delegate on the thread that the…
Adam
  • 637
  • 1
  • 8
  • 21
10
votes
2 answers

How can I link to MSDN/official documentation from my C# XML documentation comments?

Given an XML comment on a class something like this: ///Handles the AuthenticateRequest event in the ASP.NET page request lifecycle to authenticate users. /// ///This module will authenticate users based on cookies,…
Dylan Beattie
  • 53,688
  • 35
  • 128
  • 197
10
votes
2 answers

Unexpected behaviour of Process.MainWindowHandle

I've been trying to understand Process.MainWindowHandle. According to MSDN; "The main window is the window that is created when the process is started. After initialization, other windows may be opened, including the Modal and TopLevel windows, but…
Ed Guiness
  • 34,602
  • 16
  • 110
  • 145
10
votes
5 answers

How to establish a OracleConnection without making use of the obsolete OracleConnection Class

What's the 'new' way of establishing a OraConnection? Microsoft defines several classes as obsolete. https://msdn.microsoft.com/en-us/library/system.data.oracleclient.aspx I used to make use of something along those lines: string queryString = …
SighteD
  • 117
  • 1
  • 1
  • 11
10
votes
4 answers

Quick MSDN Search in Firefox

Is there a way to get an MSDN search bar in Firefox which will autocomplete .Net class and member names (and preferably also Win32 API methods) and take me directly to the MSDN page? Google toolbar with Shift+Enter (I'm feeling lucky) will usually…
SLaks
  • 868,454
  • 176
  • 1,908
  • 1,964
10
votes
2 answers

Where can I find the Microsoft .NET Framework Development Guide?

I'm positive that this guide existed, but my Google skills seem to be broken today. Could you show me the link to the MSDN pointing to that section?
mafu
  • 31,798
  • 42
  • 154
  • 247
9
votes
3 answers

ASP.NET: How parallel requests are processed

Let's imaging there are 2 pages on the web site: quick and slow. Requests to slow page are executed for a 1 minute, request to quick 5 seconds. Whole my development career I thought that if 1st started request is slow: he will do a (synchronous)…
Budda
  • 18,015
  • 33
  • 124
  • 206
9
votes
3 answers

Details on the Microsoft multi-string format

In some of its API function Microsoft use the "multi-string" format to specify a list of strings. As I understand it, a multi-string is a null-terminated buffer of concatenated null-terminated strings. But this can also be interpreted as a list of…
ereOn
  • 53,676
  • 39
  • 161
  • 238
9
votes
1 answer

What is difference between BaseAddress and AllocationBase in MEMORY_BASIC_INFORMATION struct?

In MSDN i find following` BaseAddress - A pointer to the base address of the region of pages. AllocationBase - A pointer to the base address of a range of pages allocated by the VirtualAlloc function. The page pointed to by the BaseAddress member is…
know_everything
  • 123
  • 2
  • 7
1 2
3
72 73