• Earn real money by being active: Hello Guest, earn real money by simply being active on the forum — post quality content, get reactions, and help the community. Once you reach the minimum credit amount, you’ll be able to withdraw your balance directly. Learn how it works.

Perl [Perl] Funcion cambiar_fondo()

Status
Not open for further replies.

Doddy

Leech
User
Joined
Apr 1, 2012
Messages
169
Reputation
0
Reaction score
406
Points
63
Credits
0
‎13 Years of Service‎
57%
Hola a todos

Acabo de hacer un funcion usando las API de Windows para poder cambiar el fondo de escritorio con solo poner la ruta de la imagen.

Code:
>

#By Doddy H

use Win32::API;

sub cambiar_fondo {

my $a = new Win32::API("user32","SystemParametersInfo", [L,L,P,L],L);
$a->Call(20,0,$_[0],0);

}
Ejemplo de uso

Code:
>
cambiar_fondo("c:/Perl/img.bmp");
 
Status
Not open for further replies.
Back
Top