You might want to look at the following articles (in no particular order): http://www.codeproject.com/internet/smfirewall.asp http://www.codeproject.com/tools/firewallpapi.asp http://www.codeproject.com/threads/A_not_so_simple_firewall.asp Hope that helps.
MMansonFan25
Posts
-
Smth. like firewall -
VC++ 2003 .NETI believe the major difference is that the professional version is able to perform more code optimizations than standard. I personally have had no problem with the standard version.
-
Read 3DS file for create character animation - how to ?Doesn't the 3D Studio Max SDK include support for 3DS files?
-
Visual C++ PointersYou might also want to be careful that if you did store the address, you don't try to use it after the class is destroyed.
-
Export templates from DLLTemplates are used by the compiler to "copy and paste" the code for datatypes that are used with a particular function. By the time it becomes a dll, there is no more need for the template.
-
Device driver compatability between Win95 & Win98Your best bet would be to look at the Windows DDK and samples to learn about specific platform differences. Knowledge of assembly and C are helpful.
-
Compatabilty between windows 95 &windows 98 device driversYour best bet would be to look at the Windows DDK and samples to learn about specific platform differences. Knowledge of assembly and C are helpful.
-
How to register a component?It depends on the type of server you are making. If it is an in-process server (dll), at the command prompt you would type "regsvr32 filename.dll" (to unregister, you would use the '/u' switch prior to the filename.) If it is an out-of-process server (exe) then you would type "filename.exe /regserver" (to unregister, use "filename.exe /unregserver"). Hope that helps. -Erik
-
vbscript calling ActiveX(MFC) control method failI was just curious: This is for a scripting system like Windows Based Script Host? What kind of errors, if any, are you getting?