another, although its directx 8, but it shows it anyway:
http://msdn.microsoft.com/
Main Topics
Browse All TopicsI have a VB.net app in Visual Studio 2008 that I need to add a small amount of 3D graphics to. I have the newest Directx SDK. I am familiar with VB but new to Directx.
I am able to make shapes and graphics from within the app by defining vertices etc, but these are just simple shapes. What I would like to do is import the .X files I have made from 3DS Max into my VB app.
I have seen references online to a D3DXLoadMeshFromX method, but I do not see it anywhere in the Directx SDK, and all examples I see attempting to use this method are in C++. Could I get some help on how to use my .X file in my VB app?! Thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
another, although its directx 8, but it shows it anyway:
http://msdn.microsoft.com/
oh sorry your right. the Mesh-class has a static member-method called FromFile
Mesh m = Mesh.FromFile( "file.x" ...
here is the doc:
http://msdn.microsoft.com/
and here's an example:
http://www.riemers.net/eng
Thanks ikework, mesh.fromfile() is exactly what I was looking for and got me on the right track.
Another good example is the "progressive meshes" example at http://www.codesampler.com
p.s. your last example was C# not VB :)
Business Accounts
Answer for Membership
by: ikeworkPosted on 2008-02-12 at 09:24:22ID: 20876818
hi andyfett
erence/art icles/arti cle1606.as p
here is an example:
http://www.gamedev.net/ref
ike