• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    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.

Recent content by cyourth

  1. C

    Converting Guid to _GUID using C#.NET

    Good Old Microsoft If Microsoft didn't want the developers to use these methods, then don't include them in the API, or document the methods that do not work as of release dates... Maybe we should invoice Microsoft for wasting our development time :D
  2. C

    Something to start TakeII

    Good Example, but what about some work-arounds! Good job JC! The example shows some of the C# methods that are currently working in SimConnect. ;) What about possible work-arounds for the CompleteCustomMissionAction() and ExecuteMissionAction() methods in C#... I'm trying to use C#...
  3. C

    Converting Guid to _GUID using C#.NET

    Custom Action I created a mission based custom action, with a timed trigger. The C#.net application is receiving the custom action event, with the correct payload string. This C#.net application is now trying to call ExecuteMissionAction( _GUID ) method, with a valid GUID mission...
  4. C

    Converting Guid to _GUID using C#.NET

    C#.net version of ExecuteMissionAction(_GUID) still not working in SP1A release So it looks like the C#.net version of SimConnect.ExecuteMissionAction(_GUID) and SimConnect.simconnect.CompleteCustomMissionAction( _GUID) methods are still not working correctly in the new SP1A SDK release...
  5. C

    How do you use ExecuteMissionAction() or CompleteCustomMissionAction() in C#.NET

    Does anyone have code examples for implementing the SimConnect.ExecuteMissionAction(_GUID) or SimConnect.simconnect.CompleteCustomMissionAction( _GUID) methods in C#.NET :confused:
  6. C

    Converting Guid to _GUID using C#.NET

    This doesn't seem to work... [StructLayout(LayoutKind.Sequential, Pack = 1, Size = 0x10)] The following error is still generated: _GUID guid = new _GUID(); simconnect.ExecuteMissionAction(guid); Error 1: Argument '1': cannot convert from 'Managed_Client_Event.Form1._GUID' to...
  7. C

    Converting Guid to _GUID using C#.NET

    Has anyone tried using the C#.NET version of SimConnect.ExecuteMissionAction(_GUID) or SimConnect.simconnect.CompleteCustomMissionAction(_GUID) methods? Cannot seem to convert Guid data type to _GUID??? Found some info on Microsoft site, but code didn't work... Example Code...
Back
Top