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.
uhm sir patulong aman po sa visual basic yung pag gawa ng graph??
 
nag download po ako ng visual studio 2005... included po ba don ung .net na sinasabi nyo. :noidea:
 
same here! ganito topic namin ngayon.

thank youuu so much! :excited:
 
pede po makisali gusto ko po sana matutu ng mga program.,
turuan nyo naman ako.,

kahit mga basic lang
 
sino may installer ng C# jan..???penge mga tol..please.....installer ng C#...tska tutorial narin..hehehe....yan Language q ngayon eh..C#...hehehehe..no idea pa...gusto q kasi advance aq sa mga classmates q..thnx...:praise:
 
Guys meron po ba kayong visual C# 2005 installer nde ung express edition.. ung complete napo meron na auto generate crystal reports and SQL DB 2005?

need ko lng po pls.... nagmamadali na ako sa thesis nmin eh heheheh bka di ako mka graduate this march kng di ko pa sismulan ngaun heheh..

Thanks in advance po..
 
merun ako visual studio 2008 merun ng c# visual basic at c++ kaso sobra lake nun e pag upload ko dito kakatamad . c# din kasi knakarir ko ngayon e hehe nkagawa na ko ng program dun gngamit ko sa uzzap auto in and out at autoflood na program.
 
pwede po ba ako magpatutor?????????????
nid po xe namen mkgawa until feb 20 ng inventory using visual basic.net!!!!
ndi ko aman alam ang gagawin dun.... help aman po... post nyo ung complete set at what must i do....
Author help pls!!!
 
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



Di ko makita connection strings mo
 
Status
Not open for further replies.
Back
Top Bottom