Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

101 Visual Basic and C# Code Samples for Visual Studio .Net

Status
Not open for further replies.
mga kuya san po pde mag download ng installer ng visual basic 6.
:help:
 
otor yung link ng vb sa plunder kailangan pang magsurvey bago madl. pa mediafire naman po,,, salamat!
 
sir/mam ano po pinagkaiba ng mga codes vb6 & vb.net?
nakakaintindi naman ako sa vb6,but I never to used vb.net
gusto ko sana pag aralan ang .net,

mga sir/mam pwede po pa-request ng data entry system
gawin ko lang reference?
please??
 
Sir pano tong error na to? nagtry na akong magrebuild at clean build.. wala paren..

Downloaded ko yung simple program na to.. para mapagaralan.. Pero laging ganito yung error pag binibuksan ko yung *.cs file..
 

Attachments

  • error.jpg
    error.jpg
    45.8 KB · Views: 6
TS pwede po ba pa update ung DL link di po sya ma download. thanks po ng marami. :)
 
Sir pano ko po magagawa to gamit ang Data.OLEDB at MS Access ang back end?

Code:
                    myCommand = New SqlCommand("InsertNewUserInfo", ProjectConnection)
                    With myCommand
                        .CommandType = CommandType.StoredProcedure
                        .Parameters.AddWithValue("vUserId", Trim(txtUserID.Text))
                        .Parameters.AddWithValue("vScId", Trim(txtSCID.Text))
                        .Parameters.AddWithValue("vLastName", Trim(txtLname.Text))
                        .Parameters.AddWithValue("vFirstName", Trim(txtFName.Text))
                        .Parameters.AddWithValue("vMI", Trim(txtMI.Text))
                        .Parameters.AddWithValue("vUserLevel", Trim(txtUserLevel.Text))
                        .Parameters.AddWithValue("vPassword", Trim(txtPassword.Text))
                        .Parameters.AddWithValue("vSupervisorLevel", IIf(cboSupervisorLevel.CheckState = CheckState.Checked, 1, 0))
                        .ExecuteNonQuery()
                        MsgBox("User Id " & Trim(txtUserID.Text) & " added successfully.", MsgBoxStyle.Information, "New User Added")
                    End With
                    myCommand.Dispose()
 
Status
Not open for further replies.
Back
Top Bottom