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

learn more… | top users | synonyms

0
votes
1answer
14 views

How to set up basic WCF service - client application?

I am new to WCF and I try to create my first WCF service - client application. I use Visual Studio 2010. I create WCF Service application I try to add service reference to my another project. After ...
0
votes
0answers
12 views

How does WaitForSingleObject handle missed events?

for a multi-threaded application (two threads) I have the following use-case: Thread A sets an event to reactivate thread B. Thread B uses WaitForSingleObject() to wait for this event. Thread A ...
0
votes
0answers
11 views

Driver building on Visual Studio 2012 ultimate edition

I'm new to Visual studio 2012 , i was working on VS2008 earlier. i'm trying to build kernel mode driver using VS2012. but for each driver i open, i'm getting one driver project and one driver-package ...
0
votes
3answers
43 views

What does this bit of MSDN documentation mean?

The first parameter to the EnumFontFamiliesEx function, according to the MSDN documentation, is described as: hdc [in] A handle to the device context from which to enumerate the fonts. What ...
0
votes
0answers
23 views

Fujitsu fi-6130z scanner doesnt work on Windows server 2012 using Remote Fx USB Redirection

I'm using Wyse WES7 SP1 client and using RDP, i'm connecting to RD Host Server 2012 standard edition with Remote FX enabled. scanner is able to redirect using Remote Fx and i've installed appropriate ...
0
votes
2answers
24 views

Adding a new record to a typed dataset error

I have used the example from MSDN for adding a new record to my DataSet. I have even used the same variable names to keep it simple. C# Code NorthwindDataSet.CustomersRow newCustomersRow = ...
0
votes
1answer
12 views

Navigation Timing API domInteractive fired before responseEnd (dom interactive fired before response end)

According to the Navigation Timing API documentation, DOM Interactive is triggered when the whole document is parsed. ResponseEnd is triggered when the last byte of the response is received. Looking ...
0
votes
1answer
20 views

What does MSDN mean when it says some API is not supported?

Consider the SHGetSpecialFolderPath MSDN documentation. At the very top of the page, it says: SHGetSpecialFolderPath is not supported. Instead, use ShGetFolderPath. Does this mean that this ...
0
votes
1answer
19 views

ConfigurationSaveMode in C#

ConfigurationSaveMode defines 3 ways to save a file according to msdn http://msdn.microsoft.com/en-IN/library/system.configuration.configurationsavemode.aspx 1) Full save: The entire configuration ...
0
votes
0answers
19 views

MSDN function CreateFileA all-ways gives the same handle for different UART COM Inetrfaces?

I have question about opening a comport connection with UART interface. I am using the MSDN function CreateFileA to open a connection with UART interface but it is always giving with same handle. I ...
0
votes
0answers
35 views

how do i use msdn windows 7 taskbar solution in my solution?

ive downloaded archive from there http://archive.msdn.microsoft.com/Windows7Taskbar/Release/ProjectReleases.aspx?ReleaseId=2246 , but i dont know how to integrate it in my project. What i need is ...
0
votes
1answer
23 views

Where are UDP_TABLE_CLASS values defined?

I want to call GetExtendedUdpTable function from Iphlpapi.dll shared library, but I don't know from where to get the UDP_TABLE_OWNER_PID value, so I can pass it to the function. I don't have Windows ...
0
votes
0answers
21 views

Where's source code on this page (MSDN)? [closed]

http://msdn.microsoft.com/en-us/library/ff724701%28v=expression.40%29.aspx I saw some tip but i didn't see source code to download, can u help me? Microsoft jokes us :(
0
votes
1answer
33 views

Default icon for .exe file regardless of Windows version

I show a bunch of exe files in a listview, and I want to show their default icon, but if the exe file has no icon resource, I would like to show the Windows default application icon regardless of the ...
-6
votes
0answers
34 views

My account on MSDN is banned without any reason how is this possible? [closed]

My account on MSDN is banned I did not get any email about this and there is no message too I know that stackoverflow has many MSDN reputable members and moderators can you please check the issue ...
0
votes
0answers
31 views

Get VID & PID for disk drive vc++ [duplicate]

I have a device which is seen as disk drive in the system. My aim is to search for device instance path using disk GUID and then be able to send custom commands to it. I have no troubles doing it but ...
0
votes
1answer
29 views

