Tagged Questions

Microsoft Developer Network http://msdn.microsoft.com/

learn more… | top users | synonyms

31
votes
9answers
13k views

MSDN subscriptions on the cheap?

As a long time MS developer, I find MSDN to be an invaluable resource. However, when tinkering at home I am not able to play with the best latest technologies and the different offerings coming from ...
22
votes
5answers
4k views

The [NeutralResourceLanguage] attribute is missing on the entry assembly

I'm trying to submit an app to the windows phone 7 marketplace and have never encountered this error when validating my .xap package. App Hub just remodeled and became back online roughly an hour ago. ...
19
votes
8answers
762 views

Non-startup Microsoft ISV development, on the cheap?

While there are a handful of great programs for ISV Startups (BizSpark, Emplower ISV, etc), the only option avaiable for non-startups seems to be Visual Studio w/ MSDN. It's not that expensive (I was ...
18
votes
6answers
2k views

Is Microsoft BizSpark a good deal for startups?

I learned about Microsoft BizSpark the other day and started the sign up process. Has anyone else heard about it or had success with it?
14
votes
4answers
227 views

.NET Framework Time complexity in the documentation

Where can I find the time complexity for methods in the standard .Net library? I use MSDN and it occasionally mentions time complexity, but not often (I ran into a similar problem with Java). For ...
14
votes
5answers
1k views

Is read-only auto-implemented property possible?

