|
-
Jul 6th, 2001, 12:34 PM
#1
Thread Starter
New Member
how does aol?
How does aol update their Welcome window???
-
Jul 7th, 2001, 03:15 PM
#2
Addicted Member
Something that also sounds feasible is that on the "Welcome" form there are just blank images and labels that get updated on the AOL servers when they need to be, and get retrieved via code and inserted into the welcome window when you log on...you'll notice that all the images/text are always in the same place, no matter what they display.
Things I've Said:
"Life's funny like that...elephants can wear frilly lace panties, and Dubya still looks like a monkey in a big chair"
"Take four goats and strap one to each foot of a llama. Presto, goat-powered llama!"
"You want to get me to work more, get me a Coke. No? Then deal with inferior garbage, I'm not coding another line and your clients can go to......thanks, I'd love a Coke right about now!"
-
Jul 7th, 2001, 07:06 PM
#3
Thread Starter
New Member
how could i do that on a program that i would make??
-
Jul 7th, 2001, 08:04 PM
#4
Good Ol' Platypus
Use the winsock control or inet control to d/l the images and text into .txt and .bmp files and put them in a temp dir. (There is an API to get a path for a temp file in windows\temp), then you could point VB to them.
All contents of the above post that aren't somebody elses are mine, not the property of some media corporation. 
(Just a heads-up)
-
Jul 8th, 2001, 07:55 AM
#5
VB Code:
Declare Function GetTempPath Lib "kernel32" Alias "GetTempPathA" (ByVal nBufferLength As Long, ByVal lpBuffer As String) As Long
Public Function GetTmpPath()
Dim strFolder As String
Dim lngResult As Long
strFolder = String(260, 0)
lngResult = GetTempPath(MAX_PATH, strFolder)
If lngResult <> 0 Then
GetTmpPath = Left(strFolder, InStr(strFolder, Chr(0)) - 1)
Else
GetTmpPath = ""
End If
End Function
Msgbox GetTmpPath
-
Jul 8th, 2001, 03:14 PM
#6
Addicted Member
The idea is in your code, you'd retrieve "http://your.server.somewhere.com/img22.jpg", and put it a blank image on your form. Then, when you want to change the image á la AOL, just put the new image on your server and name it "img22.jpg"...your code always retrieves img22, but the image changes
Things I've Said:
"Life's funny like that...elephants can wear frilly lace panties, and Dubya still looks like a monkey in a big chair"
"Take four goats and strap one to each foot of a llama. Presto, goat-powered llama!"
"You want to get me to work more, get me a Coke. No? Then deal with inferior garbage, I'm not coding another line and your clients can go to......thanks, I'd love a Coke right about now!"
-
Jul 8th, 2001, 08:03 PM
#7
Thread Starter
New Member
can someone make me a sample of it??? cuase i really don;t understand ??
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
|