HTML-Based Chat Server/Client | CodeGuru

HTML-Based Chat Server/Client

Environment: VC6, Win 98 This article is about a CSocket-based chat server/client, which is something that’s been very well discussed. Here the display is in HTML format so the user can change the look of the messages he sends. It also has features such as alerting on message arrival and putting the program icon in […]

Written By
CodeGuru Staff
CodeGuru Staff
Dec 5, 2002
1 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Environment: VC6, Win 98

This article is about a CSocket-based chat server/client, which is something that’s been very well discussed. Here the display is in HTML format so the user can change the look of the messages he sends. It also has features such as alerting on message arrival and putting the program icon in the system tray when hidden, which is very useful.

For putting it in the system tray, we have to use the Shell_NotifyIcon() function.

NOTIFYICONDATA not;
not.cbSize =sizeof(NOTIFYICONDATA);
not.hIcon=AfxGetApp()->LoadIcon(IDR_MAINFRAME);
not.hWnd =this->m_hWnd ;
  strcpy(not.szTip ,"iChat Standard");
not.uCallbackMessage=ID_TRAY;
not.uFlags =NIF_ICON|NIF_MESSAGE|NIF_TIP;
not.uID =1;
  Shell_NotifyIcon(NIM_ADD ,&not);

We will receive tray icon messages on id ID_TRAY. It makes sure that only one instance of the chat server runs at any time. Finally, this chat program is integrated with Microsoft NetMeeting for ease of use.

Downloads


Download demo project – 204 Kb


Download source – 359 Kb

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.