Results for "Volume: Java_Volume1"
This is just a small app that shows you some pure winsock api examples. Some people would say it's easier to just put the winsock control on your form, and it is. But, I think everyone should know a little hardcore winsock api. Enjoy!
This is just a bunch of pure API code relating towards systems information. Some of it is useless and some of it is cool. I just threw it all together in one big example. See the screenshot to see what this program can do. Enjoy!
When a user starts the program, it will pop up saying that they will be installing a virus and will have two options. To install it or to cancel the setup wizard. There are two different paths that they will find, either by installing or cancel but they both end up saying they are deleting system files and crashing the computer making the screen go black for a few seconds. After that there will be another screen saying that it is in fact a prank. Updated: This adds a more realistic feel to it and fixed some minor problems. There are still many things that can be improved such as hiding it from alt-ctrl-del and hiding the mouse cursor when the screen goes black. However this will be the final version of Crash Prank and any future development will be made by other authors who were inspired by it.
This is a class module that contains all (or at least..most) routines that needed to send emails using Simple Mail Transfer Protocol (SMTP). Also has the support to add/encode/decode multiple attachments using either UUencode, or Base64. Base64 implementations conform to MIME standard, and MIME header is generated along with the file. For now, the class doesn't has any POP capability as yet, but it will be added soon.. And also adding support for pipelining, binary transfer through chunking, proxy support, etc (Which all are needed in my current project ). (*UPDATED* Now attachments can be send using a very easy to implement file queue system. As well as fixed the wrong path extractor routine.) I am trying to make the class so that the code required in the main project is minimal. Please give me your comments, and enjoy!
Every time when you start an application, the application 'borrows' the memory. When you exit the application, it will sometimes 'forget' to 'return' the memory to the system. Thus, the free memory available on your system will be less until you reboot your system. To over come this problem, you need a program to optimize and recover the 'lost' memory. This code act like a program to optimize and recover lost memory. To create a program to optimize and recover lost memory, you only need 2 API. That is 'GlobalMemoryStatus' to get memory status and 'SetWindowPos' to set the window always on top. Comments are welcomed. Please vote for this code.
This is a total remake of my earlier submission. It lets you change your font properties within your app. Hope someone finds a use for it. Real simple code.
A few of the firewalls written here on PSC shell to netstat.exe to map ports with processes. This article explains how to do the same thing using a couple undocumented Windows XP API calls.
When I first started this project, I had a few problems. One of them was, "How in the heck do I, as a client that knows nobody on the network, find someone that is on the network?" I was dumbfounded, I wondered how KaZaA did it, as well as Gnutella and Overnet. I did a little research and found that they were very smart about it, it is not as complicated as one would think. Your KaZaA or whatever you download comes with a list of people already on the network! You load that file up and it tells you a few people to connect to, then you work you way from there, getting IP's from everyone you can possibly get. Every time you meet a new connection on the network, they tell you everyone they know, and you do likewise. My software is a very small implementation of this idea, however it can be expanded fairly eaily. So, let's get on to geting started with this application, so you can see how it really works. I have commented as best I can, and provided as much information as I could possibly provide off the top of my head to make this a learning experience and not some frustrating endeavor.
this is a p2p chat application that uses winsock, this is a good example of how client server aplications work. every line of code is explained to give you the best explination of how it works.
This code will enable you to take two dates, find the total seconds in between them, and calculate the Hours, Minutes, and Seconds.
This application demonstrates how to write a VB client for an AI chat bot. The code it self is only a few pages, documented and easy to understand. This example uses the Transplantable Artificial Neurological Units (TANU) architecture. After you download this VB Chatbot client code point your web browser to http://www.p2bconsortium.com/sss/CreateBot.aspx to create and train your AI chatbot. Then use this open source client to chat with him/her. You can also modify this code to bind your AI chatbot to both IRC and non-IRC chat systems. If you need help feel free to stop by our IRC network and ask questions. /server neptune.vathix.com /join #tanu You can also post questions to the http://www.ai-forum.org/forum.asp?forum_id=11 Be sure to put TANU in the title of your thread so that TANU trainers can address your questions.
Ok I wish I could say that I made this but I did not. I found it and it is great. This is the famous Windows Linux writen in VB. I had some problems useing it on Win XP but worked fine for me on win98. I am includeing the origional source that I first got it is in french but I had little problems converting it to english so I could play around with it. The usrname: root / pass: admin after you login you can creat a new user account just like linux. I hope everyone likes this as much as I do. It's like haveing a whole new operating system well giveing windows a new look anyhow but it's great. Check it out. *** UPDATE *** I have posted the translated version in english for those that wnated it...
Contains over 50 tips to help your programming experience easier. Feel free to leave comments.
This code contains 2 classes, One is a base API timer class that can be used as a standalone timer replacement (does not need a form to host timer) The second, is a class that holds an array of these timer objects and allows you handle events of a timer array just like the default VB timer object. VB Does not have built in support for handling an array of objects withevents. So this shows you how to code it yourself.
Great image viewer. Has three forms of display. You can either view full screen, fit to window, stretch the image, or the full image in the window. You can browse through your hard drive for image files, change filter options, and more! Yes, the form can be resized (which is a real bitch to code.) Have fun and don't forget to vote!
Ok for everyone that has requested it here is the english version of the amazing windows linux winux program. It is around 98% converted from french to english so there should be very little if any problems understanding any part of it. The entire program is very well commented. Also the username is root: and password is: admin (after you login under root you can create a new user account - just like linux!)
This example illustrates how to set up inheritance in VB, without using containment ('has-a') processing. The data structure is very flexible, as each class and object instance is basically a hash table (a dictionary in VB). It usess 'CallByName' to call the appropriate routine based on type, at runtime. Note that this could be made much more efficient and speedy by using a custom hash table class and enums instead of strings for properties, but I left that out to simplify this example.
This is not a "normal" file input/output interface. This does it ALL with Api functions! The Read and Write function are in a Class, so it will be easy to add this to your programs.
This program is designed to give beginners to learn, understand and master the winsock control by step-wise-step illustration of bulding chat application. Advantages of Simple Chat System... ->Step by Step understanding...style ->Fully Commented to guide you each step. ->An useful chat application which gives understanding to build, advance applications... Limitations of Simple Chat System... ->As it is designed for beginners no error handling work is undertaken.
This is sample how to made color progressbars using Windows CommonControls and Windows API.