Quick Search for:  in language:    
TCPIP,MUST,SEE,VOTE,CODE,LIKE,Andromeda,Remot
   Code/Articles » |  Newest/Best » |  Community » |  Jobs » |  Other » |  Goto » | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
Visual Basic Stats

 Code: 3,011,557. lines
 Jobs: 117. postings

 How to support the site

 
Sponsored by:

 

You are in:

 
Login



Latest Code Ticker for Visual Basic.
Defrag at certain time
By Michael Nipper on 7/1


Click here to see a screenshot of this code!Extended Find Ver 2
By Roger Gilchrist on 7/1

(Screen Shot)

Y! Module
By NightCrawler on 7/1


Files Comperator (the right way)
By Jarry Claessen on 6/30


Simple UDP example
By Mick Walton on 6/30


CAPS Trigger
By Trevor Burley on 6/30


Auto clip picture
By Kenneth. Jakobsen on 6/30


Click here to see a screenshot of this code!Game of life clone (cool math)
By Johannes B on 6/30

(Screen Shot)

String to CHR()
By Nikhil Raj on 6/30


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!





Affiliate Sites



 
 
   

Andromeda!

Print
Email
 
winzip icon
Submitted on: 10/22/2000 9:21:01 AM
By: One Light, Inc.  
Level: Advanced
User Rating: By 51 Users
Compatibility:VB 6.0

Users have accessed this code 34994 times.
 
(About the author)
 
     Andromeda Remote File System is a complete Client/Server architecture application that includes both the server and client projects. Andromeda uses Winsock to communicate over a TCP/IP connection. The server supports multiple users, and encrypted passwords. Features: Download/Upload file(s) and folder(s) Move file(s) and folder(s) Rename file(s) and folder(s) Delete file(s) and folder(s) Create new folder Spawn/Terminate executables and much more... The client uses a custom class to download and upload multiple files to the server. You may also add more than one Andromeda server to connect to. Supports drag-and-drop between client and server. Server keeps complete logs of login events, file transfers, and will even log server output, if specified in options. This program is similar to CuteFTP, but does not use the File Transfer Protocol. Instead, we implemented our own 'Protocol' for the client and server to communicate. Server can accept multiple connections simultaneously. Demonstrates usage of the Microsoft Winsock ActiveX control, using synchronized data transfer, using arrays of Winsock controls for a multiple connection server, using Collections, opening files for both binary and text reading/writing, etc... YOU MUST SEE THIS! PLEASE VOTE FOR THIS CODE IF YOU LIKE IT!! *Bugs Fixed! October 24th*

 
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzipto decompress it.

Virus note:All files are scanned once-a-day by Planet Source Code for viruses,but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:
1)Re-scan downloaded files using your personal virus checker before using it.
2)NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
3)Scan the source code with Minnow's Project Scanner

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.


