├── Settings.settings ├── Application.myapp ├── app.manifest ├── AssemblyInfo.vb ├── Application.Designer.vb ├── Settings.Designer.vb ├── Resources.resx └── Resources.Designer.vb /Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Application.myapp: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | welcome 5 | false 6 | 0 7 | true 8 | 0 9 | true 10 | -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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.simulating_atm.welcome 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /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.simulating_atm.My.MySettings 68 | Get 69 | Return Global.simulating_atm.My.MySettings.Default 70 | End Get 71 | End Property 72 | End Module 73 | End Namespace 74 | -------------------------------------------------------------------------------- /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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\images\Lock_image.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\images\atm5.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\images\withdrawal.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\images\mglass.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\images\banner.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\images\correct.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | 140 | ..\images\P13411607.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 141 | 142 | 143 | ..\images\close.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 144 | 145 | 146 | ..\images\pinn.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 147 | 148 | 149 | ..\images\fund_transfer.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 150 | 151 | 152 | ..\images\money.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 153 | 154 | 155 | ..\images\User_login_man_profile_account.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 156 | 157 | 158 | ..\images\ksusta_banner_trans.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 159 | 160 | 161 | ..\images\fundd.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 162 | 163 | 164 | ..\images\dollar__.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 165 | 166 | 167 | ..\images\User_login_man_profile_account.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 168 | 169 | 170 | ..\images\welcome screen.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 171 | 172 | 173 | ..\images\banner00002.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 174 | 175 | 176 | ..\images\money-from-atm.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 177 | 178 | 179 | ..\images\3.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 180 | 181 | 182 | ..\images\withh.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 183 | 184 | 185 | ..\images\atm_images.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 186 | 187 | 188 | ..\images\monn.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 189 | 190 | 191 | ..\images\btnPrevious.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 192 | 193 | 194 | ..\images\atttm00.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 195 | 196 | 197 | ..\images\Pin code image.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 198 | 199 | 200 | ..\images\withdrawal.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 201 | 202 | 203 | ..\images\close.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 204 | 205 | 206 | ..\images\fund_transfer.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 207 | 208 | 209 | ..\images\bth_naira.jpg;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 210 | 211 | 212 | ..\images\login22.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 213 | 214 | 215 | ..\images\body.gif;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 216 | 217 | 218 | ..\images\loading.gif;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 219 | 220 | 221 | ..\images\dollar__.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 222 | 223 | 224 | ..\images\User_login_man_profile_account.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 225 | 226 | 227 | 228 | ..\images\voiceATM.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 229 | 230 | -------------------------------------------------------------------------------- /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("simulating_atm.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 | 63 | ''' 64 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 65 | ''' 66 | Friend ReadOnly Property _3() As System.Drawing.Bitmap 67 | Get 68 | Dim obj As Object = ResourceManager.GetObject("3", resourceCulture) 69 | Return CType(obj,System.Drawing.Bitmap) 70 | End Get 71 | End Property 72 | 73 | ''' 74 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 75 | ''' 76 | Friend ReadOnly Property atm_images() As System.Drawing.Bitmap 77 | Get 78 | Dim obj As Object = ResourceManager.GetObject("atm_images", resourceCulture) 79 | Return CType(obj,System.Drawing.Bitmap) 80 | End Get 81 | End Property 82 | 83 | ''' 84 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 85 | ''' 86 | Friend ReadOnly Property atm5() As System.Drawing.Bitmap 87 | Get 88 | Dim obj As Object = ResourceManager.GetObject("atm5", resourceCulture) 89 | Return CType(obj,System.Drawing.Bitmap) 90 | End Get 91 | End Property 92 | 93 | ''' 94 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 95 | ''' 96 | Friend ReadOnly Property atttm00() As System.Drawing.Bitmap 97 | Get 98 | Dim obj As Object = ResourceManager.GetObject("atttm00", resourceCulture) 99 | Return CType(obj,System.Drawing.Bitmap) 100 | End Get 101 | End Property 102 | 103 | ''' 104 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 105 | ''' 106 | Friend ReadOnly Property banner() As System.Drawing.Bitmap 107 | Get 108 | Dim obj As Object = ResourceManager.GetObject("banner", resourceCulture) 109 | Return CType(obj,System.Drawing.Bitmap) 110 | End Get 111 | End Property 112 | 113 | ''' 114 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 115 | ''' 116 | Friend ReadOnly Property banner00002() As System.Drawing.Bitmap 117 | Get 118 | Dim obj As Object = ResourceManager.GetObject("banner00002", resourceCulture) 119 | Return CType(obj,System.Drawing.Bitmap) 120 | End Get 121 | End Property 122 | 123 | ''' 124 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 125 | ''' 126 | Friend ReadOnly Property body() As System.Drawing.Bitmap 127 | Get 128 | Dim obj As Object = ResourceManager.GetObject("body", resourceCulture) 129 | Return CType(obj,System.Drawing.Bitmap) 130 | End Get 131 | End Property 132 | 133 | ''' 134 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 135 | ''' 136 | Friend ReadOnly Property bth_naira() As System.Drawing.Bitmap 137 | Get 138 | Dim obj As Object = ResourceManager.GetObject("bth_naira", resourceCulture) 139 | Return CType(obj,System.Drawing.Bitmap) 140 | End Get 141 | End Property 142 | 143 | ''' 144 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 145 | ''' 146 | Friend ReadOnly Property btnPrevious() As System.Drawing.Bitmap 147 | Get 148 | Dim obj As Object = ResourceManager.GetObject("btnPrevious", resourceCulture) 149 | Return CType(obj,System.Drawing.Bitmap) 150 | End Get 151 | End Property 152 | 153 | ''' 154 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 155 | ''' 156 | Friend ReadOnly Property close() As System.Drawing.Bitmap 157 | Get 158 | Dim obj As Object = ResourceManager.GetObject("close", resourceCulture) 159 | Return CType(obj,System.Drawing.Bitmap) 160 | End Get 161 | End Property 162 | 163 | ''' 164 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 165 | ''' 166 | Friend ReadOnly Property close1() As System.Drawing.Bitmap 167 | Get 168 | Dim obj As Object = ResourceManager.GetObject("close1", resourceCulture) 169 | Return CType(obj,System.Drawing.Bitmap) 170 | End Get 171 | End Property 172 | 173 | ''' 174 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 175 | ''' 176 | Friend ReadOnly Property correct() As System.Drawing.Bitmap 177 | Get 178 | Dim obj As Object = ResourceManager.GetObject("correct", resourceCulture) 179 | Return CType(obj,System.Drawing.Bitmap) 180 | End Get 181 | End Property 182 | 183 | ''' 184 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 185 | ''' 186 | Friend ReadOnly Property dollar__() As System.Drawing.Bitmap 187 | Get 188 | Dim obj As Object = ResourceManager.GetObject("dollar__", resourceCulture) 189 | Return CType(obj,System.Drawing.Bitmap) 190 | End Get 191 | End Property 192 | 193 | ''' 194 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 195 | ''' 196 | Friend ReadOnly Property dollar__1() As System.Drawing.Bitmap 197 | Get 198 | Dim obj As Object = ResourceManager.GetObject("dollar__1", resourceCulture) 199 | Return CType(obj,System.Drawing.Bitmap) 200 | End Get 201 | End Property 202 | 203 | ''' 204 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 205 | ''' 206 | Friend ReadOnly Property fund_transfer() As System.Drawing.Bitmap 207 | Get 208 | Dim obj As Object = ResourceManager.GetObject("fund_transfer", resourceCulture) 209 | Return CType(obj,System.Drawing.Bitmap) 210 | End Get 211 | End Property 212 | 213 | ''' 214 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 215 | ''' 216 | Friend ReadOnly Property fund_transfer1() As System.Drawing.Bitmap 217 | Get 218 | Dim obj As Object = ResourceManager.GetObject("fund_transfer1", resourceCulture) 219 | Return CType(obj,System.Drawing.Bitmap) 220 | End Get 221 | End Property 222 | 223 | ''' 224 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 225 | ''' 226 | Friend ReadOnly Property fundd() As System.Drawing.Bitmap 227 | Get 228 | Dim obj As Object = ResourceManager.GetObject("fundd", resourceCulture) 229 | Return CType(obj,System.Drawing.Bitmap) 230 | End Get 231 | End Property 232 | 233 | ''' 234 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 235 | ''' 236 | Friend ReadOnly Property ksusta_banner_trans() As System.Drawing.Bitmap 237 | Get 238 | Dim obj As Object = ResourceManager.GetObject("ksusta_banner_trans", resourceCulture) 239 | Return CType(obj,System.Drawing.Bitmap) 240 | End Get 241 | End Property 242 | 243 | ''' 244 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 245 | ''' 246 | Friend ReadOnly Property loading() As System.Drawing.Bitmap 247 | Get 248 | Dim obj As Object = ResourceManager.GetObject("loading", resourceCulture) 249 | Return CType(obj,System.Drawing.Bitmap) 250 | End Get 251 | End Property 252 | 253 | ''' 254 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 255 | ''' 256 | Friend ReadOnly Property Lock_image() As System.Drawing.Bitmap 257 | Get 258 | Dim obj As Object = ResourceManager.GetObject("Lock_image", resourceCulture) 259 | Return CType(obj,System.Drawing.Bitmap) 260 | End Get 261 | End Property 262 | 263 | ''' 264 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 265 | ''' 266 | Friend ReadOnly Property login22() As System.Drawing.Bitmap 267 | Get 268 | Dim obj As Object = ResourceManager.GetObject("login22", resourceCulture) 269 | Return CType(obj,System.Drawing.Bitmap) 270 | End Get 271 | End Property 272 | 273 | ''' 274 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 275 | ''' 276 | Friend ReadOnly Property mglass() As System.Drawing.Bitmap 277 | Get 278 | Dim obj As Object = ResourceManager.GetObject("mglass", resourceCulture) 279 | Return CType(obj,System.Drawing.Bitmap) 280 | End Get 281 | End Property 282 | 283 | ''' 284 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 285 | ''' 286 | Friend ReadOnly Property money() As System.Drawing.Bitmap 287 | Get 288 | Dim obj As Object = ResourceManager.GetObject("money", resourceCulture) 289 | Return CType(obj,System.Drawing.Bitmap) 290 | End Get 291 | End Property 292 | 293 | ''' 294 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 295 | ''' 296 | Friend ReadOnly Property money_from_atm() As System.Drawing.Bitmap 297 | Get 298 | Dim obj As Object = ResourceManager.GetObject("money-from-atm", resourceCulture) 299 | Return CType(obj,System.Drawing.Bitmap) 300 | End Get 301 | End Property 302 | 303 | ''' 304 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 305 | ''' 306 | Friend ReadOnly Property monn() As System.Drawing.Bitmap 307 | Get 308 | Dim obj As Object = ResourceManager.GetObject("monn", resourceCulture) 309 | Return CType(obj,System.Drawing.Bitmap) 310 | End Get 311 | End Property 312 | 313 | ''' 314 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 315 | ''' 316 | Friend ReadOnly Property P13411607() As System.Drawing.Bitmap 317 | Get 318 | Dim obj As Object = ResourceManager.GetObject("P13411607", resourceCulture) 319 | Return CType(obj,System.Drawing.Bitmap) 320 | End Get 321 | End Property 322 | 323 | ''' 324 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 325 | ''' 326 | Friend ReadOnly Property Pin_code_image() As System.Drawing.Bitmap 327 | Get 328 | Dim obj As Object = ResourceManager.GetObject("Pin code image", resourceCulture) 329 | Return CType(obj,System.Drawing.Bitmap) 330 | End Get 331 | End Property 332 | 333 | ''' 334 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 335 | ''' 336 | Friend ReadOnly Property pinn() As System.Drawing.Bitmap 337 | Get 338 | Dim obj As Object = ResourceManager.GetObject("pinn", resourceCulture) 339 | Return CType(obj,System.Drawing.Bitmap) 340 | End Get 341 | End Property 342 | 343 | ''' 344 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 345 | ''' 346 | Friend ReadOnly Property User_login_man_profile_account() As System.Drawing.Bitmap 347 | Get 348 | Dim obj As Object = ResourceManager.GetObject("User_login_man_profile_account", resourceCulture) 349 | Return CType(obj,System.Drawing.Bitmap) 350 | End Get 351 | End Property 352 | 353 | ''' 354 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 355 | ''' 356 | Friend ReadOnly Property User_login_man_profile_account1() As System.Drawing.Bitmap 357 | Get 358 | Dim obj As Object = ResourceManager.GetObject("User_login_man_profile_account1", resourceCulture) 359 | Return CType(obj,System.Drawing.Bitmap) 360 | End Get 361 | End Property 362 | 363 | ''' 364 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 365 | ''' 366 | Friend ReadOnly Property User_login_man_profile_account2() As System.Drawing.Bitmap 367 | Get 368 | Dim obj As Object = ResourceManager.GetObject("User_login_man_profile_account2", resourceCulture) 369 | Return CType(obj,System.Drawing.Bitmap) 370 | End Get 371 | End Property 372 | 373 | ''' 374 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 375 | ''' 376 | Friend ReadOnly Property voiceATM() As System.Drawing.Bitmap 377 | Get 378 | Dim obj As Object = ResourceManager.GetObject("voiceATM", resourceCulture) 379 | Return CType(obj,System.Drawing.Bitmap) 380 | End Get 381 | End Property 382 | 383 | ''' 384 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 385 | ''' 386 | Friend ReadOnly Property welcome_screen() As System.Drawing.Bitmap 387 | Get 388 | Dim obj As Object = ResourceManager.GetObject("welcome screen", resourceCulture) 389 | Return CType(obj,System.Drawing.Bitmap) 390 | End Get 391 | End Property 392 | 393 | ''' 394 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 395 | ''' 396 | Friend ReadOnly Property withdrawal() As System.Drawing.Bitmap 397 | Get 398 | Dim obj As Object = ResourceManager.GetObject("withdrawal", resourceCulture) 399 | Return CType(obj,System.Drawing.Bitmap) 400 | End Get 401 | End Property 402 | 403 | ''' 404 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 405 | ''' 406 | Friend ReadOnly Property withdrawal1() As System.Drawing.Bitmap 407 | Get 408 | Dim obj As Object = ResourceManager.GetObject("withdrawal1", resourceCulture) 409 | Return CType(obj,System.Drawing.Bitmap) 410 | End Get 411 | End Property 412 | 413 | ''' 414 | ''' Looks up a localized resource of type System.Drawing.Bitmap. 415 | ''' 416 | Friend ReadOnly Property withh() As System.Drawing.Bitmap 417 | Get 418 | Dim obj As Object = ResourceManager.GetObject("withh", resourceCulture) 419 | Return CType(obj,System.Drawing.Bitmap) 420 | End Get 421 | End Property 422 | End Module 423 | End Namespace 424 | --------------------------------------------------------------------------------