Re: vb project help please

  • From: "Tyler Littlefield" <tyler@xxxxxxxxxxxxx>
  • To: <programmingblind@xxxxxxxxxxxxx>
  • Date: Wed, 10 Jun 2009 22:02:49 -0600

Let me google that for you:
http://lmgtfy.com/?q=%22Unable+to+find+manifest+signing+certificate+in%22

Thanks,
Tyler Littlefield
Web: tysdomain.com
email: tyler@xxxxxxxxxxxxx
My programs don't have bugs, they're called randomly added features.

----- Original Message ----- From: "Marvin Hunkin" <startrekcafe@xxxxxxxxx>
To: <programmingblind@xxxxxxxxxxxxx>
Sent: Wednesday, June 10, 2009 9:41 PM
Subject: vb project help please


hi.
doing a database application project with a login screen.
getting these errors.
looked up help about constants and certificates.
can any one help.
treid deleting the constant declarations, retyping them and the if then else statements, as well.
but did not fix this.
can any one help me and how to fix these errors?
will paste the code and the error messages below.
cheers Marvin.

'Program: ADMIT Solutions Job Record Book

'Programmer: Marvin Hunkin

'Date Created: Thursday January 22 2009

'Version: 1.3

'Purpose: This application will allow the user to view, save, add, delete and update records on this database. The user will also be able to find out information about this application, will be able to view a list of all customers, and then be able to close the database. The user will then return to the main screen. Then the user can click on the exit buttons to close this application.


Public Class frmLogin

' TODO: Insert code to perform custom authentication using the provided username and password

' (See http://go.microsoft.com/fwlink/?LinkId=35339).

' The custom principal can then be attached to the current thread's principal as follows:

' My.User.CurrentPrincipal = CustomPrincipal

' where CustomPrincipal is the IPrincipal implementation used to perform authentication.

' Subsequently, My.User will return identity information encapsulated in the CustomPrincipal object

' such as the username, display name, etc.

Private Sub btnOKButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOKButton.Click

'Declare Constants for this user login form.


Const User As String = "User"

Const Password As String = "Password"

Const Admin As String = "Admin"

Const System As String = "System"


'Specifies whether a user is a user, or a administrator. If the user is a user, they can only view and save the database. If the user is a administrator, then the user can add, delete,and update records on this database.

'If the user does not enter any text in the text boxes, a error message will display on screen.

'Declare Variables



If tbUserNameTextBox.Text = "User" And tbPasswordTextBox.Text = "Password" Then

frmAdminDatabase.disableMenus()

frmAdminDatabase.Show()

Me.Hide()

Else

If tbUserNameTextBox.Text = "Admin" And tbPasswordTextBox.Text = "System" Then

frmAdminDatabase.Show()

Me.Hide()

Else

MessageBox.Show("The system could not log you in. Please Try Again and Enter Your User Name And Password!", "", MessageBoxButtons.YesNo, MessageBoxIcon.Error)

tbUserNameTextBox.Focus()

End If

End If


End Sub

Private Sub btnCancelButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancelButton.Click


Me.Close()

End Sub

End Class





Error 1 Unable to find manifest signing certificate in the certificate store. ADMITSolutionsJobRecordBook Warning 2 Unused local constant: 'User'. C:\Docs\Tafe\CertificateFourProgramming\CertFour\Programming\SoftwareDevelopment\Languages\VisualBasic\Assignment\Project\Development\ADMITSolutionsJobRecordBook\frmLogin.vb 23 15 ADMITSolutionsJobRecordBook Warning 3 Unused local constant: 'Password'. C:\Docs\Tafe\CertificateFourProgramming\CertFour\Programming\SoftwareDevelopment\Languages\VisualBasic\Assignment\Project\Development\ADMITSolutionsJobRecordBook\frmLogin.vb 24 15 ADMITSolutionsJobRecordBook Warning 4 Unused local constant: 'Admin'. C:\Docs\Tafe\CertificateFourProgramming\CertFour\Programming\SoftwareDevelopment\Languages\VisualBasic\Assignment\Project\Development\ADMITSolutionsJobRecordBook\frmLogin.vb 25 15 ADMITSolutionsJobRecordBook Warning 5 Unused local constant: 'System'. C:\Docs\Tafe\CertificateFourProgramming\CertFour\Programming\SoftwareDevelopment\Languages\VisualBasic\Assignment\Project\Development\ADMITSolutionsJobRecordBook\frmLogin.vb 26 15 ADMITSolutionsJobRecordBook




E-Mail: startrekcafe@xxxxxxxxx
Msn: startrekcafe@xxxxxxx
Skype: startrekcafe
Visit my Jaws Australia Group at http://groups.yahoo.com/groups/JawsOz/
__________
View the list's information and change your settings at //www.freelists.org/list/programmingblind

Other related posts: