Topic: How To Show Information my computer in Function Script

how to use function system group
- FindWindow(ClassName , WindowName : String):interger
- GetHardDiskSerial(driveLetter:string):String
- GetTickCount:cardinal
for show system in my computer
http://s29.postimg.org/7htcscsxf/2015_08_13_14_13_27_001.jpg
http://s2.postimg.org/cze16l8d1/2015_08_13_14_09_10_001.jpg

My Visual Database : I Love You
Easy For Beginner Student For Me

Re: How To Show Information my computer in Function Script

1. Retrieves a handle to the top-level window whose class name and window name match the specified strings.
For example you can check running Calculator app or not.

if FindWindow('', 'Calculator')<>0 then ShowMessage('Calculator running') else ShowMessage('Calculator not found');

2.

ShowMessage(GetHardDiskSerial('c'));


3. Retrieves the number of milliseconds that have elapsed since the system was started, up to 49.7 days.

ShowMessage(GetTickCount);
Dmitry.

Re: How To Show Information my computer in Function Script

Still no possibility to get computer name or computer domain name?

Re: How To Show Information my computer in Function Script

tcoton wrote:

Still no possibility to get computer name or computer domain name?

You can get only name of current user

ShowMessage(GetUserName);  
Dmitry.