Results for "Category: Internet/ Browsers/ HTML"
P2P (peer to peer) file sharing program in C#. Supports Gnutella, Gnutella2, eDonkey, and OpenNap. www.filescope.com. This is excellent for people wanting to learn socket programming, GUI effects via drawing, custom drawn controls (tabcontrol, menus, etc.), network transfers, and much more.
Use Microsoft word spell checker utility
I am developing this application for a physician who has lost his vision. This application is just a prototype, this browser will talk, from desk top. I have a request to viewer, if you wish to join and help, please email short stories. I shall thank his nephew who emailed me and my son who thought of sending a story that can talk. Kids have wonderful ideas, I wish I have their mind to think out of the shell. Win 98 users need to have Vtext.dll "CLSID:2398E32F-5C6E-11D1-8C65-0060081841DE" it comes with win2k prof/server. Also included in Microsoft Speech API 4.0a. The First para responds to onmousemove. Once you have tested with your mouse, click yes if you get activx warning. Please press F5 and click on Read Text button. AudioPause did not work, I used StopSpeaking to stop audio. To start again, click Read Text. My regards to all viewers.
"Web Site Designing" is a tutorial which aims to teach the Internet, HTML, DHTML, JavaScript, CSS and DOM. No prior knowledge / experience is required.
To have a completely functional Guestbook on your website, MINUS the difficulty of a database.
This code is to teach a small bit of socket programming. It connects to a simple time server and reads the time and prints to the screen. Easy to read code. Please vote. Also check out my other submissions and vote for those too!
Introduction This is a telnet console application that implements the Telnet client protocol (rfc854.) I have run it on VC6, NT4.0 SP3 Telnet The purpose of the TELNET Protocol is to provide a fairly general, bi-directional, eight-bit byte oriented communications facility. Its primary goal is to allow a standard method of interfacing terminal devices and terminal-oriented processes to each other. It is envisioned that the protocol may also be used for terminal-terminal communication ("linking") and process-process communication (distributed computation). General Considerations A TELNET connection is a Transmission Control Protocol (TCP) connection used to transmit data with interspersed TELNET control information. The TELNET Protocol is built upon three main ideas: first, the concept of a "Network Virtual Terminal"; second, the principle of negotiated options; and third, a symmetric view of terminals and processes. When a TELNET connection is first established, each end is assumed to originate and terminate at a "Network Virtual Terminal", or NVT. An NVT is an imaginary device, which provides a standard, network-wide, intermediate representation of a canonical terminal. This eliminates the need for "server" and "user" hosts to keep information about the characteristics of each other's terminals and terminal handling conventions. All hosts, both user and server, map their local device characteristics and conventions so as to appear to be dealing with an NVT over the network, and each can assume a similar mapping by the other party. The NVT is intended to strike a balance between being overly restricted (not providing hosts a rich enough vocabulary for mapping into their local character sets), and being overly inclusive (penalizing users with modest terminals). This Project has five Main Classes CSocketDx CSocketDx Class is used to establish TCP connection. It has 3 functions CSocketDx(char *,int); ~CSocketDx(); int Create(); int Connect(); SOCKET TelnetConnect(); CSocketRx CSocketRx Class is used to Receive data. It has only one thread. CSocketRx(); CSocketRx(SOCKET,HANDLE&); virtual ~CSocketRx(); static DWORD RdTh(CSocketRx *); CSocketTx CSocketTx Class is used to Send data. It has only one thread. CSocketTx(SOCKET,HANDLE&); virtual ~CSocketTx(); static DWORD SendTh(CSocketTx*); CProtocolRx CProtocolRx Class is used Implement Telnet protocol. inline void yesreply(SOCKET server, _verb verb,_option option); inline void noreply(SOCKET server, _verb verb,_option option); inline void askfor(SOCKET server, _verb verb,_option option); void TelentProtcol(SOCKET server,unsigned char code); Platforms I have run it on VC6, NT4.0 SP3; I did not test it on 95 and VC5 Limitations Cannot handle arrow keys
This isn't much, but it shows you how to use C++ to make CGI programs. NOTE: Please read "Explanations/Assumptions" for instructions on how to use this.
This code will create an Office web chart from the data supplied from a database. It will then create a gif file and place it on a web page.
Produces metatags based on what a user enters in the relevant text boxes
MasterX Console FTP. This will show you how to program MasterX Console programs and FTP API at the same time!!!
Instead of using a META refresh, use an ASP refresh to insure you have the most current copy of the web page.
Format the current data (off the server) in the following format, for example, Tuesday, June 19, 2001.
After searching throughout the web for a JavaScript function that would add a web page to a users favorites folder, I grew increasingly impatient with the laziness of others code, (hey why re-create the wheel?) because others code only lets you add one page to a users favorites folder. Therefore, I created a DYNAMIC “Add to Favorites” function, that for example will add the web page where the code is located to the users favorites. Just create an include virtual, (for script) and insert the include onto all of your pages, or preferably if you have a header page include, just copy the code into that – and Voila! As long as you have the TITLE tags on your page, you’re set!
Live Counter! is a combination of PHP code and a Flash movie. It shows the counter state LIVE, without reloading the whole page. This means, that every site access increases the loaded counter. The counter receives about 1 byte/s, it is optimized to use a very small bandwith.
This is a flat file mailing list system. It saves all member names and emails to text files and send confirmation signup emails. People can signup easily with a simple form and you can then send out an email to all members in one hit very easily.
Custom code records basic statistics (IP, Host, Referrer, and UserAgent) and hits count for unique visitors to your website. Tries to prevent duplicate entries.
This is a client server application in which client is an ASP site and the server is a VB component that uses Winsock control, the users can send messages to the server via client side ASP code.
Do some tasks with the internet utilizing WinInet. Download documents and view html of pages. Extremely well commented.
A Non-block winsock server that can handle multiple connections. It isn't finished yet, but i'm hoping finish it soon. It currently is just a console application that shows what the user sends & detects new connections / disconnections. I will soon add suport for linux and add functions to send/broadcast messages. I'm new to C++, besides the hello world app this is my first c++ proggie. I'd appreciate some feedback very much. And like to hear from you how I can improve my server (Its killing my cpu :), would it be better if I'd ran my server in a seperate thread???)