The files to submit You should submit the .sln and project folder. (Do not change the project structure, so the project can be re-built). For example, and compress them into a .zip file or .rar file....

1 answer below »

The files to submit


You should submit the .sln and project folder. (Do not change the project structure, so the project can be re-built). For example,



3347_project.jpg


and compress them into a .zip file or .rar file. ( It is fine .suo may not be there, but the folder and .sln are required.)


Here is one video on compressing the project:


https://www.youtube.com/watch?v=Kn9yd9U-diA



You can just watch the first part of the video on how to compress the project. Once you have .zip , you can submit through the link of the homework (click on the homework link, it will lead you to the submission page).


Be sure toinclude the executable file (.exe in bin subfolder inside the projectfolder ) if you program can run.


Thanks.




Chapter 3 – Case 1 The Cyberian Internet Café Figure 1 Instructions In this case, you will create a Visual Basic solution that performs customer billing for the Cyberian Internet Café. The Cyberian Internet Café provides Internet access to its customers on an hourly basis. One hour of Internet access costs $12.00. You will create a solution with a splash screen, which is an application that calculates the total cost for a customer, using the image file included in the downloaded files. Step 1: Create the Project: Create a Visual Basic Project using the project name “InternetCafe”. Step 2 – Design the Form: Design the form shown in Figure 1. You will need three button controls, three text boxes, one picture box control, and five label controls. Name your controls as shown in Table 1, and set the properties as indicated. Type of Control Property Property value Form Name MainForm Text Customer Billing StartPosition CenterScreen Label Name Label1 Text Cyberian Internet Café Font.Size 20 Button Name calculateButton Text Calculate Button Name clearButton Text Clear Button Name exitButton Text Exit Label Name Label2 Text Last Name Label Name Label3 Text First Name Label Name Label4 Text Number of hours Label Name Label5 Text Amount due Label Name amountDueLabel BorderStyle FixedSingle BackColor White (web color) PictureBox Name PictureBox1 Size.Width 174 Size.Height 174 BorderStyle FixedSingle Image (use the downloaded image file TextBox Name lastNameTextBox TextBox Name firstNameTextBox TextBox Name hoursTextBox Table 1 – MainForm Controls and Their Property Values Step 3 – Add the image to the project’s Debug folder: Copy the image files (J0195384.jpg) that you downloaded as part of this Case’s files into the following folder of your project: C:\InternetCafe\ InternetCafe\bin\Debug (If your drive letter is different than C:, use your drive letter.) Step 4 – Add code to perform the calculation and display the amount due: 1. In the form’s Declarations section, declare a constant named HOURLY_RATE and set its value to be 12.00. 2. In the clearButton’s Click event, add code to clear all of the text box controls and the amountDueLabel control. 3. In the calculateButton’s Click event, declare two Single variables named hours and amount, and a Boolean variable name isConverted. Use the TryParse method to assign the value in the hoursTextBox control to the hours variable, storing the result from the TryParse method in the isConverted variable. Do the calculation using the hours and the hourly rate, and store the result in the amount variable. Display the amount value, formatted as currency, in the amountDueLabel control. 4. In the exitButton’s Click event, add code to end the program. Step 5 – Create a splash screen Create a splash screen using the Project menu - Add Windows Form. Select the Splash Screen form template. Also change the splash window title to "Internet Cafe". reference : textbook page 114. Set project properties: Set the project’s startup form to be MainForm. Set the project’s splash screen to be SplashScreen. Step 6: Save and run Save all files, then start the application. Try entering data and using the Calculate button. Is the result formatted as currency?
Answered Same DayJan 12, 2021

Answer To: The files to submit You should submit the .sln and project folder. (Do not change the project...

Robert answered on Jan 13 2021
125 Votes
InternetCafe/InternetCafe/.vs/InternetCafe/v14/.suo
InternetCafe/InternetCafe/App.config




InternetCafe/InternetCafe/bin/Debug/InternetCafe.exe
InternetCafe/InternetCafe/bin/Debug/InternetCafe.exe.config




InternetCafe/InternetCafe/bin/Debug/InternetCafe.pdb
InternetCafe/InternetCafe/bin/Debug/InternetCafe.vshost.exe
InternetCafe/InternetCafe/bin/Debug/InternetCafe.vshost.exe.config




InternetCafe/InternetCafe/bin/Debug/InternetCafe.xml



InternetCafe



A strongly-typed resource class, for looking up localized strings, etc.


Returns the cached ResourceManager instance used by this class.


Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.


Looks up a localized resource of type System.Drawing.Bitmap.
InternetCafe/InternetCafe/Form1.Designer.vb
_
Partial Class MainForm
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
_
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
_
Private Sub InitializeComponent()
Me.Label1 = New System.Windows.Forms.Label()
Me.Label2 = New System.Windows.Forms.Label()
Me.Label3 = New System.Windows.Forms.Label()
Me.Label4 = New System.Windows.Forms.Label()
Me.PictureBox1 = New System.Windows.Forms.PictureBox()
Me.lastNameTextBox = New System.Windows.Forms.TextBox()
Me.firstNameTextBox = New System.Windows.Forms.TextBox()
Me.hoursTextBox = New System.Windows.Forms.TextBox()
Me.amountDueLabel = New System.Windows.Forms.Label()
Me.calculateButton = New System.Windows.Forms.Button()
Me.clearButton = New System.Windows.Forms.Button()
Me.exitButton = New System.Windows.Forms.Button()
CType(Me.PictureBox1,System.ComponentModel.ISupportInitialize).BeginInit
Me.SuspendLayout
'
'Label1
'
Me.Label1.AutoSize = true
Me.Label1.Location = New System.Drawing.Point(235, 12)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(58, 13)
Me.Label1.TabIndex = 0
Me.Label1.Text = "Last Name"
'
'Label2
'
Me.Label2.AutoSize = true
Me.Label2.Location = New System.Drawing.Point(236, 65)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(57, 13)
Me.Label2.TabIndex = 1
Me.Label2.Text = "First Name"
'
'Label3
'
Me.Label3.AutoSize = true
Me.Label3.Lo
cation = New System.Drawing.Point(208, 118)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(85, 13)
Me.Label3.TabIndex = 2
Me.Label3.Text = "Number of hours"
'
'Label4
'
Me.Label4.AutoSize = true
Me.Label4.Location = New System.Drawing.Point(229, 171)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(64, 13)
Me.Label4.TabIndex = 3
Me.Label4.Text = "Amount due"
'
'PictureBox1
'
Me.PictureBox1.Image = Global.InternetCafe.My.Resources.Resources.j0195384
Me.PictureBox1.Location = New System.Drawing.Point(12, 12)
Me.PictureBox1.Name = "PictureBox1"
Me.PictureBox1.Size = New System.Drawing.Size(174, 174)
Me.PictureBox1.TabIndex = 4
Me.PictureBox1.TabStop = false
'
'lastNameTextBox
'
Me.lastNameTextBox.Location = New System.Drawing.Point(315, 12)
Me.lastNameTextBox.Name = "lastNameTextBox"
Me.lastNameTextBox.Size = New System.Drawing.Size(134, 20)
Me.lastNameTextBox.TabIndex = 5
'
'firstNameTextBox
'
Me.firstNameTextBox.Location = New System.Drawing.Point(315, 58)
Me.firstNameTextBox.Name = "firstNameTextBox"
Me.firstNameTextBox.Size = New System.Drawing.Size(134, 20)
Me.firstNameTextBox.TabIndex = 6
'
'hoursTextBox
'
Me.hoursTextBox.Location = New System.Drawing.Point(315, 111)
Me.hoursTextBox.Name = "hoursTextBox"
Me.hoursTextBox.Size = New System.Drawing.Size(56, 20)
Me.hoursTextBox.TabIndex = 7
'
'amountDueLabel
'
Me.amountDueLabel.AutoSize = true
Me.amountDueLabel.BackColor = System.Drawing.Color.White
Me.amountDueLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.amountDueLabel.Location = New System.Drawing.Point(315, 171)
Me.amountDueLabel.Name = "amountDueLabel"
Me.amountDueLabel.Size = New System.Drawing.Size(57, 15)
Me.amountDueLabel.TabIndex = 8
Me.amountDueLabel.Text = " "
'
'calculateButton
'
Me.calculateButton.Location = New System.Drawing.Point(495, 12)
Me.calculateButton.Name = "calculateButton"
Me.calculateButton.Size = New System.Drawing.Size(75, 23)
Me.calculateButton.TabIndex = 9
Me.calculateButton.Text = "Calculate"
Me.calculateButton.UseVisualStyleBackColor = true
'
'clearButton
'
Me.clearButton.Location = New System.Drawing.Point(495, 60)
Me.clearButton.Name = "clearButton"
Me.clearButton.Size = New System.Drawing.Size(75, 23)
Me.clearButton.TabIndex = 10
Me.clearButton.Text = "Clear"
Me.clearButton.UseVisualStyleBackColor = true
'
'exitButton
'
Me.exitButton.Location = New System.Drawing.Point(495, 108)
Me.exitButton.Name = "exitButton"
Me.exitButton.Size = New System.Drawing.Size(75, 23)
Me.exitButton.TabIndex = 11
Me.exitButton.Text = "Exit"
Me.exitButton.UseVisualStyleBackColor = true
'
'MainForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6!, 13!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(620, 214)
Me.Controls.Add(Me.exitButton)
Me.Controls.Add(Me.clearButton)
Me.Controls.Add(Me.calculateButton)
Me.Controls.Add(Me.amountDueLabel)
Me.Controls.Add(Me.hoursTextBox)
Me.Controls.Add(Me.firstNameTextBox)
Me.Controls.Add(Me.lastNameTextBox)
Me.Controls.Add(Me.PictureBox1)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.Label1)
Me.Name = "MainForm"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Customer Billing"
CType(Me.PictureBox1,System.ComponentModel.ISupportInitialize).EndInit
Me.ResumeLayout(false)
Me.PerformLayout
End Sub
Friend WithEvents Label1 As Label
Friend WithEvents Label2 As Label
Friend WithEvents Label3 As Label
Friend WithEvents Label4 As Label
Friend WithEvents PictureBox1 As PictureBox
Friend WithEvents lastNameTextBox As TextBox
Friend WithEvents firstNameTextBox As TextBox
Friend WithEvents hoursTextBox As TextBox
Friend WithEvents amountDueLabel As Label
Friend WithEvents calculateButton As Button
Friend WithEvents clearButton As Button
Friend WithEvents exitButton As Button
End Class
InternetCafe/InternetCafe/Form1.resx

















































text/microsoft-resx


2.0


System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089


System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089

InternetCafe/InternetCafe/Form1.vb
Public Class MainForm
Const HOURLY_RATE As Single = 12.0
Private Sub calculateButton_Click(sender As Object, e As EventArgs) Handles calculateButton.Click
Dim hours As Single
Dim amount As Single
Dim isConverted As Boolean
isConverted = Single.TryParse(hoursTextBox.Text, hours)
If Not isConverted Then
MessageBox.Show("Please enter numeric value", "Error")
hoursTextBox.Focus()
Return
End If
amount = hours * HOURLY_RATE
amountDueLabel.Text = amount.ToString("C")
End Sub
Private Sub clearButton_Click(sender As Object, e As EventArgs) Handles clearButton.Click
lastNameTextBox.Text = ""
firstNameTextBox.Text = ""
hoursTextBox.Text = ""
amountDueLabel.Text = ""
End Sub
Private Sub exitButton_Click(sender As Object, e As EventArgs) Handles exitButton.Click
Application.Exit()
End Sub
End Class
InternetCafe/InternetCafe/InternetCafe.sln
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "InternetCafe", "InternetCafe.vbproj", "{CEF37205-B044-44B2-B18A-F85E29B652B8}"
EndProject
Global
    GlobalSection(SolutionConfigurationPlatforms) = preSolution
        Debug|Any CPU = Debug|Any CPU
        Release|Any CPU = Release|Any CPU
    EndGlobalSection
    GlobalSection(ProjectConfigurationPlatforms) = postSolution
        {CEF37205-B044-44B2-B18A-F85E29B652B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
        {CEF37205-B044-44B2-B18A-F85E29B652B8}.Debug|Any CPU.Build.0 = Debug|Any CPU
        {CEF37205-B044-44B2-B18A-F85E29B652B8}.Release|Any CPU.ActiveCfg = Release|Any CPU
        {CEF37205-B044-44B2-B18A-F85E29B652B8}.Release|Any CPU.Build.0 = Release|Any CPU
    EndGlobalSection
    GlobalSection(SolutionProperties) = preSolution
        HideSolutionNode = FALSE
    EndGlobalSection
EndGlobal
InternetCafe/InternetCafe/InternetCafe.vbproj



Debug
AnyCPU
{CEF37205-B044-44B2-B18A-F85E29B652B8}
WinExe
InternetCafe.My.MyApplication
InternetCafe
InternetCafe
512
WindowsForms
v4.5.2
true


AnyCPU
true
full
true
true
bin\Debug\
InternetCafe.xml
42016,41999,42017,42018,42019,42032,42036,42020,42021,42022


AnyCPU
pdbonly
false
true
true
bin\Release\
InternetCafe.xml
42016,41999,42017,42018,42019,42032,42036,42020,42021,42022


On


Binary


Off


On




























Form


Form1.vb
Form



True
Application.myapp


True
True
Resources.resx


True
Settings.settings
True


SplashScreen1.vb


Form




Form1.vb


VbMyResourcesResXFileCodeGenerator
Resources.Designer.vb
My.Resources
Designer


SplashScreen1.vb




MyApplicationCodeGenerator
Application.Designer.vb


SettingsSingleFileGenerator
My
Settings.Designer.vb








InternetCafe/InternetCafe/My Project/Application.Designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
'

'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Namespace My

'NOTE: This file is auto-generated; do not modify it directly. To make changes,
' or if you encounter build errors in this file, go to the Project Designer
' (go to Project Properties or double-click the My Project node in
' Solution Explorer), and make changes on the Application tab.
'
Partial Friend Class MyApplication

_
Public Sub New()
MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows)
Me.IsSingleInstance = false
Me.EnableVisualStyles = true
Me.SaveMySettingsOnExit = true
Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses
End Sub

_
Protected Overrides Sub OnCreateMainForm()
Me.MainForm = Global.InternetCafe.MainForm
End Sub

_
Protected Overrides Sub OnCreateSplashScreen()
Me.SplashScreen = Global.InternetCafe.SplashScreen1
End Sub
End Class
End Namespace
InternetCafe/InternetCafe/My Project/Application.myapp

true
MainForm
false
0
true
0
SplashScreen1
true
InternetCafe/InternetCafe/My Project/AssemblyInfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these attribute values to modify the information
' associated with an assembly.
' Review the values of the assembly attributes







'The following GUID is for the ID of the typelib if this project is exposed to COM

' Version information for an assembly consists of the following four values:
'
' Major Version
' Minor Version
' Build Number
' Revision
'
' You can specify all the values or you can default the Build and Revision Numbers
' by using the '*' as shown below:
'


InternetCafe/InternetCafe/My Project/Resources.Designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
'

'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Imports System
Namespace My.Resources

'This class was auto-generated by the StronglyTypedResourceBuilder
'class via a tool like ResGen or Visual Studio.
'To add or remove a member, edit your .ResX file then rerun ResGen
'with the /str option, or rebuild your VS project.
'''
''' A strongly-typed resource class, for looking up localized strings, etc.
'''

Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
Friend Module Resources

Private resourceMan As Global.System.Resources.ResourceManager

Private resourceCulture As Global.System.Globalization.CultureInfo

'''
''' Returns the cached ResourceManager instance used by this class.
'''

_
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
Get
If Object.ReferenceEquals(resourceMan, Nothing) Then
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("InternetCafe.Resources", GetType(Resources).Assembly)
resourceMan = temp
End If
Return resourceMan
End Get
End Property

'''
''' Overrides the current thread's CurrentUICulture property for all
''' resource lookups using this strongly typed resource class.
'''

_
Friend Property Culture() As Global.System.Globalization.CultureInfo
Get
Return resourceCulture
End Get
Set
resourceCulture = value
End Set
End Property

'''
''' Looks up a localized resource of type System.Drawing.Bitmap.
'''

Friend ReadOnly Property j0195384() As System.Drawing.Bitmap
Get
Dim obj As Object = ResourceManager.GetObject("j0195384", resourceCulture)
Return CType(obj,System.Drawing.Bitmap)
End Get
End Property
End Module
End Namespace
InternetCafe/InternetCafe/My Project/Resources.resx

















































text/microsoft-resx


2.0


System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089


System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089



..\Resources\j0195384.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a

InternetCafe/InternetCafe/My Project/Settings.Designer.vb
'------------------------------------------------------------------------------
'
' This code was generated by a tool.
' Runtime Version:4.0.30319.42000
'
' Changes to this file may cause incorrect behavior and will be lost if
' the code is regenerated.
'

'------------------------------------------------------------------------------
Option Strict On
Option Explicit On
Namespace My
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0"), _
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
Partial Friend NotInheritable Class MySettings
Inherits Global.System.Configuration.ApplicationSettingsBase
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings)
#Region "My.Settings Auto-Save Functionality"
#If _MyType = "WindowsForms" Then
Private Shared addedHandler As Boolean
Private Shared addedHandlerLockObject As New Object
_
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
If My.Application.SaveMySettingsOnExit Then
My.Settings.Save()
End If
End Sub
#End If
#End Region
Public Shared ReadOnly Property [Default]() As MySettings
Get
#If _MyType = "WindowsForms" Then
If Not addedHandler Then
SyncLock addedHandlerLockObject
If Not addedHandler Then
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
addedHandler = True
End If
End SyncLock
End If
#End If
Return defaultInstance
End Get
End Property
End Class
End Namespace
Namespace My
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
Friend Module MySettingsProperty
_
Friend ReadOnly Property Settings() As Global.InternetCafe.My.MySettings
Get
Return Global.InternetCafe.My.MySettings.Default
End Get
End Property
End Module
End Namespace
InternetCafe/InternetCafe/My Project/Settings.settings





InternetCafe/InternetCafe/obj/Debug/DesignTimeResolveAssemblyReferences.cache
InternetCafe/InternetCafe/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
InternetCafe/InternetCafe/obj/Debug/InternetCafe.exe
InternetCafe/InternetCafe/obj/Debug/InternetCafe.MainForm.resources
InternetCafe/InternetCafe/obj/Debug/InternetCafe.pdb
InternetCafe/InternetCafe/obj/Debug/InternetCafe.Resources.resources
InternetCafe/InternetCafe/obj/Debug/InternetCafe.SplashScreen1.resources
InternetCafe/InternetCafe/obj/Debug/InternetCafe.vbproj.FileListAbsolute.txt
D:\Assignment\49482\InternetCafe\InternetCafe\bin\Debug\InternetCafe.exe.config
D:\Assignment\49482\InternetCafe\InternetCafe\bin\Debug\InternetCafe.exe
D:\Assignment\49482\InternetCafe\InternetCafe\bin\Debug\InternetCafe.pdb
D:\Assignment\49482\InternetCafe\InternetCafe\bin\Debug\InternetCafe.xml
D:\Assignment\49482\InternetCafe\InternetCafe\obj\Debug\InternetCafe.vbprojResolveAssemblyReference.cache
D:\Assignment\49482\InternetCafe\InternetCafe\obj\Debug\InternetCafe.MainForm.resources
D:\Assignment\49482\InternetCafe\InternetCafe\obj\Debug\InternetCafe.Resources.resources
D:\Assignment\49482\InternetCafe\InternetCafe\obj\Debug\InternetCafe.vbproj.GenerateResource.Cache
D:\Assignment\49482\InternetCafe\InternetCafe\obj\Debug\InternetCafe.exe
D:\Assignment\49482\InternetCafe\InternetCafe\obj\Debug\InternetCafe.xml
D:\Assignment\49482\InternetCafe\InternetCafe\obj\Debug\InternetCafe.pdb
D:\Assignment\49482\InternetCafe\InternetCafe\obj\Debug\InternetCafe.SplashScreen1.resources
InternetCafe/InternetCafe/obj/Debug/InternetCafe.vbproj.GenerateResource.Cache
InternetCafe/InternetCafe/obj/Debug/InternetCafe.vbprojResolveAssemblyReference.cache
InternetCafe/InternetCafe/obj/Debug/InternetCafe.xml



InternetCafe



A strongly-typed resource class, for looking up localized strings, etc.


Returns the cached ResourceManager instance used by this class.


Overrides the current thread's CurrentUICulture property for all
resource lookups using this strongly typed resource class.


Looks up a localized resource of type System.Drawing.Bitmap.
InternetCafe/InternetCafe/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll
InternetCafe/InternetCafe/Resources/j0195384.jpg
InternetCafe/InternetCafe/SplashScreen1.Designer.vb
_
Partial Class SplashScreen1
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
_
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
Try
If disposing AndAlso components IsNot Nothing Then
components.Dispose()
End If
Finally
MyBase.Dispose(disposing)
End Try
End Sub
Friend WithEvents ApplicationTitle As System.Windows.Forms.Label
Friend WithEvents Version As System.Windows.Forms.Label
Friend WithEvents Copyright As System.Windows.Forms.Label
Friend WithEvents MainLayoutPanel As System.Windows.Forms.TableLayoutPanel
Friend WithEvents DetailsLayoutPanel As System.Windows.Forms.TableLayoutPanel
'Required by the Windows Form Designer
Private components As System.ComponentModel.IContainer
'NOTE: The following procedure is required by the Windows Form Designer
'It can be modified using the Windows Form Designer.
'Do not modify it using the code editor.
_
Private Sub InitializeComponent()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(SplashScreen1))
Me.MainLayoutPanel = New System.Windows.Forms.TableLayoutPanel()
Me.DetailsLayoutPanel = New System.Windows.Forms.TableLayoutPanel()
Me.Version = New System.Windows.Forms.Label()
Me.Copyright = New System.Windows.Forms.Label()
Me.ApplicationTitle = New System.Windows.Forms.Label()
Me.MainLayoutPanel.SuspendLayout
Me.DetailsLayoutPanel.SuspendLayout
Me.SuspendLayout
'
'MainLayoutPanel
'
Me.MainLayoutPanel.BackgroundImage = CType(resources.GetObject("MainLayoutPanel.BackgroundImage"),System.Drawing.Image)
Me.MainLayoutPanel.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
Me.MainLayoutPanel.ColumnCount = 2
Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 243!))
Me.MainLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100!))
Me.MainLayoutPanel.Controls.Add(Me.DetailsLayoutPanel, 1, 1)
Me.MainLayoutPanel.Controls.Add(Me.ApplicationTitle, 1, 0)
Me.MainLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill
Me.MainLayoutPanel.Location = New System.Drawing.Point(0, 0)
Me.MainLayoutPanel.Name = "MainLayoutPanel"
Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 218!))
Me.MainLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 38!))
Me.MainLayoutPanel.Size = New System.Drawing.Size(496, 303)
Me.MainLayoutPanel.TabIndex = 0
'
'DetailsLayoutPanel
'
Me.DetailsLayoutPanel.Anchor = System.Windows.Forms.AnchorStyles.None
Me.DetailsLayoutPanel.BackColor = System.Drawing.Color.Transparent
Me.DetailsLayoutPanel.ColumnCount = 1
Me.DetailsLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 247!))
Me.DetailsLayoutPanel.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 142!))
Me.DetailsLayoutPanel.Controls.Add(Me.Version, 0, 0)
Me.DetailsLayoutPanel.Controls.Add(Me.Copyright, 0, 1)
Me.DetailsLayoutPanel.Location = New System.Drawing.Point(246, 221)
Me.DetailsLayoutPanel.Name = "DetailsLayoutPanel"
Me.DetailsLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33!))
Me.DetailsLayoutPanel.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 33!))
Me.DetailsLayoutPanel.Size = New System.Drawing.Size(247, 79)
Me.DetailsLayoutPanel.TabIndex = 1
'
'Version
'
Me.Version.Anchor = System.Windows.Forms.AnchorStyles.None
Me.Version.BackColor = System.Drawing.Color.Transparent
Me.Version.Font = New System.Drawing.Font("Microsoft Sans Serif", 9!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0,Byte))
Me.Version.Location = New System.Drawing.Point(3, 9)
Me.Version.Name = "Version"
Me.Version.Size = New System.Drawing.Size(241, 20)
Me.Version.TabIndex = 1
Me.Version.Text = "Version {0}.{1:00}"
'
'Copyright
'
Me.Copyright.Anchor = System.Windows.Forms.AnchorStyles.None
Me.Copyright.BackColor = System.Drawing.Color.Transparent
Me.Copyright.Font = New System.Drawing.Font("Microsoft Sans Serif", 9!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0,Byte))
Me.Copyright.Location = New System.Drawing.Point(3, 39)
Me.Copyright.Name = "Copyright"
Me.Copyright.Size = New System.Drawing.Size(241, 40)
Me.Copyright.TabIndex = 2
Me.Copyright.Text = "Copyright"
'
'ApplicationTitle
'
Me.ApplicationTitle.Anchor = System.Windows.Forms.AnchorStyles.None
Me.ApplicationTitle.BackColor = System.Drawing.Color.Transparent
Me.ApplicationTitle.Font = New System.Drawing.Font("Microsoft Sans Serif", 18!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0,Byte))
Me.ApplicationTitle.Location = New System.Drawing.Point(246, 3)
Me.ApplicationTitle.Name = "ApplicationTitle"
Me.ApplicationTitle.Size = New System.Drawing.Size(247, 212)
Me.ApplicationTitle.TabIndex = 0
Me.ApplicationTitle.Text = "Internet Cafe"
Me.ApplicationTitle.TextAlign = System.Drawing.ContentAlignment.BottomLeft
'
'SplashScreen1
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6!, 13!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(496, 303)
Me.ControlBox = false
Me.Controls.Add(Me.MainLayoutPanel)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.MaximizeBox = false
Me.MinimizeBox = false
Me.Name = "SplashScreen1"
Me.ShowInTaskbar = false
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.MainLayoutPanel.ResumeLayout(false)
Me.DetailsLayoutPanel.ResumeLayout(false)
Me.ResumeLayout(false)
End Sub
End Class
InternetCafe/InternetCafe/SplashScreen1.resx

















































text/microsoft-resx


2.0


System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089


...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here