Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Where to get header files?

Status
Not open for further replies.

ilyad

Programmer
May 9, 2003
251
US
Hello,

Do you know a website where I can get header files .h which are referenced in MSDN? Such as commctrl.h for example?

Can I use these header files with no change in VFP?

Appreciate your responses.
 
Ilyad,

I don't know of any central place to find these files. Usually, you wouldn't look to download a particular file. Rather, you would look for a place that contains the values of the constants referenced by the controls.

One way to get that information is in the VFP object browser. If you read the Help for the object browser, it will tell you how to find all the "enumerated constants" for a given component. Those are the values that you will put into your header file.

Alternatively, don't use a header file at all. Just use the numeric values of the defined constants in your code.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My Visual FoxPro site: www.ml-consult.co.uk
 
Mike,

Thanks a lot for your response. However, I still need to get these files. I can find most constants at but I still may want to at least look at the header files. I wish Microsoft will give us a link in KB articles to these files.

Yesterday I tried google search for commctrl.h and it was to no avail.
 
the commctrl.h file comes with

MS SDK Download (Free)
M$ Visual Studios (Not Free)
M$ Visual Studio .NET (Not Free)



David W. Grewe (Dave)
 
Thanks, JanBucek. I think I can get constants for type library from the Object Browser. I was talking about constants that accompany most Windows API functions.

DWGrewe, thanks. Can you post links, please?
 
> I think I can get constants for type library from the Object Browser. I was talking about constants that accompany most Windows API functions....

so do I: You can extract with GetConstants constants from any type-library (dll, olb, tlb, ocx, exe ..) that contains it and save them into ready to use header file.
Examples: DBgrid32.ocx, wscript.exe in %win%/system32, excel9.olb in Program Files/Microsoft Office/Office and many more.
 
GOOGLE "MS SDK" Found

SDK Update - HomeThe SDK Update site.
- 4k - Cached - Similar pages

Download details: Speech Software Development Kit 5.1The Microsoft Speech SDK 5.1 adds Automation support to the features of the previous version of the Speech SDK. You can now use the Win32 Speech API (SAPI) ...
- 33k - Cached - Similar pages
[ More results from www.microsoft.com ]

Microsoft .Net Framework SDK QuickStart TutorialsInformation about the most compelling features of the .Net Framework technology.
samples.gotdotnet.com/quickstart/ - 1k - Cached - Similar pages

Microsoft Developer NetworkNET Framework 1.1 Service Pack 1 · DirectX SDK - (February 2007) · SQL Server 2005 SP2 · Visual Studio® 2005 Team Suite SP1 · Windows Media Encoder 9 Series ...
msdn.microsoft.com/ - 77k - Cached - Similar pages

Visual Studio Express: Using Visual C++ 2005 Express with the ...Follow the instructions and install the SDK for the x86 platform. ... Executable files: C:\Program Files\Microsoft Platform SDK for Windows Server 2003 R2\ ...
msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ - 26k - Cached - Similar pages
[ More results from msdn.microsoft.com ]

SDKs, Redistributables & Service PacksThis SDK includes everything you need to write, build, test, and deploy . ... NET Framework version 2.0 Redistributable Package prior to installing the SDK. ...
msdn2.microsoft.com/en-us/netframework/aa731542.aspx - 9k - Cached - Similar pages

Welcome to the Windows SDKWelcome to the Microsoft® Windows® Software Development Kit (SDK) for Windows Vista™ RC1.
winfx.msdn.microsoft.com/ - 9k - Cached - Similar pages

Download details: Microsoft Provisioning System SDKISVs and Hosters can use the MPS SDK to develop applications that are enabled for multi-tenancy capability.
ms.helifan.net/downloads/details.aspx?FamilyID=ce3fc537-86ae-4802-9a05-43e2a27a4b45&displaylang=en - 27k - Cached - Similar pages

O'Reilly -- News -- MS SOAP SDK vs IBM SOAP4J: Comparison & ReviewIBM and Microsoft, have both recently released two vastly different (and unfortunately, incompatible) reference implementations of SOAP.
- 30k - Cached - Similar pages

Microsoft Windows SDK BlogNET Framework, different versions of Visual Studio, the Windows SDK for ... The CNG SDK is now available for download on the Microsoft Download Center. ...
blogs.msdn.com/windowssdk/ - 103k - Cached - Similar pages



David W. Grewe (Dave)
 
Thank you all for your help. Much appreciated.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top