Where can I find good ebooks to learn Win32?
-
Does anyone know any ebooks i can download to learn it pro or can anyone teach it to me i really want to get good at it
-
Answer:
I would doubt that any ebook would compare to http://www.charlespetzold.com/pw5/index.html. The book is 1479 pages of win. If you want to be a pro at the windows api, you should read it.
H4cKL0rD at Stack Overflow Visit the source
Other answers
The Win32 API is documented online on the http://msdn.microsoft.com/en-us/library/aa139672.aspx. If you want a downloaded/local copy of the documentation, subsets of it are included with the various http://en.wikipedia.org/wiki/Microsoft_Windows_SDK which you can download and install. I (personally) learned to program Windows using only the MSDN documentation (and, sample programs which are included with the SDK). I've heard of Petzold's book, obviously, but I haven't read it. I've used books to learn other aspects of software development (language, patterns, process, etc.), but not for the API.
ChrisW
I have found Python to be the 'easiest' learning curve on win32api... For example, Microsoft Outlook in python: import win32com.client outlook=client.Dispatch('Outlook.Application') message = outlook.CreateItem(0) message.Recipients.Add('Bill') message.Recipients.ResolveAll() message.Subject = 'test' message.Body = 'test' message.Send() If you download ActivePython, an IDE and all of the win32api libraries are installed. There is also a COM browser that allows you to see what is available. I have found that the easiest way is to just jump in and get your feet wet.
jle
Related Q & A:
- Where can i find good default layouts?Best solution by Yahoo! Answers
- Where can I find good proxies?
- Where can I find good a tutorial for creating a simple flash movie using Adobe Flash CS4?Best solution by Graphic Design
- Where can i find good Korean food in Bangkok?
- Where can I find good princess coloring pages?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.