Are there any free tools for source code checking/profiling and testing for VC++/MFC/Win32 API code?
Are there any tools for .NET as well?
I am currently trying to use NUnit for testing?
I couldn't find any versions of Lint for VC++...
Any suggestions will be helpful....
I want to know how to receive and read packets sent to my machine using TCP/IP. How can use WinSock functions to do this?
Are there any links which show how to do socket programming in Win32 API?
I have this datagrid on a form. now if the user clicks on the leftmost column of the row and presses the Delete button the row gets deleted. I want to trap the delete key and set keyascii = 0. but there is no ascii code for delete key. How do i do it?
P.S. I have the same problem in VB.NET as...
I probably think there has been a post on something similar to this but I am unable to find it. Anyway here's my problem.
I have to search for a string in a text file which is like "0?????*" in a line and then copy that line into a new file.The ? marks are wildcard characters which...
I am trying to manipulate a XML DOM document using the DomDocument40 object that comes with MSXML 4.0
Right now I am able to read information of the nodes and attributes using the IXMLDOMELEMENT object. However when I try to write to the attribute using '.setattribute' it seems like the format...
I am trying to manipulate a XML DOM document using the DomDocument40 object that comes with MSXML 4.0
Right now I am able to read information of the nodes and attributes using the IXMLDOMELEMENT object. However when I try to write to the attribute using '.setattribute' it seems like the format...
I would like to know what are the commercial/free software available for performing a Hardware/Software inventory audit and generating reports for systems on a network.
Are there any websites which compare/benchmark different Audit software suites?
Thanks.
I have this file dump.txt which is always 64K in size. Now I am reading in 16 bytes at a time from this file into a buffer and then doing some comparisons. I am using the read function to read the bytes.
This works fine for some time and then all of a sudden there is this error for which I am...
I have this piece of code written for Unix which I am trying to port to Windows. The code is as follows.
int fd;
off_t fp = 0xE0000;
const char *devmem = "/dev/mem"
fd = open(devmem, O_RDONLY);
lseek (fd, fp, SEEK_SET);
In UNIX you can treat memory as a file device but can this be...
I want to get read access to physical memory to search for certain bytes. The memory address range is 0x000F0000 to 0x000FFFFF that is 64K bytes. I tried using the following code
NTSTATUS status;
HANDLE physmem;
status = NtOpenSection( &physmem, SECTION_MAP_READ, &attributes );
if(...
I am trying to build a system information tool that would query the DMI data like Bios info, CPU info etc. on a PC. Is there any API that can be used in my C++ program to this?
The documents at http://www.dmtf.org do not give any language specific implementation.
I have written this code which gathers all details about applications installed on the computer and writes them to a file. I first used getfileversionsize to allocate the required memory then used getfileversioninfo and verqueryvalues to get the different information I am passing the identifier...
I have coded a program in Win32 API which essentially a information gathering tool. there is this dialog in which the user is supposed to enter info. A separate thread is spawned which creates a process running another executable in the background. Now the question is if the user clicks cancel...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.