Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.
By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.




If I'm able to configure my dll to start when FSX starts (by dll.xml file), I don't know which method will be called first (an entry point)...so my dll starts up then...nothing
The only thing I miss is the entry point name.
Right?
Or am I missing anything?

What kind of project are you using?
Unless you want to do some lowlevel hacking, DLL produced in a managed environment can't be used, since you can't add the Start/Stop functions.
You will have to use develop an unmanaged C++ DLL, with C# it's (almost) not possible. You'll have to wrap the DLL in an unmanaged DLL.
Daniel
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Form1 ola = new Form1();
Application.Run();
}
}
Trust me you don't need a managed dll.
Just do a formless managed application (in fact, a form application that doesn't show the form) like this
Code:static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Form1 ola = new Form1(); Application.Run(); } }
hook the exe to fs start by using exe.xml file.
In my site you can find several source code files that will allow you to connect to fsx without any "connect button".
It's an old habit in fs: do dll. Why people still do that (except in some particular case) beats me.
José