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.
Thanks TS .. gusto ko rin matuto nang C# 101 PHP din ts if meron thanks in advance
 
Hi Kapwa SB,

Nag aaral po kc ako ng C# 2010 mas maganda kc kapag may system na gawa na para masusubukan ko rin. Ask lang po sana kong meron kayo ma e share any kind of system. Thanks .
 
Paki-tingnan nga po itong code na ito.

Code:
Dim con As New OleDbConnection(Get_Constring)

        Dim dt As New DataTable
        Dim command As New OleDbCommand
        command.CommandText = "SELECT * from EncodingComplete where Date_Bill >= @startDate AND Date_Bill < @endDate AND Client like @client Order by Date_Bill desc"
        command.Connection = con
        con.Open()

        With command.Parameters
            .AddWithValue("@startDate", DateTimePicker1.Value.Date)
            .AddWithValue("@endDate", DateTimePicker2.Value.Date.AddDays(1))
            .AddWithValue("@client", ComboBox1.Text & "%")
        End With
        Dim da As OleDbDataAdapter = New OleDbDataAdapter(command)
        DataGridView1.DataSource = dt
        con.Close()

Yung datagridview ko po nagiging blangko eh. Pls help. Inaachieve ko po yung Search with Date Range sa VB.NET.
 
Meron po akong mga tanong mga sir:

1. Paano po i-automatically i-delete yung 'blank' row sa DataGridView?
2. Pwede ba ang app mag-count how many times a certain word appears sa cell ng dgv tapos mag-aappear yung count sa label text??
 
patulong nmn po. pano ba gawin c# class un mga function sa matlab?
thanks
 
anu po bang gagamitin na tools if mag view ng word, ppt, pdf and excel sa vb 2010?
 
mga sir penge nmn simple codes sa voting system adodc ang gmit with ms access..database..please..
 
Magandang gabi mga master,
patulong naman.
Paano gumawa ng Optical Mark Recognition Software, ano ano ang dapat ko iresearch tungkol sa vb.net
https://www.youtube.com/watch?v=4Kul-mHgHVo
ganto po sana ang balak kong gawin. nag try ako sa matlab kaso di ko magawa yung icocompare nya yung certain region pixel sa dalawang image.
 
Mga Master, pa help naman regarding sa time in/time out. gumagawa kasi kami ng payroll system for our baby thesis, at medyo nahihirapan ako. :D :thanks: on advance po!
 
Paki-tingnan nga po itong code na ito.

Code:
Dim con As New OleDbConnection(Get_Constring)

        Dim dt As New DataTable
        Dim command As New OleDbCommand
        command.CommandText = "SELECT * from EncodingComplete where Date_Bill >= @startDate AND Date_Bill < @endDate AND Client like @client Order by Date_Bill desc"
        command.Connection = con
        con.Open()

        With command.Parameters
            .AddWithValue("@startDate", DateTimePicker1.Value.Date)
            .AddWithValue("@endDate", DateTimePicker2.Value.Date.AddDays(1))
            .AddWithValue("@client", ComboBox1.Text & "%")
        End With
        Dim da As OleDbDataAdapter = New OleDbDataAdapter(command)
        DataGridView1.DataSource = dt
        con.Close()

Yung datagridview ko po nagiging blangko eh. Pls help. Inaachieve ko po yung Search with Date Range sa VB.NET.

Eto gamitin mo sa filtering, mas efficient.

Text_Changed
GridView.Filter = string.Format("country LIKE '%{0}%'", textBox1.Text);
 
Status
Not open for further replies.
Back
Top Bottom