SetVolumeLabel function getting failed due to access denied error on Windows 7

SetVolumeLabel function getting failed due to access denied error on Windows 7. Same function works fine on Windows XP. Any idea why this problem is coming on Windows 7 and not on XP. Any help ...
0
votes
0answers
154 views

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" ...
-1
votes
1answer
46 views

Is it safe to assume the following about the Windows Loopback interface? [closed]

Is it safe to assume that the Loopback Interface on Windows NT 5.1 - 6.2: has always the Interface index number = 1 ? is always simulated as a live/connected interface ? is singular (i.e. there ...
1
vote
1answer
71 views

clean window socket internal buffer

I am wondering if there is a way to clean up window socket internal buffer, because what I want to achieve is this while(1){ for(i=0;i<10;i++){ sendto(...) //send 10 UDP datagrams } ...
3
votes
2answers
61 views

Is there a registry of which Windows functions returns what error codes?

I'm on the troubleshooting end of a obscure problem and all I have is this error code and I need to work backwards from that, it would really help my cause if I could identify what Windows function ...
0
votes
1answer
238 views

Creating and Accessing WCF Services. Visual studio 2012 gives error

I were studying WCF here http://msdn.microsoft.com/ru-ru/library/bb386386.aspx and I successfully did Testing the Service step. However in Accessing the Service step I faced problems. It builds ...
0
votes
0answers
24 views

How to store PageSetupDlg values in the variable - vc++

I want to 'populate' the above structures with the selection that the user has entered. For example if the user selects 'A4' and 'Landscape' in the PageSetupDlg form, I want to store these settings in ...
1
vote
1answer
44 views

MSDN SocketAsyncEventArgs exapmle: how many threads are created?

I look at MSDN SocketAsyncEventArgs example and cant quite get how many threads will be created in case of 100 infinitely writing onto us clients? Or better if we'd change ProcessReceive into some ...
0
votes
2answers
211 views

MapFromSkeletonPoint obsolete in Kinect

I ran into an issue with the Kinect SDK because some code I want to use is utilizing outdated classes. I am building it out as a x86 program in VS2010 in Windows7. The current Kinect SDK is at version ...
3
votes
2answers
141 views

How to replace malloc with new in example

I'm following a C++ msdn reference for Managing IP Addresses. The memory allocation in the example is using malloc instead of new. It is my understanding that malloc should never be used in C++. How ...
2
votes
1answer
84 views

Implementing __cpuid example from MSDN gives insanely large numbers

I'm quickly implementing this code http://msdn.microsoft.com/en-us/library/hskdteyh(v=vs.80).aspx into my program, since I needed to get some CPU info, however when i get to this part of the code: ...
0
votes
2answers
60 views

Decode an IP_ADAPTER_ADDRESSES structure returned into memory by GetAdaptersAddresses Windows API function?

I have an AHK script that I need to get various info about a particular network interface. To do that I do a dll call to IPHlpAPI library for the GetAdaptersAddresses function, which returns a ...
0
votes
1answer
52 views

There are two versions of RichTextBox in msdn. Why do exist two versions?

There are two versions of RichTextBox in msdn (.NET Framework 4.5.). Why do exist two versions? They all have different properties. For example look at AcceptsReturn. I don't know what is the ...
0
votes
1answer
116 views

Incorrect Function Call “IOCTL_DISK_GET_DRIVE_LAYOUT_EX”

I am currently trying to write a C++ program to automate retrieving information about the partitions of a sample hard-drive image, the information in question being the number of partitions on the ...
0
votes
2answers
144 views

Getting a specific value in a Datagrid in MSDN visual basic

So I have a simple question, but after so many Google searches I cant seem to find a good example. I'm trying to get a very specific cell from a datagrid. I Know the datagrid is working, as it runs ...
0
votes
0answers
138 views

GetAsyncKeyState() fails to return state of keyboard/mouse, while WM_KEYDOWN messages seem to work fine

I'm writing a game where I use GetAsyncKeyState() for character control like WASD and mouse buttons, and the windows messaging system for menu stuff like text input and cursor control. Every once in ...
6
votes
2answers
123 views

Preventing to dispose objects multiple times

Consider the following code: using (Stream stream = new FileStream("file.txt", FileMode.OpenOrCreate)) { using (StreamWriter writer = new StreamWriter(stream)) { // Use the writer ...
0
votes
3answers
59 views

Why does this work even though the function is not called with a pointer to a pointer as a parameter?

In a code from MSDN, there is this: HRESULT DemoApp::LoadBitmapFromFile( ID2D1RenderTarget *pRenderTarget, IWICImagingFactory *pIWICFactory, PCWSTR uri, UINT destinationWidth, ...
-1
votes
1answer
103 views

Why wont this code, almost identical to one from MSDN, won't work?

I have left some //Comments to help you navigate through the issue I have Main.cpp int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nShowCmd) { Game game; ...
0
votes
0answers
99 views

Kinect events just stop firing after a few minutes

I had this issue with voice recognition with kinect on an earlier project (now on hold) but I was working on an image processing project and right at the start I'm having an issue with kinect events ...
0
votes
0answers
66 views

Is there an easy way to get device info (ClassGuid, DevInst) from friendly name of win32 device as in DEV_BROADCAST_PORT.dbcp_name?

It is pretty straight forward to go other way around. However I'm interested in finding out other device properties from a friendly name. The reason for this is that I'd like to detect when specific ...
0
votes
2answers
119 views

CreateFile() return an invalid pointer with the address FFFFFF

I just want to read a file using the function CreateFile such as following : #include <iostream> #include <windows.h> #include <stdio.h> int main(int argc, char **argv) { ...
4
votes
1answer
115 views

Commands in MVVM

I've been seeing tutorials where people are creating the methods like CanExecute in their code. I'm assuming they are doing this to help the reader understand how it all works. When I look up Command ...
0
votes
0answers
6 views

AEERR_NOT_INITIALIZED header file

Does anyone know where this error code is defined for windows - AEERR_NOT_INITIALIZED? They have it in several msdn docs: http://msdn.microsoft.com/en-us/library/windows/desktop/dd408138(v=vs.85).aspx ...
2
votes
1answer
98 views

Windows Service - Crashes At Startup

I have built a windows Service to monitor a few settings on our servers, I have developed quite a few WinForm and WPF apps but I am an absolute newbie when it comes to Windows Services, which is why I ...
0
votes
0answers
199 views

MSDN integration in Visual Studio 2012 Professional-with-MSDN versus Professional-without-MSDN

I have a two-part question. 1.) What is MSDN integration, and does Visual Studio 2012 Professional with MSDN have more MSDN integration than Visual Studio 2012 Professional? The "Visual Studio ...
0
votes
0answers
22 views

Is Access 2000 available on MSDN? [closed]

Is Access 2000 available on the MSDN subscription? All I can see is: Access 2.0 Access 2003 Access 2007 Access 2010 Access 2013
1
vote
2answers
472 views

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: ...
0
votes
0answers
106 views

Outlook 2010 Items.Find - finding entryID for each mail

I'm using Python to automate Outlook using COM. I'm having quite a bit of success. However, while using "Items.find" I can print out resultItem.SenderEmailAddress or resultItem.Subject etc however ...
1
vote
0answers
34 views

appendChild xml c++ not working as needed

Why after doing appendChild I can read the next node?????? (newChildList->get_item(count,&pNewChild)) The appendChild API is not working as it should be. After I put this line, I am not able to ...
-1
votes
1answer
36 views

Are there any decent libraries for generating web documents in C#? [closed]

I'm looking at generating web-documents at runtime. This means generating the html, and JavaScript and css. Are there any advanced libraries? Or am I going to be going at by creating the html document ...
0
votes
3answers
352 views

Trying to Read Strings from a Binary File

Here is a simple program I made just trying to write a couple variables to a binary file, and then reading it back. I'm trying to figure out how to read a string from a binary file. It wrote it ...
1
vote
1answer
210 views

Outlook automation / Object Model query (Python) - unique ID for each email?

I've been using the MSDN to build a simple app that automates some Outlook 2010 basics. It's going well, but I'm just stuck at something simple I think. My question is this: I've been able to get ...
0
votes
0answers
96 views

InternetQueryOption returns empty with INTERNET_OPTION_PROXY_USERNAME

I am trying to get the proxy details including UserName and password from an application running behind a proxy server. I use InternetQueryOption() with INTERNET_OPTION_PROXY_USERNAME option. I see ...

1 2 3 4 5 9