LittleJK wrote:
Really how do you connect different apps? we thought about doing something like that to share the load in our MDI application with OLE but we didn't put much time into it. |
Ya know... I really have not decided what to do with that yet
I am not conceited enough to think that I am the only person that has ever thought of it... but I sure have not seen anything before that lets you have multiple standard aps that can communicate with each other directly ... call each others functions... use each others variables.... etc.... just like they were another form inside the same app.
Reason I built it was because I wanted to my app to be extendable easily... and at the same time allow the extensions to be written in any language that is wanted to be used.
Played around with using Active-X exe's ... which accomplishes the same thing... but creates a huge headache also.
... guess the best way thing I can say about this is this is one of the great advantages of being 100% self taught... I normally find out what is impossible after I have already done it
Should mention that in its current form... I have most of the code for it in a com dll... but that could be put into a regular windows dll also with no problem.
Other nice thing is that with the way I have it written... the only thing that has to be done to connect the new app with the main app (which then allows any other connected apps to access it, if allowed) is to load up the dll either at design time or run time... and call one command - then everything has access... and each app is also automatically ready for any scripting language that has an active scripting extension.
... so long story short - I really have not decided if I am going to do anything with this yet... and even if I do just decide to release it... - I seriously need to check out a lot of applications that already exist and find the ones that I can use this method to access - which I promise ya there is a ton of ... and that would be a slight security issue.
|