Other 4 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this code(in the Advanced category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments
10/22/2000 11:43:41 AM:CovertLoop
Would have been smarter to sell this.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
10/22/2000 12:11:53 PM:Themba Kriger
brilliant programming 5 out of 5 i hope 
u win code of the month. 1 question: 
what did u use to make parts of the 
screen shot transparent?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
10/23/2000 7:20:53 AM:roseta
very excellent , keep going
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
10/23/2000 7:03:53 PM:Ryan and Drew Lederman
Hey guys, sorry for all the bugs, we 
obviously rushed the release :/ We 
checked both projects, and fixed all 
the bugs, so if you downloaded before 
October 24, you should re-download the 
*working* version :) Thanks
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/5/2000 1:18:21 PM:Martin
The APP.Path Problem can be solved even 
shorter!
Just write the 
following:
Dim myPath as 
String
myPath = App.Path & 
IIf(Right(App.Path) = "\", 
"filename.ext","\filename.ext")
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/5/2000 5:04:20 PM:Jared
CovertLoops is right =(
Nice Code tho
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/7/2000 10:43:32 AM:Mike Schmidt
Your folder delete would not run on my 
NT, plus I figure since you use FSO, 
why not make the delete folder routine 
FSO...much cleaner and forces folder 
removal, so I placed this code where 
you had 
RmDir(fileName):
dObj.DeleteFolder 
fileName, True
Also, an overflow 
error everytime I run, occuring where 
you call FindChildByClass, so I 
commented it out, haven't pinpointed 
why, but hey, it's NT...
Also, file 
attributes in NT cause an error when 
you list files (dir command). As soon 
as it encounters an error, the 
remaining file list isn't listed, so I 
added 
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/7/2000 10:45:41 AM:Mike Schmidt
(continued)Also, file attributes in NT 
cause an error when you list files (dir 
command). As soon as it encounters an 
error, the remaining file list isn't 
listed, so I added "resume next" to the 
error routine and now all files are 
listed. (Bad coding, but I haven't 
pinpointed the codes, I know one is 
75...)
Wonderful coding! Excellent 
job, keep up the good work. Nice to see 
your file transfer keeps filesizes the 
same...I would add dynamic buffer sizes 
though, and make all data transfer 
correspond to the buffer/packet size 
set.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/13/2000 5:34:38 PM:Chris
Nice code, but you've got to learn how 
to trap errors.  You need to set it up 
so that the program doesn't crash when 
something happens that it didn't 
expect.  Nice job though.  Keep up the 
good work.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/17/2000 3:31:22 AM:Plasma
Hey, this is one awsome app! Cheers to 
the dev team of this! Its awsome! 5 
Stars!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/17/2000 3:43:24 AM:Plasma
There is one major security glitch with 
this that I have found... Where it 
allows you to type in a path name on 
the remote server, say I have C:\Games 
shared, if I type, C:\games\..\ it will 
give me root access, the dots mean go 
back a directory....
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/17/2000 9:20:23 PM:Alpha
Excellent code. 5 globes from 
me.
Another thing, how did you make 
the screen shot transparent?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/27/2000 3:40:53 PM:Steven Briggs
hmm... very nice! you guys did a nice 
job! im looking forward for updats :) 
this has helped me alot with my network 
:) thanx for sumiting such good code!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
12/21/2000 8:49:48 PM:JBInvert
Why does my VB give me an error- it 
can't find the class 
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
3/6/2001 7:21:11 PM:Zappatilias
Is there anyway for the server to 
download stuff from the client, or 
browse the clients files
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
3/11/2001 8:39:34 AM:TWilliam
Hi,
I dont know if i am being too 
intrusive here...but I like your work 
done. 
I am thinking about letting 
users download some files from my 
website. But I dont know how to...Could 
you show me a few pointers how ?
If 
its not too much, could you show me how 
to display the file Download Dialog 
when a User clicks on a file he wants 
to download from a Web-Page. I think 
its a standard File Download Dialog box 
that most sites use. After specifying a 
folder to download to, the progress bar 
shows and the Download Complete Dialog 
Box Shows after Downloading is 
completed. How do you do all that 
?
Any advice and tips are greatly 
appreciated. Thank You
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
3/11/2001 12:51:04 PM:Scythe
How come the download/upload windows 
don't close?!?!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
5/14/2001 10:18:10 PM:Stickman373
I was wondering if the login script is 
okay because my friends can't seem to 
login it always says invailid password 
and none of my users show up in the 
list but the files are there?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
7/13/2001 8:48:57 AM:Ant
Really nice code, i've been waiting for 
an example like this for a long time 
for a project I started a while ago.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
11/20/2001 7:26:00 PM:Apocalypse
Great code, I too have been looking for 
and example of a good ftp type progie. 
just a few suggestions are to fix the 
error trapping, add a media player for 
mp3's etc.. and Sell this! over all 
excellent!! 
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
12/27/2001 1:27:45 PM:Jonte
Hi, i have discoverd some bugs that i 
need some help with!
Here it 
goes:
On the server:
When i create a 
new user and press the 
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
12/27/2001 1:28:20 PM:Jonte
Hi, i have discoverd some bugs that i 
need some help with!
Here it 
goes:
On the server:
When i create a 
new user and press the "Create User" 
key, i will get a
"Run-time error 
'5'
Invalid procedure call or 
argument"
and when i debug the code.. 
here is the code that it's complaining 
aboute
"firsthtml = Dir" line 1192 col 
9 in the 
ServerMod
-------------------
And 
when i want to change i password it 
gives me a
"Run-time error 
'424':
Object required"
and it 
complains aboute the code at 
line 15 
col 1 in frmModifyUser
"If 
optNormalUser.Value = True 
Then"
----------------------------
And
 the client:
Well.. when i wan't to 
download a file, it download the file 
like it should, but then it starts to 
upload filed from my directory...
If 
you could help me with this it would be 
great!
My email: Jonte@2cool4u.nu
or 
icq: 52720342
Thanx for a great 
code!
(Excuse my English)
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
1/25/2002 4:33:18 AM:Zhu JinYong
If you refine the code and improve 
GDI,this appliaction will be a really 
something.When do we get your updated 
version?I think many people are 
interesting this "PC Anywhere"!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
5/19/2002 7:55:11 AM:Niall Mooney
Very very good, I'm very interested to 
see how you have got multiple 
winsockets to work in a VB application 
(i hope simply). 5 Globes from me, keep 
up the excellent coding.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
6/19/2002 7:08:02 PM:xXx_Spectator_xXx
Excellant Code. To many bugs tho. Nice 
job !!!!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
8/28/2002 7:51:16 AM:Zap The Dingbat
have i missed somthing or is this not 
just a re-invention of FTP?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
9/6/2002 5:44:57 AM:
why I am getting error that missing 
file sl.dll? where can I get it?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
12/14/2002 9:17:35 PM:
why I am getting error that missing 
file sl.dll? where can I get it?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
1/6/2003 3:49:26 AM:Jody Jacoby
havent downloaded yet but it looks good 
besides a few bugs (you must expect) 
nothing i cant iron out im sure, great 
feedback from everybody.
thank you for 
being so kind as to share your 
wunderfull code
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
2/3/2003 5:48:03 PM:
I'm missing that 'sd.dll' file too.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
2/8/2003 1:47:52 PM:Richard Sullivan
yup, im missing the sd.dll file 
aswell..i think the aliens stole it.
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
2/13/2003 11:45:53 PM:One Light, Inc.
Sorry about sd.dll guys, it's not 
really a DLL file at all, in fact it's 
just a text file that stores some data 
and it has been so long I forget what 
it is. Fortunately I do remember that 
you can just create an empty text file 
in Notepad or whatever and name it 
sd.dll, stick it in the folder with 
Andromeda and you should be ready to go!
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
4/7/2003 4:33:14 PM:
Nice, but i can't connect to ftp ? What 
is the bug from ?
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
6/22/2003 1:14:50 AM:Francis M. Marasigan
Nice job. But does your program support 
simultaneous download for different 
user? I notice that when one user is 
currently downloading, the other user 
cannot download. 
Keep the Planet clean! If this comment was disrespectful, please report it:
Reason:

 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | Visual Basic Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright© 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.