Visual Studio 6

  • Increase font size
  • Default font size
  • Decrease font size
  • default color
  • black color

Utenti

5 registrati
0 oggi
0 questa settimana
0 questo mese
Ultimo: fazo96

Visual Studio 6

Register DLL-OCX

E-mail Stampa PDF

Vi presento Register DLL-OCX un programma creato da ::PoDo:: (l'admin di questo sito)

In pratica dopo aver copiato o un OCX o una DLL nelle apposite cartella con questo programma potete registrarlo!

Buon Download

QUI

 

Icon Extract

E-mail Stampa PDF
Ecco il mio ultimo programma.Basta aprire l'exe e vedere l'icon piccola e quella grande.

Nella Prossima versione cercherò di mettere anche la funzione di salvare...

DOWNLOAD
 

Visual Basic 6 Portable

E-mail Stampa PDF

Ecco Visual Basic 6 nella versione portatile cioè senza installazione ecco il download:

 

 Download

 

Unicode Caption nel form

E-mail Stampa PDF
Public Property Let CaptionW(ByRef NewValue As String)
   Static WndProc As Long, VBWndProc As Long
   m_Caption = NewValue
   ' get window procedures if we don't have them
   If WndProc = 0 Then
       ' the default Unicode window procedure
       WndProc = GetProcAddress(GetModuleHandleW(StrPtr("user32")), "DefWindowProcW")
       ' window procedure of this form
       VBWndProc = GetWindowLongA(hWnd, GWL_WNDPROC)
   End If
   ' ensure we got them
   If WndProc <> 0 Then
       ' replace form's window procedure with the default Unicode one
       SetWindowLongW hWnd, GWL_WNDPROC, WndProc
       ' change form's caption
       SetWindowTextW hWnd, StrPtr(m_Caption)
       ' restore the original window procedure
       SetWindowLongA hWnd, GWL_WNDPROC, VBWndProc
   Else
       ' no Unicode for us
       Caption = m_Caption
   End If
End Property
 

Cambiare lo sfondo del desktop

E-mail Stampa PDF

 Ecco un codice che permette di cambiare lo sfondo del desktop mettendo il percorso:

Declare Function SystemParametersInfo Lib "user32" Alias _
"SystemParametersInfoA" (ByVal uAction As Long, _
ByVal uParam As Long, lpvParam As Any, ByVal fuWinIni As Long) As Long

Dim t As Long
Dim Wallpaper As String
Wallpaper = InputBox("Introduci il path completo")

If Wallpaper = "" Then Exit Sub
t = SystemParametersInfo(ByVal 20, vbnostring, ByVal Wallpaper, &H1)
If t = 0 Then
MousePointer = 0
MsgBox "Errore !"
Exit Sub
End If
End Sub

 
  • «
  •  Inizio 
  •  Prec. 
  •  1 
  •  2 
  •  3 
  •  Succ. 
  •  Fine 
  • »
Pagina 1 di 3

Publicità