├── Bin Checker.sln ├── Bin Checker ├── Bin Checker.vbproj ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── app.config └── obj │ └── Debug │ ├── Bin Checker.pdb │ ├── Bin Checker.vbproj.GenerateResource.Cache │ ├── Bin Checker.vbprojResolveAssemblyReference.cache │ ├── Bin Checker.xml │ ├── Bin_Checker_By_aliilapro.Form1.resources │ ├── Bin_Checker_By_aliilapro.Resources.resources │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ └── TempPE │ └── My Project.Resources.Designer.vb.dll └── README.md /Bin Checker.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.21005.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Bin Checker", "Bin Checker\Bin Checker.vbproj", "{759F68C2-E566-48FF-84E5-0FB601F2ED68}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {759F68C2-E566-48FF-84E5-0FB601F2ED68}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {759F68C2-E566-48FF-84E5-0FB601F2ED68}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {759F68C2-E566-48FF-84E5-0FB601F2ED68}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {759F68C2-E566-48FF-84E5-0FB601F2ED68}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /Bin Checker/Bin Checker.vbproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {759F68C2-E566-48FF-84E5-0FB601F2ED68} 8 | WinExe 9 | Bin_Checker_By_aliilapro.My.MyApplication 10 | Bin_Checker_By_aliilapro 11 | Bin Checker 12 | 512 13 | WindowsForms 14 | v4.6.1 15 | 16 | 17 | 18 | AnyCPU 19 | true 20 | full 21 | true 22 | true 23 | bin\Debug\ 24 | Bin Checker.xml 25 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 26 | false 27 | 28 | 29 | AnyCPU 30 | pdbonly 31 | false 32 | true 33 | true 34 | bin\Release\ 35 | Bin Checker.xml 36 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 37 | false 38 | 39 | 40 | On 41 | 42 | 43 | Binary 44 | 45 | 46 | Off 47 | 48 | 49 | On 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | Form 76 | 77 | 78 | Form1.vb 79 | Form 80 | 81 | 82 | 83 | True 84 | Application.myapp 85 | 86 | 87 | True 88 | True 89 | Resources.resx 90 | 91 | 92 | True 93 | Settings.settings 94 | True 95 | 96 | 97 | 98 | 99 | Form1.vb 100 | 101 | 102 | VbMyResourcesResXFileCodeGenerator 103 | Resources.Designer.vb 104 | My.Resources 105 | Designer 106 | 107 | 108 | 109 | 110 | 111 | MyApplicationCodeGenerator 112 | Application.Designer.vb 113 | 114 | 115 | SettingsSingleFileGenerator 116 | My 117 | Settings.Designer.vb 118 | 119 | 120 | 121 | 128 | -------------------------------------------------------------------------------- /Bin Checker/Form1.Designer.vb: -------------------------------------------------------------------------------- 1 |  _ 2 | Partial Class Form1 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | _ 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | _ 24 | Private Sub InitializeComponent() 25 | Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1)) 26 | Me.txtbin = New System.Windows.Forms.TextBox() 27 | Me.Button1 = New System.Windows.Forms.Button() 28 | Me.Button2 = New System.Windows.Forms.Button() 29 | Me.list_v = New System.Windows.Forms.ListView() 30 | Me.ColumnHeader1 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 31 | Me.ColumnHeader2 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 32 | Me.ColumnHeader3 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 33 | Me.ColumnHeader4 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 34 | Me.ColumnHeader5 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 35 | Me.ColumnHeader6 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 36 | Me.ColumnHeader7 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 37 | Me.Label1 = New System.Windows.Forms.Label() 38 | Me.SuspendLayout() 39 | ' 40 | 'txtbin 41 | ' 42 | Me.txtbin.Location = New System.Drawing.Point(125, 6) 43 | Me.txtbin.Name = "txtbin" 44 | Me.txtbin.Size = New System.Drawing.Size(296, 22) 45 | Me.txtbin.TabIndex = 0 46 | Me.txtbin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center 47 | ' 48 | 'Button1 49 | ' 50 | Me.Button1.Location = New System.Drawing.Point(593, 5) 51 | Me.Button1.Name = "Button1" 52 | Me.Button1.Size = New System.Drawing.Size(120, 23) 53 | Me.Button1.TabIndex = 1 54 | Me.Button1.Text = "Save List" 55 | Me.Button1.UseVisualStyleBackColor = True 56 | ' 57 | 'Button2 58 | ' 59 | Me.Button2.Location = New System.Drawing.Point(454, 5) 60 | Me.Button2.Name = "Button2" 61 | Me.Button2.Size = New System.Drawing.Size(120, 23) 62 | Me.Button2.TabIndex = 3 63 | Me.Button2.Text = "Check" 64 | Me.Button2.UseVisualStyleBackColor = True 65 | ' 66 | 'list_v 67 | ' 68 | Me.list_v.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader1, Me.ColumnHeader2, Me.ColumnHeader3, Me.ColumnHeader4, Me.ColumnHeader5, Me.ColumnHeader6, Me.ColumnHeader7}) 69 | Me.list_v.FullRowSelect = True 70 | Me.list_v.GridLines = True 71 | Me.list_v.Location = New System.Drawing.Point(1, 34) 72 | Me.list_v.Name = "list_v" 73 | Me.list_v.Size = New System.Drawing.Size(712, 311) 74 | Me.list_v.TabIndex = 4 75 | Me.list_v.UseCompatibleStateImageBehavior = False 76 | Me.list_v.View = System.Windows.Forms.View.Details 77 | ' 78 | 'ColumnHeader1 79 | ' 80 | Me.ColumnHeader1.Text = "BIN|SCHEME" 81 | Me.ColumnHeader1.Width = 113 82 | ' 83 | 'ColumnHeader2 84 | ' 85 | Me.ColumnHeader2.Text = "TYPE" 86 | Me.ColumnHeader2.Width = 79 87 | ' 88 | 'ColumnHeader3 89 | ' 90 | Me.ColumnHeader3.Text = "BANK" 91 | Me.ColumnHeader3.Width = 106 92 | ' 93 | 'ColumnHeader4 94 | ' 95 | Me.ColumnHeader4.Text = "BRAND" 96 | Me.ColumnHeader4.Width = 98 97 | ' 98 | 'ColumnHeader5 99 | ' 100 | Me.ColumnHeader5.Text = "PREPAID" 101 | Me.ColumnHeader5.Width = 90 102 | ' 103 | 'ColumnHeader6 104 | ' 105 | Me.ColumnHeader6.Text = "NUMBER" 106 | Me.ColumnHeader6.Width = 89 107 | ' 108 | 'ColumnHeader7 109 | ' 110 | Me.ColumnHeader7.Text = "COUNTRY" 111 | Me.ColumnHeader7.Width = 97 112 | ' 113 | 'Label1 114 | ' 115 | Me.Label1.AutoSize = True 116 | Me.Label1.Location = New System.Drawing.Point(7, 9) 117 | Me.Label1.Name = "Label1" 118 | Me.Label1.Size = New System.Drawing.Size(112, 14) 119 | Me.Label1.TabIndex = 5 120 | Me.Label1.Text = "Enter Bin Number :" 121 | ' 122 | 'Form1 123 | ' 124 | Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 14.0!) 125 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 126 | Me.ClientSize = New System.Drawing.Size(716, 350) 127 | Me.Controls.Add(Me.Label1) 128 | Me.Controls.Add(Me.list_v) 129 | Me.Controls.Add(Me.Button2) 130 | Me.Controls.Add(Me.Button1) 131 | Me.Controls.Add(Me.txtbin) 132 | Me.Font = New System.Drawing.Font("Tahoma", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 133 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle 134 | Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) 135 | Me.MaximizeBox = False 136 | Me.MinimizeBox = False 137 | Me.Name = "Form1" 138 | Me.ShowIcon = False 139 | Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen 140 | Me.Text = "Bin Checker | use api site (https://lookup.binlist.net)" 141 | Me.ResumeLayout(False) 142 | Me.PerformLayout() 143 | 144 | End Sub 145 | Friend WithEvents txtbin As System.Windows.Forms.TextBox 146 | Friend WithEvents Button1 As System.Windows.Forms.Button 147 | Friend WithEvents Button2 As System.Windows.Forms.Button 148 | Friend WithEvents list_v As System.Windows.Forms.ListView 149 | Friend WithEvents ColumnHeader1 As System.Windows.Forms.ColumnHeader 150 | Friend WithEvents ColumnHeader2 As System.Windows.Forms.ColumnHeader 151 | Friend WithEvents ColumnHeader3 As System.Windows.Forms.ColumnHeader 152 | Friend WithEvents ColumnHeader4 As System.Windows.Forms.ColumnHeader 153 | Friend WithEvents ColumnHeader5 As System.Windows.Forms.ColumnHeader 154 | Friend WithEvents ColumnHeader6 As System.Windows.Forms.ColumnHeader 155 | Friend WithEvents ColumnHeader7 As System.Windows.Forms.ColumnHeader 156 | Friend WithEvents Label1 As Label 157 | End Class 158 | -------------------------------------------------------------------------------- /Bin Checker/Form1.vb: -------------------------------------------------------------------------------- 1 | Imports System.Net 2 | Imports System.IO 3 | Imports System.Text.RegularExpressions 4 | Imports System.Text 5 | Imports System.Threading 6 | Public Class Form1 7 | Public Sub New() 8 | 9 | InitializeComponent() 10 | Control.CheckForIllegalCrossThreadCalls = False 11 | 12 | End Sub 13 | Private cookies As CookieContainer = New CookieContainer 14 | Dim RG As String = """scheme"":""(.*?)""|""type"":""(.*?)""|""bank"":{""name"":""(.*?)"",|""brand"":""(.*?)""|prepaid"":(.*?),|""number"":{""length"":(.*?),|"",""name"":""(.*?)"",""numeric"":""" 15 | Dim X As String 16 | 17 | 18 | #Region "Get BIN" 19 | Function aliilapro(ByVal str As String, ByVal str2 As String, ByVal num As Integer) As String 20 | Dim lol As Match = Regex.Match(str, str2, RegexOptions.IgnoreCase) 21 | Return lol.Groups(num).Value 22 | End Function 23 | 24 | Public Sub GETBIN() 25 | Try 26 | Dim request As HttpWebRequest = DirectCast(WebRequest.Create("https://lookup.binlist.net/" & txtbin.Text), HttpWebRequest) 27 | request.Method = "GET" 28 | request.CookieContainer = Me.cookies 29 | request.UserAgent = "Mozilla/5.0 (Windows NT 6.1; rv:47.0) Gecko/20100101 Firefox/47.0" 30 | request.ContentType = "application/x-www-form-urlencoded" 31 | request.Proxy = Nothing 32 | Dim reader As New StreamReader(request.GetResponse.GetResponseStream, Encoding.UTF8) 33 | Dim input As String = reader.ReadToEnd 34 | Dim IT As New ListViewItem 35 | IT.Text = txtbin.Text & "|" & aliilapro(input, RG.Split("|")(0), 1) 36 | IT.SubItems.Add(aliilapro(input, RG.Split("|")(1), 1)) 37 | IT.SubItems.Add(aliilapro(input, RG.Split("|")(2), 1)) 38 | IT.SubItems.Add(aliilapro(input, RG.Split("|")(3), 1)) 39 | IT.SubItems.Add(aliilapro(input, RG.Split("|")(4), 1).Replace("false", "No").Replace("true", "yes")) 40 | IT.SubItems.Add(aliilapro(input, RG.Split("|")(5), 1)) 41 | IT.SubItems.Add(aliilapro(input, RG.Split("|")(6), 1)) 42 | list_v.Items.Add(IT) 43 | Button1.Enabled = True 44 | Button2.Enabled = True 45 | Catch ex As Exception 46 | Button1.Enabled = True 47 | Button2.Enabled = True 48 | MsgBox(ex.Message, MsgBoxStyle.Exclamation) 49 | End Try 50 | End Sub 51 | #End Region 52 | 53 | Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click 54 | If txtbin.Text = String.Empty Then : Exit Sub 55 | End If 56 | Button1.Enabled = False 57 | Button2.Enabled = False 58 | Dim IHEB As New Thread(AddressOf GETBIN) 59 | IHEB.IsBackground = True 60 | IHEB.Start() 61 | End Sub 62 | 63 | Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click 64 | Try 65 | If list_v.Items.Count = Nothing Then 66 | Exit Sub 67 | End If 68 | Dim ID As New SaveFileDialog 69 | ID.Title = "Save List Bin" 70 | ID.Filter = "txt Files(*.txt)|*.txt" 71 | ID.FileName = "Bin Number" 72 | If ID.ShowDialog = Windows.Forms.DialogResult.OK Then 73 | Dim I As New StreamWriter(ID.FileName) 74 | For Each x As ListViewItem In list_v.Items 75 | Dim StrLn As String = "" 76 | For j = 0 To x.SubItems.Count - 1 77 | StrLn += list_v.Text + x.SubItems(j).Text + "|" 78 | Next 79 | I.WriteLine(StrLn) 80 | Next 81 | I.Close() 82 | MsgBox("File Save In : " & ID.FileName, MsgBoxStyle.Information, "Info") 83 | End If 84 | Catch ex As Exception 85 | MsgBox(ex.Message) 86 | End Try 87 | End Sub 88 | End Class 89 | -------------------------------------------------------------------------------- /Bin Checker/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | 'NOTE: This file is auto-generated; do not modify it directly. To make changes, 18 | ' or if you encounter build errors in this file, go to the Project Designer 19 | ' (go to Project Properties or double-click the My Project node in 20 | ' Solution Explorer), and make changes on the Application tab. 21 | ' 22 | Partial Friend Class MyApplication 23 | 24 | _ 25 | Public Sub New() 26 | MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) 27 | Me.IsSingleInstance = false 28 | Me.EnableVisualStyles = true 29 | Me.SaveMySettingsOnExit = true 30 | Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses 31 | End Sub 32 | 33 | _ 34 | Protected Overrides Sub OnCreateMainForm() 35 | Me.MainForm = Global.Bin_Checker_By_aliilapro.Form1 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /Bin Checker/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | Form1 5 | false 6 | 0 7 | true 8 | 0 9 | 0 10 | true 11 | 12 | -------------------------------------------------------------------------------- /Bin Checker/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Reflection 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | ' Review the values of the assembly attributes 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 'The following GUID is for the ID of the typelib if this project is exposed to COM 21 | 22 | 23 | ' Version information for an assembly consists of the following four values: 24 | ' 25 | ' Major Version 26 | ' Minor Version 27 | ' Build Number 28 | ' Revision 29 | ' 30 | ' You can specify all the values or you can default the Build and Revision Numbers 31 | ' by using the '*' as shown below: 32 | ' 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Bin Checker/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | Imports System 15 | 16 | Namespace My.Resources 17 | 18 | 'This class was auto-generated by the StronglyTypedResourceBuilder 19 | 'class via a tool like ResGen or Visual Studio. 20 | 'To add or remove a member, edit your .ResX file then rerun ResGen 21 | 'with the /str option, or rebuild your VS project. 22 | ''' 23 | ''' A strongly-typed resource class, for looking up localized strings, etc. 24 | ''' 25 | _ 29 | Friend Module Resources 30 | 31 | Private resourceMan As Global.System.Resources.ResourceManager 32 | 33 | Private resourceCulture As Global.System.Globalization.CultureInfo 34 | 35 | ''' 36 | ''' Returns the cached ResourceManager instance used by this class. 37 | ''' 38 | _ 39 | Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager 40 | Get 41 | If Object.ReferenceEquals(resourceMan, Nothing) Then 42 | Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("Bin_Checker_By_aliilapro.Resources", GetType(Resources).Assembly) 43 | resourceMan = temp 44 | End If 45 | Return resourceMan 46 | End Get 47 | End Property 48 | 49 | ''' 50 | ''' Overrides the current thread's CurrentUICulture property for all 51 | ''' resource lookups using this strongly typed resource class. 52 | ''' 53 | _ 54 | Friend Property Culture() As Global.System.Globalization.CultureInfo 55 | Get 56 | Return resourceCulture 57 | End Get 58 | Set 59 | resourceCulture = value 60 | End Set 61 | End Property 62 | End Module 63 | End Namespace 64 | -------------------------------------------------------------------------------- /Bin Checker/My Project/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /Bin Checker/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | _ 20 | Partial Friend NotInheritable Class MySettings 21 | Inherits Global.System.Configuration.ApplicationSettingsBase 22 | 23 | Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings) 24 | 25 | #Region "My.Settings Auto-Save Functionality" 26 | #If _MyType = "WindowsForms" Then 27 | Private Shared addedHandler As Boolean 28 | 29 | Private Shared addedHandlerLockObject As New Object 30 | 31 | _ 32 | Private Shared Sub AutoSaveSettings(sender As Global.System.Object, e As Global.System.EventArgs) 33 | If My.Application.SaveMySettingsOnExit Then 34 | My.Settings.Save() 35 | End If 36 | End Sub 37 | #End If 38 | #End Region 39 | 40 | Public Shared ReadOnly Property [Default]() As MySettings 41 | Get 42 | 43 | #If _MyType = "WindowsForms" Then 44 | If Not addedHandler Then 45 | SyncLock addedHandlerLockObject 46 | If Not addedHandler Then 47 | AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings 48 | addedHandler = True 49 | End If 50 | End SyncLock 51 | End If 52 | #End If 53 | Return defaultInstance 54 | End Get 55 | End Property 56 | End Class 57 | End Namespace 58 | 59 | Namespace My 60 | 61 | _ 64 | Friend Module MySettingsProperty 65 | 66 | _ 67 | Friend ReadOnly Property Settings() As Global.Bin_Checker_By_aliilapro.My.MySettings 68 | Get 69 | Return Global.Bin_Checker_By_aliilapro.My.MySettings.Default 70 | End Get 71 | End Property 72 | End Module 73 | End Namespace 74 | -------------------------------------------------------------------------------- /Bin Checker/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Bin Checker/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/Bin Checker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALIILAPRO/BinChecker/6760ee296cec767a5b249b7c8d0c62e55d95df8b/Bin Checker/obj/Debug/Bin Checker.pdb -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/Bin Checker.vbproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALIILAPRO/BinChecker/6760ee296cec767a5b249b7c8d0c62e55d95df8b/Bin Checker/obj/Debug/Bin Checker.vbproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/Bin Checker.vbprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALIILAPRO/BinChecker/6760ee296cec767a5b249b7c8d0c62e55d95df8b/Bin Checker/obj/Debug/Bin Checker.vbprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/Bin Checker.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Bin Checker 6 | 7 | 8 | 9 | 10 | 11 | A strongly-typed resource class, for looking up localized strings, etc. 12 | 13 | 14 | 15 | 16 | Returns the cached ResourceManager instance used by this class. 17 | 18 | 19 | 20 | 21 | Overrides the current thread's CurrentUICulture property for all 22 | resource lookups using this strongly typed resource class. 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/Bin_Checker_By_aliilapro.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALIILAPRO/BinChecker/6760ee296cec767a5b249b7c8d0c62e55d95df8b/Bin Checker/obj/Debug/Bin_Checker_By_aliilapro.Form1.resources -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/Bin_Checker_By_aliilapro.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALIILAPRO/BinChecker/6760ee296cec767a5b249b7c8d0c62e55d95df8b/Bin Checker/obj/Debug/Bin_Checker_By_aliilapro.Resources.resources -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9db9a462738447bc0855ec235c67b75d66986070 2 | -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALIILAPRO/BinChecker/6760ee296cec767a5b249b7c8d0c62e55d95df8b/Bin Checker/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALIILAPRO/BinChecker/6760ee296cec767a5b249b7c8d0c62e55d95df8b/Bin Checker/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Bin Checker/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALIILAPRO/BinChecker/6760ee296cec767a5b249b7c8d0c62e55d95df8b/Bin Checker/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SourceCode BinChecker [ By aliilapro ] 2 | Mini Tool For Get Information About Bin Number 3 | - Coded Via Visual Basic 4 | - 🔱 ID Telegram : Https://t.me/aliilapro 5 | - 🔱 Channel Telegram : Https://t.me/Source_pro 6 | - 🔱 Blog : Https://aliilapro.blog.ir 7 | --------------------------------------------------------------------------------