razor999 0 Posted April 17, 2011 I want my GUI to monitor online, by making useronline in the GUI.so, I can find out how many people online who use my GUIplease help mesample GUI#include <GUIConstantsEx.au3> #include <StaticConstants.au3> #include <WindowsConstants.au3> #include <Date.au3> #Region ### START Koda GUI section ### Form= $NowTime = _NowTime() $Form1 = GUICreate("GUI UserOnline", 164, 114, 192, 114) $Label1 = GUICtrlCreateLabel("The time is :", 8, 8, 60, 17) $Label2 = GUICtrlCreateLabel(@HOUR& ":" &@MIN& @CRLF &@MON& "/" &@MDAY& "/" &@YEAR, 8, 20, 60, 100) $Label3 = GUICtrlCreateLabel("Useronline :", 8, 88, 60, 17) $Label4 = GUICtrlCreateLabel("0", 72, 88, 10, 17) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Share this post Link to post Share on other sites
JScript 71 Posted April 17, 2011 (edited) Are you wanting to build a edifice from the top! Let's start with the foundation: User-online: how? Using TCP / IP? Explain a little bit more ... Edited April 17, 2011 by jscript http://forum.autoitbrasil.com/ (AutoIt v3 Brazil!!!)Somewhere Out ThereJames IngramDownload Dropbox - Simplify your life!Your virtual HD wherever you go, anywhere! Share this post Link to post Share on other sites