Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bkowlagi
  • Content: Threads
  • Order by date
  1. bkowlagi

    Tools required for Code checking and testing

    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....
  2. bkowlagi

    How to do communication with another computer using TCP/IP

    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?
  3. bkowlagi

    How to detect delete keypress in a form control

    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...
  4. bkowlagi

    Regular expression in files

    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...
  5. bkowlagi

    XML DOM in VB 6.0

    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...
  6. bkowlagi

    XML DOM in VB 6.0

    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...
  7. bkowlagi

    Auditing software....

    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.
  8. bkowlagi

    Unexpected end of file when reading

    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...
  9. bkowlagi

    Trying to read physical memory in windows.

    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...
  10. bkowlagi

    How to read physical memory?

    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(...
  11. bkowlagi

    How to retrieve SMBIOS information?

    I am trying to retrieve the smbios information for a computer. Can I do this without using assembly language?
  12. bkowlagi

    How to query DMI data?

    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.
  13. bkowlagi

    How to get LicenceNo. information

    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...
  14. bkowlagi

    Process and thread issues

    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...

Part and Inventory Search

Back
Top