- Web 2.0 Summit Opening Session
- Web 2.0 - A Conversation with Eric Schmidt
- JSF: The 7-Layer Burrito I Won’t Eat Again
- JSF: Leaky Abstractions (Grab a Mop)
- ZDNet Hebdo Podcast - 20 au 24 novembre 2006
- Vittorio Bertocci: WS-Trust - Under the Hood
- Identity
- Kim Cameron - Identity Laws
- InfoCard Explained
- Zdot Podcast: Why You Need Hibernate
- Zdot Podcast: Key Hibernate Features
- .NET Rocks! #204 - TechEd Europe Interviews
- XAML Application : very inspiring example of what you now can do with WPF rich clients.
- Podcast 01net. du 1er décembre 2006
Monday, 27 November 2006
What I listened to this week #2
Monday, 20 November 2006
Books I currently flip through...
Code...
Architecture...
- Patterns of Enterprise Application Architecture
- Head First Design Patterns
- Writing Secure Code
- Oracle Security
- Mythical Man-Month, The: Essays on Software Engineering, Anniversary Edition
- The Java™ EE 5 Tutorial, Third Edition: For Sun Java System Application Server Platform Edition 9
- Microsoft® Windows® Internals, Fourth Edition: Microsoft Windows Server™ 2003, Windows XP, and Windows 2000
Others...
Mixing legacy MFC code with Windows Forms (Part 2)
I know how to call unmanaged code from a managed class.
How to do the opposite?
This piece of code
returns the following error:
Error 1 error C3265: cannot declare a managed 'm_rigging' in an unmanaged 'MFCControls::DiagramContainer'
Hints:
http://www.ondotnet.com/pub/a/dotnet/2003/03/03/mcppp2.html?page=last
Solution:
Use gcroot
m_rigging can be used as a usual Rigging^ object. You reach the members using ->
public class DiagramContainer
{
private:
// Managed reference to some data
Rigging^ m_rigging;
};
public class DiagramContainer
{
private:
// Managed reference to some data. gcroot makes it look like an unmanaged type
gcroot<rigging^ > m_rigging;
};
Sunday, 19 November 2006
What I listened to this week #1
- ADO.NET 2.0 - Interview with Wally McClure
- Michael Surkan: Introduction to IPV6
- Windows, Part I - Dave Probert
- Windows, Part II - Dave Probert
- Windows, Part III - Dave Probert
- Windows, Part IV - Dave Probert
- Brandon Bray: VC++ 2005
- The Advancement of Windows: Ales Holecek - Windows Shell (Windows Explorer, Desktop Search, UAC, Aero)
- WS-* specifications
- Arun Kishan - Process Management in Windows Vista
- .NET Rocks! #203 - Bill Wagner and Diane Marsh on Non-MS Technology
- Sahil Malik on Sharepoint 2007 Part 1
- Next Generation Gaming Systems
- The Basics of Vocal Harmony
Subscribe to:
Posts (Atom)