|
Post by Vizsual on Jul 19, 2005 6:28:07 GMT -5
Release: Yay! Finally Released: files.filehosting.org/fb61278.zipNews: Testing, Some contact will be added to my list. I am going to create a tool that will add MSN e-mail to your contact list...What do you think? I collected the MSN addresses. I will collect only: - The last post is after 1st June - Have enough posts... Total number of contacts: 41 44 How it's work: - User sign in to MSN Messenger - Open this program - Select group to add the contact - Select Contact to add - Call MSN Messenger to add selected contacts!! The program will NOT request for MSN and password because it will only works if the user is signed in. Requirements: Windows Messenger 4.7+ What do you think? Last Update: Jul 19, 2005 History (Below: Oldest) : Jul 19, 2005: Added some contact from Jacobthehero's board - Jacobthehero - RainbowYoshi • Total Contacts Now: 44 Jul 19, 2005: Added all contacts to the list Screen:
|
|
|
Post by Jacobthehero on Jul 19, 2005 9:54:32 GMT -5
It Very good, I Scanned virus before open then i opened then it safe
|
|
|
Post by Vizsual on Jul 19, 2005 18:42:23 GMT -5
It Very good, I Scanned virus before open then i opened then it safe All my program won't have any virus!
|
|
|
Post by red.yoshi on Jul 19, 2005 18:49:18 GMT -5
hmm, i might try it in my free time.
|
|
|
Post by Soul on Jul 20, 2005 2:47:55 GMT -5
Board users, open this software at your own risk. Since distributing self-made software is not prohibited in this board, I will let this continue. But be aware that you can never tell what a program is designed to do "behind the scenes" until after it does them, if at all. A better alternative would be posting the source code & then letting a board admin check it and compile it, but I realize that the author may not want to share the source code.
lol!
|
|
|
Post by PinkFloydYoshi on Jul 20, 2005 4:13:33 GMT -5
Depending on the language, the compiler can be open sourced, or ridiculously over priced. I've got VB6 though. And 6 copies of VisualStudio2003.net eval edition's. Thats most of the languages out the way. I do have Delphi 1, but the chances any project today that uses that version are minimal since it's coming up to 10 years old. Delphi 4 or 5, then maybe, but I have no Delphi compiler/interpreter. I doubt anyone in staff will have either, unless you do soul.
'tis quite right though. Big firms like planetsourcecode.com say the same thing. They won't distribute precompiled project files, they always send out source code so members can see what it is capable of doing when running.
For those who aren't in the know: Precompiled = a .EXE file which can be run. Compile = To create a .EXE from project files (The term isn't explicitly used to describe that, but it's easier than me telling you how compilers and interpreter's work.)
|
|
|
Post by Vizsual on Jul 20, 2005 5:19:55 GMT -5
Did you mean... Decompliler? There are some decompiler.... ....open .exe file and it shows code!
This is source code 1. Collect E-Mail Address and Name into the List.dat First line: Name Second: E-Mail Third: Name Fourth: E-Mail
Mechakoopa #1: Home E-Mail thaiirin2 -AT- hotmail.com Mechakoopa #2: Work E-Mail mechakoopa -AT- gmail.com Mechakoopa #3 mechakoopa -AT- yoshimail.syte.net (I replaced @ by -AT- to protect my mail from spammer) 2. Start a new prject, Add Messenger API Type Library to the project. 3. Add some control. List1 - User List List2 - Group-to-add List Command1 - Add Button Label1 to Label5 - Contact Info 4. Code:
Declarations:
Dim msn As New Messenger Dim contakE(50) As String Dim msnGrps(50) As IMessengerGroup When user clicks the Add button...
Private Sub Command1_Click() On Error Resume Next Command1.Enabled = False For I = 0 To List1.ListCount - 1 If List1.Selected(I) = True Then msn.AddContact 0, contakE(I) Next MsgBox "After finished adding contact, Click OK" For I = 0 To List1.ListCount - 1 If List1.Selected(I) = True Then msnGrps(List2.ListIndex).AddContact contakE(I) Next MsgBox "Done." Command1.Enabled = True End Sub When the program starts:
Private Sub Form_Load() MsgBox "You must sign in to MSN messenger first. Click OK if you're ready!" Dim inp As String Dim crnt As Integer Dim crntgroup As Integer Dim crntg As IMessengerGroup crnt = 0 crntgroup = 0 Open "List.dat" For Input As #1 Do Line Input #1, inp List1.AddItem inp Line Input #1, inp contakE(crnt) = inp crnt = crnt + 1 If EOF(1) Then Exit Do Loop Close For I = 0 To msn.MyGroups.Count - 1 Set msnGrps(crntgroup) = msn.MyGroups.Item(I) List2.AddItem msnGrps(crntgroup).Name crntgroup = crntgroup + 1 Next List2.Selected(0) = True End Sub When user clicks the Contact Name, Show infomations
Private Sub List1_Click() Label3 = List1 Label5 = contakE(List1.ListIndex) End Sub
|
|
|
Post by dragoshi on Jul 20, 2005 5:50:36 GMT -5
ok your the comp master man amazing
|
|
|
Post by Yoshi Vert on Jul 20, 2005 12:09:40 GMT -5
It's a very usefull program ! And it works well ! Good job !! Very good job !
Yoshi Vert
|
|
|
Post by Toshi on Jul 20, 2005 14:12:39 GMT -5
I'll pass on using it...i have no reason why i wish to not use it, but lets say that i think its useless to have one in my opinion.
|
|
|
Post by PinkFloydYoshi on Jul 20, 2005 18:37:36 GMT -5
Did you mean... Decompliler? There are some decompiler.... ....open .exe file and it shows code! Yeah, I could do it that way, but I think doing that is disrespectful to the author of the program, so I feel it's nicer if you were asked to show it, rather than using a decompiler and doing it myself. I know I wouldn't like people decompiling any projects of mine, so I'd ask first.
|
|
|
Post by Vizsual on Jul 21, 2005 10:38:13 GMT -5
|
|