如何得到访问我的共享文档的计算机(其固定ip)的ip地址 ( 积分: 200 )

  • 主题发起人 主题发起人 liubin44966
  • 开始时间 开始时间
L

liubin44966

Unregistered / Unconfirmed
GUEST, unregistred user!
转一篇
===============================================
如何知道有哪些计算机与自己的电脑连接
在 WIN 关闭时 ,往往计算机会提示有哪些计算机与你的电脑连接 ,那么如何通过程序知道

有哪些计算机与自己的电脑连接?

const

MaxNetArrayItems = 512;

type

TSessionInfo50 = packed record

sesi50_cname: PChar; //remote computer name (connection id in Netware)

sesi50_username: PChar;

sesi50_key: DWORD; // used to delete session (not used in Netware)

sesi50_num_conns: Word;

sesi50_num_opens: Word; //not available in Netware

sesi50_time: DWORD;

sesi50_idle_time: DWORD; //not available in Netware

sesi50_protocol: Char;

padl: Char;

end;


TNetSessionEnum = function (const pszServer: PChar; sLevel: SmallInt;

pbBuffer: Pointer; cbBuffer: Word; var pcEntriesRead: Word;

var pcTotalAvail: Word): DWORD; stdcall;



procedure GetNetSessions(ComputerNames: TStrings);

var

SessionInfo: array[0..MaxNetArrayItems] of TSessionInfo50;

EntriesRead, TotalAvail: Word;

I: Integer;

Str: string;

NetSessionEnum: TNetSessionEnum;

LibHandle: THandle;

begin

ComputerNames.Clear;

LibHandle := LoadLibrary('SVRAPI.DLL');

if LibHandle <> 0 then

begin

try

@NetSessionEnum := GetProcAddress(LibHandle, 'NetSessionEnum');

if (@NetSessionEnum <> nil) then

if NetSessionEnum(nil, 50, @SessionInfo, Sizeof(SessionInfo), EntriesRead, TotalAvail) = 0 then

begin

for I := 0 to EntriesRead - 1 do

with SessionInfo do

begin

SetString(Str, sesi50_cname, StrLen(sesi50_cname));

ComputerNames.Add(Str);

end;

end;

finally

FreeLibrary(LibHandle);

end;

end;

end;

=====================================================
连接的计算机名存放在 ComputerNames 中 ,可以在 Win9x 下使用。
 
来自:ilmm520, 时间:2005-5-23 20:11:00, ID:3082142
域名转ip功能
但前提是你知道你的计算机名或者别人的计算机名才行。
汗,没有看清楚题目,权当路过算了。
 
在cmd下使用
netstat -na ipaddress(自己的ip位址)
 
大家看看:在一台计算机上有一个access数据库 共享,别的计算机的操作它,如删除一条记录 就记录上该ip地址删除了一条记录 写入数据库

能实现吗 实现了再加500分
 
这样做:
1、编制客户端程序,让客户只能通过程序才能删除纪录。
2、在客户端程序中先获得该客户的IP,当客户要删除某纪录时,将该IP和被删除纪录保存到删除历史纪录表中。
3、有了“删除历史纪录表”,管理员随时都可以搜索查看监督。
 
to :ggadcdef 你好
我是说就一个程序,放在共享文件夹里,然后别的机子调用它
 
如果仅仅要知道谁连接到你的共享,那么用Beyondbill的办法。
而如果你要“在一台计算机上有一个access数据库 共享,别的计算机的操作它,如删除一条记录 就记录上该ip地址删除了一条记录 写入数据库 ”,用我的办法。
 
有空试一下
 
多人接受答案了。
 
后退
顶部