Author Topic: Passing variables from plugin  (Read 3961 times)

Jericho_fever

  • Newbie
  • *
  • Posts: 6
Passing variables from plugin
« on: November 12, 2018, 04:42:20 AM »
Trying to pass variables from plugin to other projects, for example a winform textbox. I have tried everything I could find on passing variables from DLL but cant seem to get it to work. What would be the simplest way.

Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: Passing variables from plugin
« Reply #1 on: November 12, 2018, 05:43:22 AM »
If by "other projects" you mean applications you're writing, you should look into inter-process communication.

Here is a high-level overview of what's available through native Windows APIs, and here is a discussion as to which method is best suited for simple asynchronous communication, assuming both sides are written in C#.

Jericho_fever

  • Newbie
  • *
  • Posts: 6
Re: Passing variables from plugin
« Reply #2 on: November 13, 2018, 04:17:04 AM »
Thank you, I was wanting to pass a variable from va_Invoke1 to a winform textbox for display but winform cant see it. I appreciate your response and am looking into it.