I need a small communicator between an application/background process and the gadget, I think its easiest to make own activex module that has just getText() and setText(). I need to pass a string once per second or so. I guess the activex object should use shared data so that another new activexobject() (created by javascript gadget page) would have access to data set by EXE.
what would be the best way to do this activex ? should I call some myactivex.setText() method from running process, but how to make the data shared between activex modules in this case? which THREADING mode to choose? does INSTANCING affect something? Should I create Automation object from delphi GUI?