What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: newbie wants to call C++ program
Visual Basic does not export the DLLs when you compile it. You need to create an ActiveXObject for it. [code]var MyActiveXObj = new ActiveXObject('ProjectName.ClassName'); MyActiveXObj.MyFunction('hi', 'we', 'are', 'params);[/code] [url=http...
mattyScripting08-29-2007 at 01:03 PM
RE: newbie wants to call C++ program
C++ Dlls do not need to be registered and they have their functions Exported so you can simply call it like so. [code]Interop.Call('dllname.dll', 'FunctionName', <params>);[/code] The OleFiles is for Dlls that need to be registered before they ca...
mattyScripting08-29-2007 at 12:48 PM
send message withouth knowing windowhandle?
Hi, I am a script developer for the salling clicker(software for using any bluetooth phone as a remotecontrol for the computer) and right now, I am creating a script for using msn on your phone, through salling clicker. I was just wondering if it is...
runariusScripting07-23-2007 at 01:01 AM
RE: [help] using dll
Are you sure the DLL has an export called Notify? Ezra: I don't think you can handle C structs in JScript easily.
vikkeScripting07-06-2007 at 11:54 AM
RE: [release] Status Icon Version 1.02
[url=http://svn.veggie.thedt.net/web/scripts/expor t/plsc/1/plus___Status__Icon___]Click here to download the script.[/url]
vikkeScripting06-09-2007 at 05:01 PM
[release] Status Icon Version 1.02
[code]/* * -------------------------------------------------- -------------------------- * Status Icon - By Chris (Veggie) Lane * -------------------------------------------------- -------------------------- * Version 1.02: * Updated: .icos packag...
VeggieScripting06-08-2007 at 07:50 PM
RE: Help with API
You can call almost any DLL export function with the MsgPlus! scripting. The calling method has to be stdcall, so the Windows 32 API works fine. The function does also have to return int (if you're going to read the return value). For example: You ...
vikkeScripting05-26-2007 at 06:48 AM
RE: [Request] Loading DLL
Hmmm have found the solution : the function is exported by Dev-C++ with an other name that specified... then Interop.Call() can't find the function within the DLL. :)
S4KurA_^Scripting05-15-2007 at 08:25 PM
[Request] Loading DLL
S4KurA_^Scripting05-15-2007 at 08:00 PM
RE: [Release] WLM Status Sync
that are bad news... is there any way to save the personalized status list online (I can provide a server) and let the other accounts update the list of personalized status without have to export/import settings???
warmthScripting04-15-2007 at 12:27 AM
Emoticon questions
I am making an independent App. for export/import emoticons, I had tried to use scripts to reach the same purpose before that, however, exporting is easy but importing seems not possible, anyway my question is how Messenger Plus scripts get shortcut ...
henry816Scripting02-28-2007 at 04:42 AM
RE: [?] writing my own dll C++
No, you either need to use a def file or add __declspec(dllexport) to the function/class/variable.
TheSteveScripting01-29-2007 at 07:19 AM
RE: [?] writing my own dll C++
Don't C++ dlls export their functions by default?
mattyScripting01-28-2007 at 10:55 PM
RE: [release] Music now playing
If Music now playing fails to load and you've installed an update within the last few days please re download it and reinstall :) thanks. There was a problem with my subversion => plsc exporter php script and it left the language directory empty cau...
-dt-Scripting01-23-2007 at 08:39 AM
import name from mysql database
I use [url=http://www.spacialaudio.com/products/sambroad caster/]sam[/url] to stream my Internet radio. This program exports the song playing to a mysql database. I want to show the current playing song with some own text as my screen name. example: s...
rvecPlug-Ins01-14-2007 at 09:34 PM
RE: * Stat Center 1.5* [NEW] [Performance Issues Fixed]
3 suggestions: - have a button "export to html" or txt - have it say "recording statistics since... - add time to the actions tab "12:12 10/10/10" (column?) bug: in actions tab, intead of line breaks it has the random square symbol [IMG]http://i...
SupersonicdarkyScripting01-10-2007 at 01:55 AM
RE: DLL return value
Should I remove the "__declspec(dllexport)" definitions? EDIT: It seems they don't make a difference with the exports.def file. Thanks!! I still can't return an array of values *-)...
deAdScripting12-28-2006 at 09:02 PM
RE: DLL return value
I am not sure about the first one, but for the second one you should create a .def file containing something like: [code] LIBRARY YourModuleName EXPORTS Function1 Function2[/code]
J-ThreadScripting12-28-2006 at 08:59 PM
DLL return value
I have a C++ DLL and I'd like to return an array of data. It is stored in a vector inside the DLL, but I don't know how to return it so it can be used in JScript. [s]Also, how do I make the function exports undecorated so I can just put the undecor...
deAdScripting12-28-2006 at 07:54 PM
RE: Dlls for Interop.Call
I'm not sure if the thread title is the explicit request (using Interop.Call) or if it is because he didn't know you can make and use ActiveXs yourself too. So to answer people who read this thread and would otherwise be misinformed: No, an ActiveX...
CookieRevisedScripting12-27-2006 at 10:53 AM
Save emoticons from Folder - Script
I was making a script that backs up emoticon to a folder with their original shortcuts as filenames, and then importing them back using the filenames as their shortcuts. exporting was easy and it worked perfectly well, but when I was trying to learn ...
badjanoScripting12-18-2006 at 09:50 PM
RE: [Question] Resources
Try Resource Hacker, it's free, but it can't display the files inside of it (because they're unicode? and it can't view PNGs without exporting). You can export them and see them fine: http://www.angusj.com/resourcehacker/
deAdScripting12-17-2006 at 06:47 PM
RE: Dlls for Interop.Call
You can: you just need to create the DLL's COM object first.
RaceProUKScripting12-15-2006 at 04:31 PM
RE: Dlls for Interop.Call
exporting to COM is different than exporting a function normally. you can't call a com function in a dll.
ShawnZScripting12-14-2006 at 09:32 PM
RE: [?] C#.net dll and ActiveXObject
:-/ thats for a COM dll though, Interop.Call is for dlls which export their functions. you use the following for COM [code] var obj = new ActiveXObject("name.id"); [/code]
-dt-Scripting12-14-2006 at 01:44 PM
[Hide Excerpts] Pages: (9): « First « 1 2 3 [ 4 ] 5 6 7 8 » Last »