Copy Link
Add to Bookmark
Report

Vana Imago 1 43

eZine's profile picture
Published in 
Vana Imago
 · 5 years ago

  

                      COME RENDERE INVISIBILE                                                        UN PROGRAMMA IN VISUAL BASIC                                                                                                                                         di Techno Knight                                                                                                                                                                                                     Potete rendere                                                                  invisibile il vostro programma fatto in VB durante l'esecuzione (che pu•        servire che ne so, per trojan lamerosi, scherzi, etcetera etcetera...)                                                                                          PerchŠ un programma non appaia nel task manager non deve avere form visibili,   quindi non dobbiamo far altro che rendere invisibile la background window.      Per prima cosa ci serve l'handle della finestra, poi usiamo                     ShowWindow per renderla invisibile.                                             Allora cominciamo a dichiarare le API che dobbiamo usare :                      ....                                                                                                                                                            Declare Function GetWindow Lib "User" (ByVal hWnd as Integer, ByVal wCmd        as integer) as integer                                                                                                                                          Declare Function ShowWindow Lib "User" (ByVal hWnd as Integer, ByVal nCmdShow   as integer) as integer                                                                                                                                          ....                                                                                                                                                            E poi scriviamo in Sub Form_Load() :                                                                                                                            .....                                                                                                                                                           Dim owner As Integer                                                                                                                                            form1.Visible = False                                                           owner = GetWindow(Me.hWnd, 4)                                                   ShowWindow(owner,0)                                                                                                                                             .....                                                                                                                                                           Cmq GetWindow e ShowWindow sono delle API di Windows quindi anche se            questo esempio Š per VB potete usarle con qualsiasi compilatore per win.                                                                                                                Techno Knight (techno83@freemail.it)                                                                                                                                                                                                                                                                                                                                                    

← previous
next →
loading
sending ...
New to Neperos ? Sign Up for free
download Neperos App from Google Play
install Neperos as PWA

Let's discover also

Recent Articles

Recent Comments

Neperos cookies
This website uses cookies to store your preferences and improve the service. Cookies authorization will allow me and / or my partners to process personal data such as browsing behaviour.

By pressing OK you agree to the Terms of Service and acknowledge the Privacy Policy

By pressing REJECT you will be able to continue to use Neperos (like read articles or write comments) but some important cookies will not be set. This may affect certain features and functions of the platform.
OK
REJECT