I found a topic on MSDN that talks that yes, this is possible. I did a test that seems to break this statement: using System; namespace Test { class Program { static void ...
10
votes
4answers
602 views

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 ...
10
votes
8answers
1k views

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 ...
9
votes
1answer
120 views

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

Given an XML comment on a class something like this: ///<summary>Handles the AuthenticateRequest event in the ASP.NET page request lifecycle to authenticate users.</summary> ...
9
votes
4answers
13k views

TechNet or MSDN Subscription?

I'm just a one-man software shop, and I currently have an MSDN subscription. It is coming up for renewal soon, and it looks like it's going to cost a small fortune. I see that TechNet subscriptions ...
8
votes
5answers
193 views

.NET classes and their source code

This might be a nonsense question but Im going to ask it anyway. When Im writing a c# (or any .NET programme) I use methods and classes. Most of the code I use is calling methods from the .NET ...
8
votes
6answers
286 views

Microsoft C++ Language Reference

Whenever any question is asked, and a reference text is needed, I never see MSDN C++ Language Reference being referred. I was browsing through it and I personally feel that it is extremely well ...
8
votes
4answers
2k views

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 ...
7
votes
5answers
1k views

Microsoft.Office.Interop.Word documentation

I need to use the Microsoft.Office.Interop.Word namespace to extract if a Word document contains macros, and which ones. The MSDN documentation for this namespace doesn't give much information ...
7
votes
3answers
1k views

If my employer is a MS Gold Partner, what am I allowed to install at home? [closed]

usually my employer purchases an MSDN subscription per developer, which allows the developers to install things like visual studio at home (provided all the license restrictions are obeyed etc). ...
6
votes
4answers
127 views

Ensure property can't return null

Is that possible in C# to know from MSDN docs that some method/property/field can or can NOT return null value? e.g. Image.RawFormat Property from MSDN says: The ImageFormat that represents the ...
6
votes
2answers
5k views

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?
6
votes
3answers
294 views

Why code snippet in VB is more featured than in C#?

As I read http://msdn.microsoft.com/en-us/library/ms165394.aspx: For VB: Inside the Snippet element, add the References element and all of the required child elements that add a reference ...
6
votes
2answers
4k views

Performance Counter Category Names? (C#)

I'm trying to program in a performance counter into my C# application that launches another process and checks the processor usage of that launched process. As I understand it, the performance counter ...
6
votes
2answers
2k views

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 ...
5
votes
3answers
183 views

Why does MSDN say it's “rare” to load an assembly by path?

According to the documentation for System.Assembly: The LoadFile and LoadFrom methods are provided for rare scenarios in which an assembly must be identified by path. They suggest that you would ...
5
votes
4answers
459 views

Why does this MSDN example for Func<> delegate have a superfluous Select() call?

The MSDN gives this code example in the article on the Func Generic Delegate: Func<String, int, bool> predicate = ( str, index) => str.Length == index; String[] words = { "orange", "apple", ...
5
votes
3answers
328 views

Contract of ICollection<T>.IsReadOnly

I'm writing an array wrapper class that implements IList<T>. I’m unsure of what to return for IList<T>.IsReadOnly (inherited from ICollection<T>), though. My class disallows ...
5
votes
2answers
5k views

ClientScriptManager.GetPostBackEventReference Method

I'm trying to understand what this method means as I'm reading this and have wondered what uses this may have. I don't quite understand the example given. Can anyone give another explanation of it. ...
4
votes
2answers
73 views

Where can I find the declaration of HOST_E_CLRNOTAVAILABLE (type HRESULT) constant?

Could anyone, please, help me to find the header file, which contains the declaration of HRESULTs returned by ExecuteInDefaultAppDomain() function. The compiler doesn't see the values documented in ...
4
votes
1answer
758 views

Why is using [DataMember(EmitDefaultValue = false)] not recommended?

In WCF you can define a contract using the [DataContract] and [DataMember] attributes, like this: [DataContract] public class Sample { [DataMember(EmitDefaultValue = false, IsRequired = false)] ...
4
votes
2answers
2k views

Where can I download MSDN documentation?

I want to download off-line installation of MSDN documentation of Visual Studio 2010 Express for WIN32 and COM development, so that I don't have to download it again while installing for other ...
4
votes
3answers
218 views

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 ...
4
votes
2answers
155 views

Is there any Java API sepc-like documentation for C#?

I hope this is not a duplicate post, which I seriously doubt, but I don't seem to be able to find a similar post. After a few months into programming with .NET/C#, it still bothers me that I can't ...
4
votes
1answer
624 views

msdn CM_GET_Parent Example Doesn't Work

I am working on getting the device id from the usb device i plug... The above application works on win-Xp but not in Windows 7 When i try to figure it i found that CM_Get_Parent () not works... ...
4
votes
5answers
310 views

Int64 (long) and Thread Safety

A quote from MSDN Assigning an instance of this type is not thread safe on all hardware platforms because the binary representation of that instance might be too large to assign in a single atomic ...
4
votes
3answers
245 views

Is there a bug in this code from 101 LINQ Samples on MSDN? (Update: Fixed)

NOTE: Charlie Calvert replied below that the 101 LINQ Samples have now been updated with correct code. The MSDN Visual C# Developer Center has a section called 101 LINQ Samples. I found this through ...
4
votes
3answers
175 views

where are the official directx forums?

I have been checking around MSDN and Microsoft.com but i can only find Archived forums. Are there any microsoft run forums for DirectX anymore?
4
votes
4answers
292 views

Load search URL in browser from Visual Studio

I'm finding the built-in Visual Studio Document Explorer less relevant, especially as more of the SDKs I work with have the most up-to-date content on-line. Pressing F1 starts Document Explorer ...
4
votes
2answers
526 views

Download ASP.NET MVC reference and integrate it with local MSDN Library

Is there a way to download ASP.NET MVC reference and make it available through the local MSDN library? I am tired of going to Microsoft's site everytime I need a simple class or method documentation ...
4
votes
10answers
254 views

What's the fastest way to get the info I need from MSDN?

In PHP, if I need info on a function I can just type http://php.net/function-name. If the function doesn't exist it performs a search of all functions. The documentation for every function is ...
4
votes
4answers
2k views

What are the possible classes for the OpenThemeData function?

I'm trying to call the OpenThemeData (see msdn OpenThemeData) function but I couldn't determine what are the acceptable Class names to be passed in by the pszClassList parameter. HTHEME ...
3
votes
2answers
85 views

Is powerpoint presenting?

I am trying to create a powerpoint add-in with c#. I'm finding it very difficult to even find useful information on MSDN. I'm looking for a set of API's in order to check the status. Currently, to ...
3
votes
1answer
94 views

Is there a Preprocessor Option that display when header files are preprocessed?

Looking through the MSDN, I would say no; however, I thought I would ask here before I give up. Is there a preprocessor option for Visual Studios that displays when a header file is included? ...
3
votes
3answers
435 views

Box Shadow in CSS internet Explorer 8 problem

I have a question about IE8 with css. I pasted code in my css from msdn .shadow {-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";} I used the ...
3
votes
2answers
53 views

Programmatically querying MSDN?

Is there a way to query MSDN.com programmatically? Essentially I have a class name, namespace or other identifier and want to find the MSDN Documentation page, ideally passing in a version as well ...
3
votes
1answer
114 views

How to understand MSDN documentation?

First off, please dont think this is not a programming related question because it very much is. When I used to use VB 6 in my high school MSDN was just fantastic, I never looked anywhere else for ...
3
votes
2answers
139 views

Typo at msdn page “C++ Constant Expressions”?

It says at msdn page for c++ constant expressions that: Nonintegral constants must be converted (either explicitly or implicitly) to integral types to be legal in a constant expression. ...
3
votes
1answer
41 views

How to see in MSDN only the properties/methods added by a .NET class, and not those inherited?

For example, the ContextMenu WPF class documentation (either offline or online) has pages and pages of properties and methods. Can I filter them somehow and only see the ones added by ContextMenu, ...
3
votes
2answers
60 views

Library design practices that work while doing development in Microsoft .net technologies

I was looking for a book or msdn article for developing a framework/library which extends the .net framework like here. Where can I find good design guidelines?
3
votes
2answers
644 views

page.DataContext not inherited from parent Frame?

I have a Page page in a Frame frame, with frame.DataContext = "foo". (page.Parent as Frame).DataContext is "foo". ok BindingExpression for page.DataContext is null (also forced with ClearValue). ok ...
3
votes
1answer
134 views

Is there a way to lock VertexBuffers in XNA?

Looking at the MSDN documentation, I can't find a way to lock VertexBuffers so that I can change their data while on the device. Is this possible in XNA?
3
votes
5answers
197 views

Can Someone Explain This MSDN Code To Me In English?

This is concurrency related. So the SubmitChanges() fails, and a ChangeConflictException is thrown. For each ObjectChangeConflict in db.ChangeConflicts, its Resolve is set to ...
3
votes
7answers
266 views

Is MSDN website sufficient for C# self-learning?

I know there are plenty of books on C#, but I'd rather learn by reading articles/guides and watching video tutorials. Would Microsoft's MSDN website be enough to teach myself C# in depth? Thank you. ...
3
votes
3answers
324 views

Appropriate MSDN Subscription

I am looking for advice on the most appropriate MSDN license (without overpaying) for the following development team. We are essentially a (3-5 developers) SharePoint/.Net development team that will ...

1 2 3 4 5 6