© From 2013, June 08. Powered by Blogger.
RSS

[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

[Project] Get Ip Details **Project Shared By nucky**


Project Of Getting IP and Details !!

Download Link: Click to Download

RAR Password: DevelopersCrew

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

[Project] Advance Image Editor


An Advance Image Editor With Lots Of Exclusive Functions !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Webbrowser With CoolMenu Bar


Webbrowser With Cool Menu Bars !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Font Viewer


A Simple Project to Show Tota FOnts Count and Fonts Previews !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Detect Setup File In CD Drive






Detect Setup.exe File From CD Drive and Auto Run that Exe !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Plugins] 35,000+ .ico File Supported in VB6

Download Link: Click to Download

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

[Plugins] 17 Codejock Skin (.dll) File Collection

Download Link: Click To Download
RAR Password: DevelopersCrew

How To Add: At First Add Codejock Skin Components In Your Form !! Then Copy the Dll File In Main App Folder And Write This Code in Form

Private Sub Form_load ()
SM.loadskin app.path + "/SkinFileName.dll", ""  'Sm is Name of Skinfirmwork
SM.applyWindow me.hWnd
End Sub

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

[Plugin] 85+ Active Skin (.skn) Collection

Download Link: Click To Download

How to Add: At First Add Active Skin Components To Visual Basic ! Then Right Click On Icon That Added In form And Load .Skn File !! Then Put This Code

Private Sub For_load ()
Skin1.ApplySkin
Me.hWnd
End Sub

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

[Project] Smart User **Project Shared By mjridoy5**


Mig33 Smart Smart User !! With Emotication Chat

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Mig33 Single ID loGin and Romom Park **Project Shared By mjridoy5**


A Mig33 Single ID LoGin  and Room Join and Presence Setting !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Email Sender With Attachment Support


A Email Sender Using Gamil and SMTP Server !! With .txt Attachment Support !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Zip File Hidder


Hide Zip File into Img File and Restore Img File to Zip File !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Change RGB Color By Scrolling **Project Shared By mjridoy5**


Change RB Color By Scrolling Scroll Bar !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Snake Game like Nokia Mobile


A Snake Game With High Score System and Computer vs Human Mode !!

Download Link: Click To Download
RAR Password:  DevelopersCrew

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

[Code] Change Pc Name from VB6 **Code Shared By mjridoy5**

Declare Function SetComputerName Lib "kernel32" _
Alias "SetComputerNameA" (ByVal lpComputerName As String) As Long

Private Sub cmdChange_Click()
SetComputerName txtNewName.Text
End Sub

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

[Code] Random Text Generator **Code Shared By mjridoy5**

Function RanDomString(Length As Integer) As String
Dim i As Integer
Do While i < Length
Randomize
Select Case IIf(i = 0, Int(1 * Rnd + 1), Int(2 * Rnd))
Case 0: RanDomString = RanDomString & Chr(Int(10 * Rnd + 48))
Case 1: RanDomString = RanDomString & Chr(Int(26 * Rnd + 65))
End Select
i = i + 1
Loop
End Function

Private Sub Form_Load()
Debug.Print RanDomString(9)
Debug.Print RanDomString(9)
End Sub

Private Sub Command1_Click()
Text1 = RanDomString(10) '10=Length
End Sub

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

[Project] Offline Registration System **Project Shared By mjridoy5**


A Simple Offline Registration System !!

Download Link: Click To Download

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

[Project] LoGin FB via inet **Project Shared By nucky**


LoGin In Facebook And Get Online Friends In ListBox !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] Trivia Game






Project Of Trivia Game With Advance Picture Alert !!

Download Link: Click To Download
RAR Password: DevelopersCrew

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

[Project] BackGround Removers


A Project Of Removing BackGround Of Pricture !!

Download Link: Click To Download

RAR Password: DevelopersCrew

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

[Project] Tone Generator Using Beep Function


A Source Code Of Demo How to Creat Sound Using Beep Function !!

Download Link: Click Here To Download
RAR Password: DevelopersCrew

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

Welcome o DevelopersCrew !! the Blog Where Developers HangOut To Help You !!

Hi !! Welcome To DevelopersCrew !! Its Our First Day 08 June, 2013  We Have Came Out To Help You !! Hope You Will Get Lots Of Help From Us !! Share Your Problems, Codes, Source With Everyone And Lets Help Each Other !!

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