 |
|
|
 |
|
 |
some better comments would have been nice... I have no idea what part is doing what.
|
|
|
|
 |
 | how???  |  | Anonymous | 10:34 28 Oct '04 |
|
 |
I'm a scripting Noob...What exactly do I need in order to get this to work?
I copied the above and pasted into a .vbs file and ran it, thus resulting in an error cause i dont know what i'm doing apprenetly :S
TIA,
VBS noob
|
|
|
|
 |
|
 |
Make this a COM with dual interfaces to support scripting.
|
|
|
|
 |
|
 |
Did you somehow miss "C++" at the top of the article?
"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15
"Judge not by the eye but by the heart." - Native American Proverb
|
|
|
|
 |
|
 |
i need to get info about (from inet-connected lan card):
1. ip address
2. net mask
3. check if DHCP is used
4. gateway IP and DNS IP adresses
on win 98 ??
|
|
|
|
 |
|
 |
I run your program in my class and It doesn't show all computer in my class local network!
|
|
|
|
 |
|
 |
Try changing the sizes of BufferSize (and Buffer).
|
|
|
|
 |
|
 |
how 2 i implement the code
when i compile it says this error
error C2447: missing function header (old-style formal list?)
|
|
|
|
 |
|
 |
Nice work, but i can't find network printers, i can enumerate all computers, but i need to know all IP addresses used on a network, so i need to know also network printers's IPs... There's a way??
thanx D.
|
|
|
|
 |
|
 |
The program works fine and returns systems in my domain. How do I get the nodes that are part of the 'Workgroup'?
|
|
|
|
 |
|
 |
Being rather familiar with Berkely style sockets the Winsock I'm used to seems rather familiar though some of the source for Winsock 2 (as seen in this article) is quite different.
What are the differences between the two?
Are there preformance differences or just a different api to the same back end?
Sean
|
|
|
|
 |
|
 |
you almost can use these codes without changes in your own program!
SIDEWALK I'm a programmer of PLA China.
|
|
|
|
 |
|
 |
It can work correctly, but how to make it work faster? How to change it to multithreading?
|
|
|
|
 |
|
 |
I don't know what you mean exactly, but if you want to use it in a multithreaded environment, just call the function in a workerthread and.... tadaaaa, it's multithreaded.
Regards,
Peter.
P.S. If you need an example, mail me and I will send you one.
|
|
|
|
 |
|
 |
Great!!! But it can't get all the subnet mask. How do I get all the subnet mask on WINDOWS 2000 SERVER ??? Please tell me how to change the code by VC++ 6.0...
Thanks...
|
|
|
|
 |
|
 |
I done through VB get all computers names and IP address with same Winsock functions, what you done here. If you have any idea how to enumeration machine names and current login user of that machine. I have no idea how to get current user who login particular machine, even thou I know IP address and machine name. If know can you give some idea.
Thank you very much,
Suresh M
|
|
|
|
 |
|
 |
I Successfully use this program to browse the computers,
but It does not respond successfully
It will Enumerates only 'Entire Network' which cannot be displayed
because it's lpRemoteName is NULL
It Enumerates none of computers
can you help me ?
HRH
|
|
|
|
 |
|
 |
How to handle the CString declaration? I have no such class in BC 8
|
|
|
|
 |
|
 |
Hi,
Its just a variable containing a string. You can substitute it with appropriate variables in bc8. Any variable that can contain a string can be used.
P.S. Make sure that you initialize the variable properly. All Luck.
With Warm Regards,
V.Girish
www.geocities.com/contactgirish/homepage.html
|
|
|
|
 |
|
 |
delete Buffer;
should be
delete []Buffer;
|
|
|
|
 |
|
 |
Hi,
Similarly , Is it Possible to retrieve the MAC Address also ..??
Maria
Maria Jothi (Software Engineer)
MAIL-ID:maria_jothi@usa.net
|
|
|
|
 |
|
 |
Hi,
Sorry for the delay in answering your question.
Take a look at http://community.borland.com/article/0,1410,26040,00.html
to retrieve the MAC Address
|
|
|
|
 |
|
 |
Or you could try :
http://www.codeguru.com/network/ViewNIC.html
|
|
|
|
 |