Hi, id like to write some app using ISAPI. But i dont have Win 2k. I have installed IIS but i dont know if its enough? What else do i need to use ISAPI? Thanks.
Chernobog1
Posts
-
ISAPI -
Modem informationsHi, I need to extract every information I can from ADSL modem(speed,SRN..) (best using tellnet). How to do this or what functions to use? Thanks in advance.
-
Time.h help!Hi, you can use MFC CTime class; CTime time = CTime::GetCurrentTime (); MessateBox (time.Format ("Time is %H:%M:%S"));
-
Inserting data to exe fileThx, but what are these resource handing function?
-
Inserting data to exe fileHi, I am trying to make an installer for my app. Id like to have all data(files) in one exe file. How should I append or insert these files to my installer application and how to aproach them? Thanks.
-
MS VC++ ProblemThank u very much. It worked.. ;)
-
MS VC++ ProblemHi, please help mi with this problem. When compile my project it compiles all cpp files (not only changed one). When pressing F5 it wants to build it all and writes that obj files are not up to date or does not exist. This is happening over and over again even if i dont make any change to code. Do u have any suggestion why this is happening? - it happend accidentaly (i quess) after 3 months workings with the project ... Thanks
-
How do i get my comp's ip ?That was pretty fast reply :) Thanks
-
How do i get my comp's ip ?Hi, is there any function which tells me what ip has the machine ? (i dont mean 127.0.0.1 ;)). Thanks
-
Edit paste copy problemHi, how can i force my CEdit control to react to Ctrl +v and Ctrl+c. It doesnt do it automaticaly. I tried the following but it doesnt work out : dirive OnKeyDown in my class CEditEx if ((::GetKeyState (VK_CONTROL)<0)&&(nChar == 0x63)) { // do something } doesnt work with GetAsyncKeyState too. Any sugestion why? Or there is other method to do this stuff? Thanks
-
problem with gethostbyaddrThanks :)
-
problem with gethostbyaddrHi, ive got this problem : when i use this everything is ok : LPHOSTENT hostent; hostent = gethostbyname("localhost"); but with this : LPHOSTENT hostent; CString strIP="127.0.0.1" hostent = gethostbyaddr (strIP,strIP.GetLength (),AF_INET); i cant connect to the server (of course it does the same with other adresses then localhost :) Can u tell me plz what im doing wrong ? And the third para in gethostbyadd. Does it have to be always AF_INET or there are some choices? Thx in Advance.
-
Creating Ico fileThanks :)
-
Creating Ico fileThx, but i need to do this manually in my program.
-
Creating Ico fileHi can u please tell me how to create ico file or what structure it has? Thanks
-
Switchnig beetween viewsHi ive got app with Static splitter window. On each pane there is a listctrl (classic file explorer). When i first start my app i cant get any item focused even if i use SetActivePane and SetItemState. The same problem i have when i try to change view with tab key. The pane is active (or i quess so) but no list member is activated till i mouse click on it. Can u help me plz ? Thanks in advance.
-
Removing icon from headerThx but text is not formated right , there is a space between text and border :(
-
Removing icon from headerHi, can u please tell me how to remove icon from header in CListCtrl ? Thanks.
-
Harddisk partitionsTCHAR drive[] = "a:\\"; int NoDrives =0; for (int i= 'A';i<'Z';i++) { drive[0] = i; UINT type= GetDriveType (drive); if (type !=DRIVE_NO_ROOT_DIR ) { SHFILEINFO fi; SHGetFileInfo (drive,0,&fi,sizeof (fi),SHGFI_TYPENAME|SHGFI_DISPLAYNAME|SHGFI_SMALLICON|SHGFI_ICON ); // fi.szDisplayName; Partition or drive name // fi.TypeName Type name // fi.hIcon Index of the icon of the drive in the system NoDrives ++; ); }; This should work .
-
PopUp menu of unknown sizeHi, in my app i need pop-up menu which items depends on a situation. How should i insert new items to this menu and how should i handle it if i have no constants defined in resource.h Thank you.