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.

hmx_ryan

Proficient
Veteran Member
Messages
228
Reaction score
11
Points
128
Power Stone
Reality Stone
Soul Stone
Time Stone
Here, I'm sharing my corner stone in developing my most of VS .Net Projects... Para ito sa mga kapawa kung gusto matotong gumamit ng Visual Studio .Net..

Marami kayong makikitang Basic to Complex Examples.. Hope this Helps...

Overview
This download includes a master set of Visual Basic and Visual C# code samples demonstrating various aspects of the language in the following areas: syntax, data access, Windows Forms, Web development and Web services, XML, security, the .NET Framework, file system and file I/O, interop and migration issues, COM+, ADO.NET, and advanced topics including graphics with GDI+, remoting, serialization, MSMQ, and Windows services.


101 C# Samples.rar

101 VB.NET Samples.rar
 
thanks sir.. actually im looking for those kind of tutorials...
 
thanks yan..ako ang #1 fan mo pagdting sa gnitong mga bagay..haha:lol:
 
astig to sir...meron ka rin installer ng visual studio .net??ung latest po..thanks
 
wow..!!! ang galing pu..tnx pu dito..
uhm ask ku lng pu kung mt 101 codes for php pu kayo??tnx so much!!!
 
Visual BAsic 2003 PO ba ito mag work?

Baka kasi sa 2008 mo to ginawa...
 
Last edited by a moderator:
thanks po boss! i badly need this hahaha yung ka group ko sa project di marunong mag php kaya VS.net approach namin kaya need ko mag basa!
 
pede po ba magpaturo...

ano po ba ang error ng codes na ito..

Private Sub btnPrint_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPrint.Click
Dim da As New SqlClient.SqlDataAdapter
Dim ds As New DataSet
Dim sql As String
'Dim sqlarr(lstviewRentalSummary.Items.Count) As String
Dim entry(lstviewRentalSummary.Items.Count, lstviewRentalSummary.Columns.Count) As String
Dim x As Integer
Dim y As Integer

For x = 0 To lstviewRentalSummary.Items.Count - 1
'sqlarr(x) = "SELECT availability FROM video WHERE videoid= '" & lstviewRentalSummary.Items(x).SubItems(2).Text & "'"
For y = 0 To lstviewRentalSummary.Columns.Count - 1
entry(x, y) = Trim(lstviewRentalSummary.Items(x).SubItems(y).Text)
Next
'da = New SqlClient.SqlDataAdapter(sqlarr(x), cnn)
'da.Fill(ds, "video")
sql = "UPDATE video SET availability='FALSE' WHERE videoid= '" & lstviewRentalSummary.Items(x).SubItems(2).Text & "'"
execute_query(sql)
sql = "INSERT INTO customer_video (customerid,videoid,duedate,dateissue) VALUES ('" & entry(x, 0) & "', '" & entry(x, 2) & "', '" & entry(x, 7) & "', '" & entry(x, 8) & "')"
execute_query(sql)
sql = "INSERT INTO transaction VALUES ('" & entry(x, 0) & "', '" & entry(x, 2) & "', '" & txtCash.Text & "', '" & txtChange.Text & "', '" & entry(x, 8) & "')"
'(customerid,videoid,cash,change,dateissue)
execute_query(sql)
Next
MsgBox("Transaction Finish", MsgBoxStyle.Information)
End Sub

Private Sub execute_query(ByVal val As String)
Dim objcommand As New SqlClient.SqlCommand
cnn.Open()
objcommand = New SqlClient.SqlCommand
objcommand.Connection = cnn
objcommand.CommandText = val
objcommand.ExecuteNonQuery()
cnn.Close()
End Sub
 
hmp..aq foxpro..yung database..yung modify command,modify structure..yun..bago eh..
hehehe..paturo nman please...please....
 
:nice: Very helpful talaga tong mga samples na to especially sa mga newbies like me.
 
kuya ryan... pwede pa hinge other link.. ayaw kce ma DL ehh.. ty po...ned ko lng po badly:praise::praise::pray:
 
Status
Not open for further replies.
Back
Top Bottom