What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Release] SendTo v2.2 [Final]

Pages: (16): « First « 10 11 12 13 [ 14 ] 15 16 » Last »
1 votes - 5 average   [Release] SendTo v2.2 [Final]
Author: Message:
warmth
Veteran Member
*****

Avatar
Electronic Engineer

Posts: 1730
Reputation: 26
39 / Male / Flag
Joined: Jul 2003
RE: [Release] SendTo v2.2 [Final]
Great Cookie ;)!
@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
03-27-2008 01:04 PM
Profile PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [Release] SendTo v2.4.1
SendTo is a bit updated....

It will soon be added again to the scripting database.

In the mean time you can download the attachment (=version 2.4.1).


This post was edited on 10-13-2009 at 11:55 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-06-2009 05:32 AM
Profile PM Find Quote Report
warmth
Veteran Member
*****

Avatar
Electronic Engineer

Posts: 1730
Reputation: 26
39 / Male / Flag
Joined: Jul 2003
RE: RE: [Release] SendTo v2.4.1
quote:
Originally posted by CookieRevised
SendTo is a bit updated....

It will soon be added again to the scripting database. In the mean time you can download the attachment (=version 2.4.1).


Cookie you are aliveee... thanks I missed a lot this... (H)

UPDATE: I doesn't work for me in Windows Vista SP2... Crash Rundll32 everytime I try to send something... :(

This post was edited on 10-07-2009 at 03:44 AM by warmth.
@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
10-07-2009 12:06 AM
Profile PM Web Find Quote Report
NanaFreak
Scripting Contest Winner
*****


Posts: 1476
Reputation: 53
32 / Male / Flag
Joined: Jul 2006
RE: [Release] SendTo v2.2 [Final]
Also crashes on Windows 7 RTM (Build 7600)

just thought you should know cookie [=
10-07-2009 08:02 AM
Profile PM Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: [Release] SendTo v2.4.1
blah.... why is Vista (and Win7) always doing so difficult :(
Works perfecty in XP.
Can't do much about (atm), sorry.

This post was edited on 10-13-2009 at 11:59 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-07-2009 11:05 AM
Profile PM Find Quote Report
warmth
Veteran Member
*****

Avatar
Electronic Engineer

Posts: 1730
Reputation: 26
39 / Male / Flag
Joined: Jul 2003
RE: [Release] SendTo v2.2 [Final]
:( ok Cookie...
@warmth - Beta Testing a life!
Official Nokia (former Ovi) Suite Beta Tester | Nokia Beta Labs Contributor of the month (June, 2011)
10-07-2009 01:13 PM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
O.P. RE: [Release] SendTo v2.2 [Final]
js code:
oShortcut.Arguments = '"' + MsgPlus.ScriptFilesPath + '\\_sendfile.dll",DllInvokeSend ' + _sMyEmail + ' ' + sEmail;

Isn't it DllInvokeSendW? Not that it makes much of a difference as it still failes. Cookie send me the code and I will work on it.

Calling it from the commandline gives me this:

quote:
Problem signature:
  Problem Event Name:    APPCRASH
  Application Name:    rundll32.exe
  Application Version:    6.0.6000.16386
  Application Timestamp:    4549b0e1
  Fault Module Name:    ole32.dll
  Fault Module Version:    6.0.6002.18005
  Fault Module Timestamp:    49e037d7
  Exception Code:    c0000005
  Exception Offset:    000427be
  OS Version:    6.0.6002.2.2.0.256.6
  Locale ID:    4105
  Additional Information 1:    1f69
  Additional Information 2:    790793ab61670016b4a2da159c546657
  Additional Information 3:    a595
  Additional Information 4:    a308dde55c88e143c23f92bf04a23291

This post was edited on 10-07-2009 at 02:18 PM by matty.
10-07-2009 02:09 PM
Profile E-Mail PM Find Quote Report
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
31 / Male / Flag
Joined: Apr 2004
RE: [Release] SendTo v2.2 [Final]
Perhaps if we had access the source code of the DLL, we could help you debugging. :)
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
10-07-2009 03:02 PM
Profile E-Mail PM Web Find Quote Report
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: RE: [Release] SendTo v2.4.1
quote:
Originally posted by matty
js code:
oShortcut.Arguments = '"' + MsgPlus.ScriptFilesPath + '\\_sendfile.dll",DllInvokeSend ' + _sMyEmail + ' ' + sEmail;
Isn't it DllInvokeSendW? Not that it makes much of a difference as it still failes. Cookie send me the code and I will work on it.
Nope, the script is correct. This is how RUNDLL32 works when calling functions (it searches first for the unicode version). It has got nothing todo with the crash problem.

quote:
Originally posted by Matti
Perhaps if we had access the source code of the DLL, we could help you debugging. :)
This isn't a problem in the DLL's source code (which is exact the same as the EXE which does work). This is a problem in how it is compiled as a DLL and how VB6 works internally like calling the correct entrypoint and instancing its internal objects and that sort of stuff.

If if you would strip everything in the sourcecode to the barebones (eg: simply A=A+1) you will have the exact same problems on Vista.

Note that this DLL does actually something which 99,99% of all people say is impossible: making a 'true' Windows DLL in VB6 (thus without the need to register it as an ActiveX, with a real working DllMain routine, etc), except that it apparently only works on XP :p...

The only thing I can do is compiling it again as an EXE, but that also means it will be removed from the scripting DB again.

This post was edited on 10-13-2009 at 11:59 PM by CookieRevised.
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-07-2009 07:55 PM
Profile PM Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
O.P. RE: [Release] SendTo v2.2 [Final]
So as usual Cookie is right. I made a Dll that simply exported DllInvokeSend which had a message box. From there I called it using rundll32 and it failed. So Cookie looks like our only option is to do it in C++.
10-08-2009 12:45 PM
Profile E-Mail PM Find Quote Report
Pages: (16): « First « 10 11 12 13 [ 14 ] 15 16 » Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On