Menu
  • HOME
  • TAGS

Where can I download Visual Foxpro? MSDN?

msdn,foxpro

A search for "FoxPro" on the MSDN subscriber downloads page yielded 7 results for me. Apparently, Visual FoxPro 7, 8, and 9 are available from the Visual Studio Professional level. More precisely, FoxPro 9 is availble for these subscriber levels: Available to these Subscription Levels: VS Pro with MSDN (VL)...

The Randoop open source project for .NET [closed]

c#,.net,unit-testing,msdn,randoop

I am not aware of any ongoing development of Randoop.NET. Microsoft Research did open-source the project, but that seems to be the extent of it. You can see their discussions webpage at http://randoop.codeplex.com/discussions (it has two conversations, both from 2011). The "feedback-directed test generation" approach that is implemented by Randoop.NET...

Other semantics associated with the register keyword

c++,c,msdn

For example in C you cannot take the address of an object declared with register specifier. void foo(void) { register int a = 42; &a; // constraint violation } Another example, you cannot use register in a file scope declaration: register int b = 42; // constraint violation int main(void)...

ShellExecute returning success but file is not created

c,windows,msdn

ShellExecute() runs the specified process asynchronously. The reason fopen() is failing is almost certainly that the cmd process has not had enough time to actually create the file. There are a couple of ways to solve this. Probably the best one for your case is to instead use ShellExecuteEx() to...

Localization in Cordova+WinJS application

visual-studio,cordova,localization,winjs,msdn

I think you are missing the processing for those locale file resources. It should be on the pages/home/home.js on ready handler. Like this ready: function (element, options) { WinJS.Resources.processAll(); . . . } This makes use of the localizations and replaces those to places where they are used....

The namespace attribute has been set but is empty

.net,msbuild,wix,msdn,wix3.8

You have a typo here: <Using Namepsace="System.Data.Sql" /> Change Namepsace to Namespace...

Can't find any Directx3D 12 examples

windows,msdn,visual-studio-2015,windows-10,directx-12

The samples are currently only available to developers on the DX12 Early Access Program and are not currently available despite the documentation making reference to them. There is one public sample available that I know of here. Take a look at Sample3DSceneRenderer.cpp for an example of how to render something...

WMI ProcessorType

windows,wmi,hardware,cpu,msdn

Sounds to me you are asking for a warranty. You cannot get one, this information is not supplied by WMI or the operating system. Like much of the WMI data, this comes from a driver. The chipset driver, invariably supplied by the chipset manufacturer, companies like Intel, AMD, NVidia. They...

Suppressing verbs in Outbound Message in WCF-WebHttp Transport

rest,biztalk,msdn,biztalk-2013

By default BizTalk sends a message payload (content-body) when it sends. When you are trying to use a RESTful service and want to do a GET you usually don't want to send a message payload, you just too fetch the contents from a URL, hence you want to suppress sending...

how to add leapyear in DOB using datediff SOLVED thanks

vb.net,msdn

To answer your question, here is one way to handle the failing of a convert to date: Dim dateAsText as String = Me.cboMonth.Text & "-" & Me.cboDay.Text & "-" & Me.cboYear.Text If Not Date.TryParse(dateAsText, dob) Then 'handle what to do if not converted to date Else 'continue with coding... End...

How can I carry license information between different installations of an app?

c#,windows-phone-8.1,msdn

You can try to create an in-app purchase item with zero price. So when the user enters the code, then make him buy that item for $0. Once bought, it will be associated with his account, and be transferable across devices

What are these extra parameters when calling SendInput via win32API

ruby,winapi,struct,msdn

The function call takes a union of those structs, I would wager it has something to do with that. Looks like MOUSEINPUT is larger than KEYBOARDINPUT: typedef struct tagMOUSEINPUT { LONG dx; LONG dy; DWORD mouseData; DWORD dwFlags; DWORD time; ULONG_PTR dwExtraInfo; } MOUSEINPUT, *PMOUSEINPUT; Dunno for sure though, that...

Range.Find straight from MSDN not working, Application-defined or object-defined error

excel,vba,excel-vba,msdn

Restarting Excel fixed the problem. It was a glitch plain and simple, not sure what caused the behavior though. Thanks to everyone who helped.

SQL Server 2014 MSDN License [closed]

sql-server,msdn

MSDN licence covers development and testing only. For running in production environment you can use free Express edition of SQL Server....

What is the latest version of Entity Framework?

entity-framework,version,msdn

EF 6.1.3 is the latest version at this time, released back in March, and at least officially mentioned in Monday's RTM of VS2015 http://blogs.msdn.com/b/adonet/archive/2015/07/20/entity-framework-and-visual-studio-2015-rtm.aspx However, 6.1.3 is mostly minor bug fixes, which is why there was little fanfare and mention I believe....

WP8 App Bar colored IconButton Image?

c#,windows-phone-8,msdn

It's not possible. Framework uses appbar icon as a bitmask to create white theme icon automatically. This is why it should be white on transparent.

Azure - Credit spread across multiple subscriptions

azure,msdn

You can't transfer free credit between them. The idea of the MSDN credit is for Development and test (not production) purposes for the individuals who have the subscription, so things should be torn down regularly anyway. There is such a thing as "Organizational Accounts" coming into azure (I think it's...

PeekMessage triggers WndProc callback

c,winapi,msdn,internals

That is as expected, and is documented. PeekMessage is one of the functions that dispatches sent messages. From the documentation: Dispatches incoming sent messages, checks the thread message queue for a posted message, and retrieves the message (if any exist). And then later in the same document: During this call,...

Visual Studio 2013 Update 2 RC isn't installing ( Error: Update 2 RC does not apply, or is blocked by another condition on your computer.)

c#,visual-studio,visual-studio-2013,msdn

The above answer never helped me. The problem was my Operating System wasn't detecting my Visual Studio 2013, even though i tried to reinstall it, instead it was already installed but was never detected by computer. I used cmd to uninstall VS2013 by command eg. "uninstall c:/...devenv.exe /Force" and then...

WM_PRINTCLIENT (and related) documentation confusion-related questions

winapi,paint,msdn

What value should I return from my window procedure? You return 0 to indicate that the message was handled. Do not call DefWindowProc(). but the LPARAM lists all the possible WM_PRINT flags That was a bit sloppy, a copy/paste fumble from the WM_PRINT article. The only flags you should...

Missing definition from ACCESS_MASK

windows,msdn

Now i noticed they possibly are relicts of the following flags #define STANDARD_RIGHTS_READ (READ_CONTROL) #define STANDARD_RIGHTS_WRITE (READ_CONTROL) #define STANDARD_RIGHTS_EXECUTE (READ_CONTROL) that now were integrated with the READ_CONTROL flag. mystery solved....

LPCSTR has no 'long' and UINT_PTR has no pointer?

c++,c,pointers,msdn

Referring "long pointers" (LP-types): There where times (pre-Pentium) where you had long and short pointers. And as the WINAPI already existed during those times, and today still tries to stay compatible to code of those days, the LPsomething-types survived. Referring UINT_PTR: That's an integer wide enough for holding the value...

How to properly implement the button event when tapped or pressed, changing colors?

c#,xaml,windows-phone-8,msdn,uielement

Most correct way of doing that is to edit the template. In Visual Studio 2013, right click the button, select "Edit Template" and "Edit a Copy". Then, modify the style that was created for you - and change the Storyboard for the pressed state (I added a ///////// to wrap...

Why is IMarshall Interface queried on IUserNotificationCallback COM object?

c++,winapi,com,notifications,msdn

nowhere in the documentation it is mentionned that I should answer to this IID Any COM object might be queried for an interface, which is unknown to the object. It is normal and more to this, it is mandatory for a COM object to respond to this correctly and...

Is “XM_CXSMICON” a misspelling of “SM_CXSMICON” in these MSDN pages?

winapi,msdn,errata

Yes, that is a typo. It should read SM_CXSMICON x SM_CYSMICON.

How to dowload/upload file onto a users onedrive

c#,msdn,live-connect-sdk,onedrive

Make sure you're updated to use the Live SDK 5.6 binary. Be sure to let us know if you have any other problems with OneDrive integration!

Unable to retrieve the month from date parameter using vba function in mdx

sql,oracle,mdx,msdn,mdxstudio

(try uppercase 'MM' rather than 'mmm' - even 'mm' is wrong as it will look for minutes rather than months) This question and answer looks at working with dates: Changing a date format to a shorter date MSDN is a good reference for the available vba functions in mdx that...

How return number of the word in text onclick or tap

c#,unity3d,ms-word,msdn

What you should do is use a dictionary where each word is the key value. public Dictionary<string, int> AnalyzeString(string str) { Dictionary<string,int> contents = Dictionary<string,int>(); string[] words = str.Split(' '); foreach(string word in words) { if(contents.ContainsKey(word)) { contents[word]+=1; } else { contents.Add(word,1); } } return contents; } With this you...