Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Import WinAPI Function in *.VBS File

Using visual basic in say Excel, I am able to declare WinAPI functions using the DECLARE keyword - e.g.

Declare Function SetLocaleInfo Lib "kernel32" Alias "SetLocaleInfoA" ( _
    ByVal Locale As Long,
    ByVal LCType As Long,
    ByVal lpLCData As String
) As Boolean

However when using this syntax in a *.VBS file - it fails with a compile error.

Can anyone tell me what I need to do to run WinAPI functions from *.VBS files?

like image 601
divinci Avatar asked Feb 24 '10 11:02

divinci


1 Answers

You can't run WinAPI functions from VBScript without some extra third-party support.

I believe there used to be vendor of a COM component which allowed VBScript to call into a standard dll but I can't remember what it was called and its quite possible that my imagination is playing tricks on me.

like image 54
AnthonyWJones Avatar answered Sep 27 '22 02:09

AnthonyWJones