© From 2013, June 08. Powered by Blogger.
RSS
Showing posts with label VB6. Show all posts
Showing posts with label VB6. Show all posts

[Project] Soccer Game in VB 6



Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Code] How To Move Caption !! **Shared By mjridoy5**

Public Function MoveCap(Txt As String) As String
strtext = Right$(Txt, Len(Txt) - 1) & Left$(Txt, 1)
MoveCap = strtext
End Function
Private Sub Timer1_Timer()
Me.Caption = MoveCap(Me.Caption)
End Sub

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Animated Icon Msgbox


Download Link: Click to Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Get Drive Infos


Get all Drive In Text Box and Save as txt File !

Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] File Delete


Delete any File from ANywhere Via Vb6

Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Animation Control


Animation Control .. load anumation and play !!

Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Birthday Calculator


Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Cool Menu Bar


Change Font of Menubar

Download Link: Click to Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Date In Window


1 of My fav Code !! it Show Date and Time in Every Form Window Of OS

Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] 1000 VB6 Project **Shared By whos**

Download Link: Click to Download

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] 250 Cool Projects **Shared By whos**

Download LinkClick To Download

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] 95 Cool Projects **Project Shared B whos**

Download Link: Click To Download

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Set Expire Date In Tool


Project That Help to learn How to Set Expire Date In Tool !!

Download Link: Click to Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Tray Icon Ocx Project

A Simple Ocx Source Code Of Icon Tray

Download Link: Click to Download

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] VB Decompiler **Project Of Zaid Markabi**


A Cool VB Decompiler Produced By Zaid Markabi Arabic Syrian VB Student !

Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Code] Add/Remove Software From StartUp **Code Shared By tnt1**

*****At First Make a Module And Add This Code*****

Option Explicit

Public Const REG_SZ = 1 ' Unicode nul terminated string
Public Const REG_BINARY = 3 ' Free form binary

Public Const HKEY_CLASSES_ROOT = &H80000000
Public Const HKEY_CURRENT_USER = &H80000001
Public Const HKEY_LOCAL_MACHINE = &H80000002
Public Const HKEY_USERS = &H80000003
Public Const HKEY_PERFORMANCE_DATA = &H80000004
Public Const HKEY_CURRENT_CONFIG = &H80000005
Public Const HKEY_DYN_DATA = &H80000006

Private Const ERROR_SUCCESS = 0&

Private Declare Function RegCloseKey Lib "advapi32.dll" (ByVal hKey As Long) As Long
Private Declare Function RegCreateKey Lib "advapi32.dll" Alias "RegCreateKeyA" (ByVal hKey As Long, ByVal lpSubKey As String, phkResult As Long) As Long
Private Declare Function RegSetValueEx Lib "advapi32.dll" Alias "RegSetValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal Reserved As Long, ByVal dwType As Long, lpData As Any, ByVal cbData As Long) As Long
Private Declare Function RegDeleteValue Lib "advapi32.dll" Alias "RegDeleteValueA" (ByVal hKey As Long, ByVal lpValueName As String) As Long

Public Function RegistrySaveString(hKey As Long, strPath As String, strValue As String, strData As String) As String
    Dim h&, r

    'Create a new key, or open the key already existing in that location, and return the handle to into h
    r = RegCreateKey(hKey, strPath, h)
    If r <> ERROR_SUCCESS Then RegistrySaveString = r: Exit Function

    'create a subkey beneath the key just created/opened and store a string in it.
    r = RegSetValueEx(h, strValue, 0, REG_SZ, ByVal strData, Len(strData))
    If r = ERROR_SUCCESS Then RegistrySaveString = "SuckSexFull !! **mJTools.Tk**" Else RegistrySaveString = r

    'close the key
    r = RegCloseKey(h)

End Function

Public Function RegistryDeleteString(hKey As Long, strPath As String, strValue As String) As String
    Dim h&, r
    'Create a new key
    r = RegCreateKey(hKey, strPath, h)
    If r <> ERROR_SUCCESS Then RegistryDeleteString = r: Exit Function

    'Delete the key's value
    r = RegDeleteValue(h, strValue)
    If r = ERROR_SUCCESS Then RegistryDeleteString = "SuckSexFull !! **mJTools.Tk**" Else RegistryDeleteString = r
    'close the key
    RegCloseKey h
End Function

Public Function MakeThisAppRunAtStartup() As String
    MakeThisAppRunAtStartup = RegistrySaveString(HKEY_LOCAL_MACHINE, "SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN", App.EXEName, App.Path & "\" & App.EXEName & ".exe")
End Function

Public Function UnMakeThisAppRunAtStartup() As String
    UnMakeThisAppRunAtStartup = RegistryDeleteString(HKEY_LOCAL_MACHINE, "SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\RUN", App.EXEName)
End Function

*****This Code In Form For Add / Remove*****

Private Sub Removs_Click()
MsgBox UnMakeThisAppRunAtStartup
End Sub

Private Sub Adds_Click()
MsgBox MakeThisAppRunAtStartup
End Sub

************************************************************

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Notedpad++


a Simple Notepad Project

Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Math Game


A Math Game !!

Download Link: Click To Download
RAR Password:  DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] CPU & proccessor Details


Project That Get CPU Memory User / Proccessor Details and Speed And CPU more Details

Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS

[Project] Freequancy Analyzie Of Any Text


Download Link: Click To Download
RAR Password: DevelopersCrew

  • Digg
  • Del.icio.us
  • StumbleUpon
  • Reddit
  • RSS