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
-2
votes
1 answer

loading multiple libraries by using loadlibrary function

I want to load the following libraries. librariesmozcrt19.dll nspr4.dll plc4.dll plds4.dll mozsqlite3.dll nssutil3.dll softokn3.dll nss3.dll I know the single library can be loaded as HMODULE hDLL=LoadLibrary(pDLLName); But I'm not getting how…
-2
votes
1 answer

SPSite Class - MSDN documentation

I realise this is a silly question but the MSDN can't be accessed from my network "Server Error: 502 - Web server received an invalid response while acting as a gateway or proxy server." and I can't just sit here and twiddle my thumbs. I know of no…
Amicable
  • 3,115
  • 3
  • 49
  • 77
-3
votes
1 answer

Is there any winapi call to get notify when an event occured

I am monitoring process activity on a windows machine. I got one useful link from MSDN saying important Events to Monitor with this information I started building a small piece of code using WINAPI call - SetWinEventHook The code is below But using…
Yuvraj Takey
  • 87
  • 1
  • 11
-3
votes
1 answer

What are the methods that are called when we invoke UpdateWindows() in MSDN?

I have an application where I am passing a handle ID of a window and calling UpdateWindow() method on that.The Problem is for small applications like notepad it takes hardly some 100 ms to finish updating the window,where as for my application it…
Srikant Barik
  • 133
  • 2
  • 12
-3
votes
1 answer

Microsoft Visual Studio 2017 availability on MSDN

I understand VS 2017 will be launched on March 7th. Any idea if it'll be available on MSDN sooner? I did some research but couldn't find any information about this.
Sam
  • 26,817
  • 58
  • 206
  • 383
-3
votes
1 answer

Getting handle to the setting window of Edge browser

In Edge browser, how can I get the handle to the settings window, once I have the handle to the browser itself? I've tried to use GetNextWindow(m_browserHndl, GW_HWDPREV) API but it returns something else.
Sanich
  • 1,739
  • 6
  • 25
  • 43
-4
votes
1 answer

What is the different between consume and delegate template quoted from WinRT header?

Why is a struct consume defined without using template type? What is the difference between consume_t and delegate_t? template struct consume; template using consume_t = typename consume::template…
mopodafordeya
  • 635
  • 1
  • 9
  • 26
-5
votes
1 answer

What is the purpose of adding a pointer in: typedef unsigned char UCHAR, *PUCHAR;

What is the purpose of adding a pointer in: typedef unsigned char UCHAR, *PUCHAR; (there are a lot of other examples of typedefs with additional pointers) I found that next to UCHAR stands *PUCHAR pointer and checked sizeof(UCHAR) and sizeof(PUCHAR)…
SmilingMouse
  • 132
  • 1
  • 2
  • 15
-5
votes
1 answer

How to use the MSDN

This might seem like a stupid question, but the documentation is either bad or I'm missing something i didn't read. Everytime i refer to the MSDN for c++ related questions I'm always confused. Like the SetComputerName function. I looked up the MSDN…
1 2 3
72
73