Click here to Skip to main content
15,887,683 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: usb sim reader with vb.net Pin
Member 300016216-Mar-09 10:57
Member 300016216-Mar-09 10:57 
QuestionLoaderLock was detected Pin
rmedo15-Mar-09 2:46
rmedo15-Mar-09 2:46 
AnswerRe: LoaderLock was detected Pin
Dave Kreskowiak15-Mar-09 3:38
mveDave Kreskowiak15-Mar-09 3:38 
GeneralRe: LoaderLock was detected Pin
rmedo15-Mar-09 3:58
rmedo15-Mar-09 3:58 
GeneralRe: LoaderLock was detected Pin
Dave Kreskowiak15-Mar-09 8:39
mveDave Kreskowiak15-Mar-09 8:39 
Questiondatabase help Pin
StarTrekCafe15-Mar-09 0:53
StarTrekCafe15-Mar-09 0:53 
AnswerRe: database help Pin
Colin Angus Mackay15-Mar-09 2:57
Colin Angus Mackay15-Mar-09 2:57 
AnswerRe: database help Pin
StarTrekCafe15-Mar-09 16:14
StarTrekCafe15-Mar-09 16:14 
Hi. well here's the error messages and also the code below. cheers Marvin.

Error 1 'TblCustomerTableAdapter' is not a member of 'ADMITSolutionsJobRecordBook.frmData'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Assignment\Project\Development\ADMITSolutionsJobRecordBook\ADMITSolutionsJobRecordBook\frmData.vb 12 9 ADMITSolutionsJobRecordBook
Error 2 'ADMITSolutionsJobRecordBookDataSet1' is not a member of 'ADMITSolutionsJobRecordBook.frmData'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Assignment\Project\Development\ADMITSolutionsJobRecordBook\ADMITSolutionsJobRecordBook\frmData.vb 12 41 ADMITSolutionsJobRecordBook
Error 3 'TblCustomerTableAdapter' is not a member of 'ADMITSolutionsJobRecordBook.frmData'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Assignment\Project\Development\ADMITSolutionsJobRecordBook\ADMITSolutionsJobRecordBook\frmData.vb 15 9 ADMITSolutionsJobRecordBook
Error 4 'ADMITSolutionsJobRecordBookDataSet1' is not a member of 'ADMITSolutionsJobRecordBook.frmData'. C:\DOCS\Tafe\CertificateFourProgramming\CertFour\Programming\VisualBasic\Assignment\Project\Development\ADMITSolutionsJobRecordBook\ADMITSolutionsJobRecordBook\frmData.vb 15 41 ADMITSolutionsJobRecordBook


and here's the code for the form, and when i try to click the about button, nothing happens.

'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 frmControls



Private Sub frmControls_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'ADMITSolutionsJobRecordBookDataSet.tblCustomer' table. You can move, or remove it, as needed.


Me.TblCustomerTableAdapter.Fill(Me.ADMITSolutionsJobRecordBookDataSet.tblCustomer)







End Sub

Private Sub btnAboutButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAboutButton.Click


'Show About Box for this application

frmAbout.ShowDialog()

End Sub

Private Sub btnDataButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnDataButton.Click


'Displays The Data Grid for all users on this database.



End Sub

Private Sub btnExitButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnExitButton.Click


'Exits the application and returns the user to the Windows Desktop

Me.Close()

End Sub
End Class
Questionhow to delete a data in a specifically cell in datarow from a specifically sql datatble ? Pin
johnny196314-Mar-09 22:56
johnny196314-Mar-09 22:56 
AnswerRe: how to delete a data in a specifically cell in datarow from a specifically sql datatble ? Pin
Eddy Vluggen15-Mar-09 0:44
professionalEddy Vluggen15-Mar-09 0:44 
GeneralRe: how to delete a data in a specifically cell in datarow from a specifically sql datatble ? Pin
johnny196315-Mar-09 13:17
johnny196315-Mar-09 13:17 
GeneralRe: how to delete a data in a specifically cell in datarow from a specifically sql datatble ? Pin
Eddy Vluggen15-Mar-09 22:17
professionalEddy Vluggen15-Mar-09 22:17 
Questionphysical address or MAC address Pin
dahras14-Mar-09 21:50
dahras14-Mar-09 21:50 
AnswerRe: physical address or MAC address Pin
Eddy Vluggen15-Mar-09 0:48
professionalEddy Vluggen15-Mar-09 0:48 
GeneralRe: physical address or MAC address Pin
0x3c015-Mar-09 4:36
0x3c015-Mar-09 4:36 
GeneralRe: physical address or MAC address Pin
Eddy Vluggen15-Mar-09 5:43
professionalEddy Vluggen15-Mar-09 5:43 
Question[Message Deleted] Pin
PleaseHelpCP14-Mar-09 20:28
PleaseHelpCP14-Mar-09 20:28 
AnswerRe: VB.net Pin
Expert Coming14-Mar-09 21:22
Expert Coming14-Mar-09 21:22 
GeneralRe: VB.net Pin
PleaseHelpCP14-Mar-09 22:30
PleaseHelpCP14-Mar-09 22:30 
AnswerRe: VB.net Pin
Christian Graus14-Mar-09 21:47
protectorChristian Graus14-Mar-09 21:47 
QuestionCallback function does not return to C++ Pin
Kurt Richardson14-Mar-09 6:33
Kurt Richardson14-Mar-09 6:33 
AnswerRe: Callback function does not return to C++ Pin
Kurt Richardson14-Mar-09 7:27
Kurt Richardson14-Mar-09 7:27 
AnswerRe: Callback function does not return to C++ Pin
Kurt Richardson14-Mar-09 17:18
Kurt Richardson14-Mar-09 17:18 
QuestionQuestion on DateTimePicker Pin
priyamtheone14-Mar-09 4:59
priyamtheone14-Mar-09 4:59 
AnswerRe: Question on DateTimePicker Pin
Christian Graus14-Mar-09 8:23
protectorChristian Graus14-Mar-09 8:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.