What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » File Organiser Plug-in

Pages: (3): « First « 1 [ 2 ] 3 » Last »
File Organiser Plug-in
Author: Message:
wipey
Full Member
***

Avatar
.oOo.

Posts: 310
37 / – / –
Joined: Jul 2003
RE: File Organiser Plug-in
so u shud be:P(y)

[Image: msgplus468banner2.gif]

www.wipey.tk 6983 days, 18 hours, 8 minutes ago until my 18th birthday(b)

11-07-2003 11:29 PM
Profile PM Web Find Quote Report
Jutx
Junior Member
**

Avatar
Shocking.......

Posts: 98
– / Male / –
Joined: May 2003
O.P. RE: File Organiser Plug-in
Hi everyone,

I posted a new version of the plugin up. This version has:

fixed "Click remove and leave blank entry in listview" bug
improved options dialog
included /xorgauto command
improved error handling routine


PS sorry wipey and sk3tch but i cannot fix that bug so it has become a limitation. Its on my to do list but i really do not think it can be done.

Way off topic but must be said. I found my cat today he has been missing for a week :(. turns out he was locked in a house builders were working on. Had to be mentioned

This post was edited on 11-08-2003 at 01:34 AM by Jutx.
Hard work pays off in the long run but laziness pays off NOW (H) :banana:
11-08-2003 01:30 AM
Profile PM Find Quote Report
Sk3tch
Veteran Member
*****

Avatar
We are Samurai, the keyboard cowboys

Posts: 1675
Reputation: 4
38 / Male / –
Joined: Jul 2003
RE: File Organiser Plug-in
Thats great :)  Better options dialog is nice, and thats ok.. if you cant do it its not a big deal, it would just be nice :wink:
11-08-2003 01:34 AM
Profile E-Mail PM Web Find Quote Report
wipey
Full Member
***

Avatar
.oOo.

Posts: 310
37 / – / –
Joined: Jul 2003
RE: File Organiser Plug-in
um, isn't the bug fixed by placing like
code:
sTextToSend = ""

in your function?

good to hear bout your cat, ours once got locked in a garage lol, wasn't funny at the time no one knew where he was:(:$

This post was edited on 11-08-2003 at 12:56 PM by wipey.

[Image: msgplus468banner2.gif]

www.wipey.tk 6983 days, 18 hours, 8 minutes ago until my 18th birthday(b)

11-08-2003 12:55 PM
Profile PM Web Find Quote Report
Jutx
Junior Member
**

Avatar
Shocking.......

Posts: 98
– / Male / –
Joined: May 2003
O.P. RE: File Organiser Plug-in
Ah if it only were as simple as:
Sresult = ""

You are right in theory but Sresult isn't processed until the function is finished so in /xorgfiles it has to finish performing the function (organising files) before it sends Sresult (even if Sresult = "" is the first thing in the code.) and the reason why it doesn't clear at all on /xorgauto is because the function doesn't finish until /xorgauto OFF is called (which is when Sresult will be sent.) I hope that makes sense
Hard work pays off in the long run but laziness pays off NOW (H) :banana:
11-08-2003 07:21 PM
Profile PM Find Quote Report
wipey
Full Member
***

Avatar
.oOo.

Posts: 310
37 / – / –
Joined: Jul 2003
RE: File Organiser Plug-in
Surely though something like this would work:$?
(pardon my VB. not sure what you program in:P)
code:
ElseIf sCommand = "xorgfiles" Then            'Yea I cut down the compare cos I can't remember lol
    Call OrganizeFiles()
    sResult = ""
    ParseCommand = True
    Exit Function

sorry, I dunno why it wouldn't, correct me if I'm stupid:$

(just say you program in C and I'll get my coat now:P)

also if it takes alot of time why not place the function in another thread so your plugin could return ""?

This post was edited on 11-09-2003 at 12:33 AM by wipey.

[Image: msgplus468banner2.gif]

www.wipey.tk 6983 days, 18 hours, 8 minutes ago until my 18th birthday(b)

11-09-2003 12:31 AM
Profile PM Web Find Quote Report
Jutx
Junior Member
**

Avatar
Shocking.......

Posts: 98
– / Male / –
Joined: May 2003
O.P. RE: File Organiser Plug-in
I have just noticed a huge bug in the newer version of the plug-in. It basically assumed that files that have been moved, have not, so it tried to move them and you got an error. Well here is the bug fix.

Just one thing you may need to remove all your old organisations if you are updating from the older version

.zip File Attachment: FileOrganiser1-2.zip (36.07 KB)
This file has been downloaded 123 time(s).

This post was edited on 11-29-2003 at 06:59 PM by Jutx.
Hard work pays off in the long run but laziness pays off NOW (H) :banana:
11-29-2003 06:56 PM
Profile PM Find Quote Report
dotNorma
Veteran Member
*****

Avatar

Posts: 1745
Reputation: 17
32 / Male / –
Joined: May 2003
RE: File Organiser Plug-in
I must try this plug-in when i get home!
02-05-2004 02:08 AM
Profile PM Web Find Quote Report
optimism_
Senior Member
****

Avatar
Ctrl+Alt+Del - Tragically l337

Posts: 521
Reputation: 8
37 / Male / –
Joined: Jul 2003
RE: File Organiser Plug-in
If you want the "Organisation" to not lock up messenger you must run it in another thread. This means you call the organisation function and then instantly set sResult to "" and return

I dont know what VBs like for multithreading, i use c. However in c, the task would be along the lines of

* make a data structure to contain "messages".
* make a function to check the data structure for "messages" such as the "Organise files" message, and when it finds the message, calls the organise files function.
* create a new thread to execute that function
*in the main thread, at the appropriate time add the "Organise files" message to the queue.

obviously you would start your thread up at initialise() and close it down at uninitialise.

8-) if only u used c/c++ cos i got a set of classes that do all this for u =/
HTTP 404 - Signature Not Found
02-05-2004 05:44 PM
Profile E-Mail PM Web Find Quote Report
Jutx
Junior Member
**

Avatar
Shocking.......

Posts: 98
– / Male / –
Joined: May 2003
O.P. RE: File Organiser Plug-in
Multithreading (gulp) is the solution for the "limitations" of this plugin. Now all i have to do is to figure out multithreading. As for this plugin generally, i am gonna do a complete remake of it.
Hard work pays off in the long run but laziness pays off NOW (H) :banana:
02-05-2004 06:43 PM
Profile PM Find Quote Report
Pages: (3): « First « 1 [ 2 ] 3 » 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