_MessageBox()

« Older   Newer »
  Share  
Gianlu-thebest
CAT_IMG Posted on 20/6/2010, 19:56     +1   -1




La famosa funziona MsgBox in autoit un po' diversa.
Non c'è il timer.

_MessageBox($titolo,$testo,[$icone,[$handle]])

$icone e $handle sono opzionali.

CODICE
Func _MessageBox($title,$text,$icon=0,$handle=0)
       $ar = DllCall('user32.dll','int','MessageBoxA','hwnd',$handle,'str',$text,'str',$title,"int",$icon)
       If IsArray($ar) Then
               Return $ar[0]
       Endif        
EndFunc


l'ho fatta per di più per allenamento.
 
Top
3ad_Pr0grammer
CAT_IMG Posted on 20/6/2010, 20:20     +1   -1




GooD :)
 
Top
nicofossa96
CAT_IMG Posted on 21/6/2010, 07:02     +1   -1




E bravo gianlu! XD Comunque carina l'udf
 
Top
MHack
CAT_IMG Posted on 21/6/2010, 08:25     +1   -1




Bravo Gianlu. ;)
 
Top
Salvo-thebest
CAT_IMG Posted on 21/6/2010, 22:05     +1   -1




bravo XY54RP7
 
Top
Gianlu-thebest
CAT_IMG Posted on 21/6/2010, 23:50     +1   -1




Grazie LA55OSD
 
Top
5 replies since 20/6/2010, 19:56   178 views
  Share