|
-
Oct 10th, 2001, 09:44 PM
#1
Thread Starter
Junior Member
AIM and Text
Ok, i think i am in the right place.
I would lik to make a small program that runs in the tray, and all it does is log messages from AOL AIM, and stor the activity for one day in one file with the name of the file being the date .
how would i go about doing this ??
-
Oct 10th, 2001, 10:05 PM
#2
Member
The details may vary (http://www.planetsourcecode.com probably has something that does this), but you can make a proxy server so all of AIM's traffic passes through your program.
As for the file naming:
VB Code:
Dim Filename As String
Filename = Format(Now, "mm-dd-yyyy") & ".log"
should work.
-
Oct 10th, 2001, 10:08 PM
#3
Thread Starter
Junior Member
hmm
is there site down? and thanks for helping.
-
Oct 10th, 2001, 10:10 PM
#4
Thread Starter
Junior Member
hmm again
ADODB.Recordset error '800a0e78'
Operation is not allowed when the object is closed.
/vb/scripts/include_utility.asp, line 258
-
Oct 10th, 2001, 10:28 PM
#5
Thread Starter
Junior Member
ok i am there
now what sorta proxy server am i looking for ?
-
Oct 11th, 2001, 06:01 AM
#6
Member
Anything capable of routing HTTP traffic, which I think is how AIM works.
Check out some of these: http://www.planetsourcecode.com/vb/s...t=Alphabetical
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|