Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Forums
Favorite Tags
Member Avatar for ZIPB

Need some help with the code below. Getting and error at ExecuteNonQuery() Private Sub Button1_Click(sender As Object, e As EventArgs) Handles btnRoomSave.Click Dim con As New OleDbConnection Dim cmd As New OleDb.OleDbCommand cmd = New OleDbCommand(Command, con) con.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='C:\PATIENT_O\PATIENT_O\Patient-O.accdb'" cmd.CommandType = System.Data.CommandType.Text cmd.Connection = con con.Open() cmd.CommandText = …

Member Avatar for babujibabuji
0
2K
Member Avatar for ZIPB

I want to compare a date in a database to today's date and it they are equal. Display the contents of the related date in the database in datagridview on a new form. This is my code Private Sub TimerAppoint_Tick(sender As Object, e As EventArgs) Handles TimerAppoint.Tick Dim TheDate As …

Member Avatar for shann_
0
410
Member Avatar for ZIPB

Can anyone tell how to call a class function from a switch statement example [code] number number::operator+(number) { inputs } [/code] [code]switch (option) { case 1: number number::operator+(number); break; [/code] IS THAT THE CORRECT WAY TO CALL THE ABOVE FUNCTION?

Member Avatar for VernonDozier
0
144