you pretty much have to code that yourself. It's quite complicated
Hey guys, im writing my own vehicle specific Shell for windows, and i have alot of features, however overlooked Navigation. I dont mind if i can get C++ or VB lib's ActiveX's etc. The only activeX that i can find is 100% GPS position, in other words, it only finds longitude, latitude. That is it. How can i incorprate maps, directions etc in to my apps. Thanks in advanced.
you pretty much have to code that yourself. It's quite complicated
wow, i got a reply 2 years after asking the question. Thanks anyway
John
So, does that mean you finished it? Being that more than 2 years has passed and all.
i wish, i actually lost interest in the project and moved onto other things.
John
You could fairly easily use the SetParent function:
http://msdn.microsoft.com/en-us/libr...41(VS.85).aspx
Eg (in c#):
[DllImport("user32.dl")
public static extern IntPtr SetParent(IntPtr child,IntPtr newParent);
Then you just call SetParent with the child being the window you want to embed, and the parent being this.Handle.
You probably need to relocate and resize the window, search through the MSDN winapi functions and you'll find everything you need.
Bookmarks