- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 1
- Downvoting Members
- 2
15 Posted Topics
Hi! We are a 4 member group for our thesis and we already have submitted 5 topic proposals yet nothing was accepted...and here are the topics: enrollment system, gadgets on track, employment resource system, subdivision technical entry pass Now, I need a help for new ideas that can be developed … | |
Re: [CODE] Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click Refresh.Enabled = True AddNew.Enabled = True Save.Enabled = False Edit.Enabled = False Delete.Enabled = False bldgno.Enabled = False bldgname.Enabled = False bldgcity.Enabled = False 'null value validation If (bldgno.Text = Nothing) Or (bldgname.Text = Nothing) Or (bldgcity.Text … | |
Hi there! What I am used to declaring database connection is that in every form I type the codes for it which is a tiring way. Now, I want to use module instead but I really don't know how. And also, how will I call the connection to every forms … | |
Re: [QUOTE=DotNetUser;205726]Form property ControlBox is the one. When set to false, it hides the MIN, MAX, and Close buttons.[/QUOTE] Thanks a lot DonNetUser!:) I was having that problem earlier and I found this thread. Thanks again. | |
Re: what type of program are you doing? web or window-based? | |
Hi! I just want to ask if it is possible to take a focus by a camera then generate it into text because I am planning to propose a thesis topic which is Subdivision Entry Pass wherein the security camera in the gate will focus the camera on the plate … | |
Hi! We are a 4 member group for our thesis and we already have submitted 5 topic proposals yet nothing was accepted...and here are the topics: enrollment system, gadgets on track, employment resource system, subdivision technical entry pass Now, I need a help for new ideas that can be developed … | |
Re: if that code has no error then try to make two forms show..i mean declare another variable for the 2nd form and make it show | |
Re: hmmm..if i'm not mistaken about your problem..maybe you did not stop the [COLOR="Red"]Run[/COLOR]..stop the runtime first then that's the time you can make changes on ur forms. | |
Re: cmd = New SqlCommand("update [tbl_Account_charts] set AccountTypeid='" & cmbAccountType.Text & "',AccountNumber='" & TxtAccountNumber.Text & "',AccountName='" & txtaccountname.Text & "',Status='" & chbmark & "',UpdateDate='" & sys_date & "' where AccountTypeid='" & AccountID[COLOR="Red"] & "'[/COLOR], con) cmd.ExecuteNonQuery() | |
Re: i have already done that before..what i did is made a [COLOR="Red"]Refresh[/COLOR] button..wherein the only code inside is the string connection..meaning you'll be reconnecting to the database and that way you'll get the most updated information from the database | |
Re: try commenting the [COLOR="Red"]Try-Catch-End Try[/COLOR]..so that you'll see where the error is..then reply immediately..post the error | |
Re: hmmmm...actually I want to help but I don't get what you want to do..could you please explain it more clear? or you could post your codes/sample form | |
Hi, I will be developing a program using visual studio 2008 with ms access 2007 as my database. What I only use is this type of connection string: [COLOR="Red"]"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\mydatabase.mdb;Jet OLEDB:System Database=system.mdw;" [/COLOR]but i was asked if it is possible to put the database in sharepoint and I haven't even … | |
Private Sub Save_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Save.Click conn.Open() Dim cmd As New OleDbCommand("Update (SELECT Employee.empno, Employee.emplname, Employee.empfname, Employee.empmidname, Employee.contactno, Admin.description FROM Admin INNER JOIN Employee ON Admin.adminNo = Employee.adminNo) Set emplname=?, empfname=?, empmidname=?, contactno=?, description=? where empno=?", conn) cmd.Parameters.Add("empno", OleDbType.Integer) cmd.Parameters.AddWithValue("emplname", OleDbType.Char) cmd.Parameters.AddWithValue("empfname", OleDbType.Char) cmd.Parameters.AddWithValue("empmidname", … |
The End.