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.
bossing pa link naman po sa ibang filehosting maraming salamat po in advance ....................
 
PATULONG NAMAN DITO EXERCISE LANG SA SKUL!

2.Given: Functional, Theory, Thermal, Typical, Tropical
Given these inputs. Create a program that will find the missing letter of the inputted string.
Example:
Input: Tory
Output: The missing letter/s : he
Input: Theml
Output: The missing letter/s : ra
input: th
ouput: theory and thermal is the possible answer

\\hahanapin yung pinaka malapit na word dun sa input na letters tapos icheck kung anung letter yung nawawala dun sa input pag dawala yung posible na word ito yung sample ouput: theory and thermal is the possible answer---- wag kayo maguluhan dun sa mga given na function, theory ... dun lang hahanap ng word

C, C#,C++ SANA
 
Last edited:
alin po mas madaling gamitin sa tatlo c#,vb net,C++???

vb.net is more readable than the rest. However the path of learning it is also the same with the others because all of them are used to write program for the .net platform. For example in vb.net you will study delegates and its also true when it comes to C#.net.

Furthermore there is an advantage of learning C++ than the others because you can also used it to create native apps and didn't I mention that it is the most popular programming language for creating games.
 
dead link napo po ba T.S patest naman po kasi hindi sakin working!
 
gumawa kasi ako ng project freetext using Visual basic 2010 nag sesend na siya kaso merong error baka merong makatulong dito ito ung error..
salamat poView attachment 1048916View attachment 1048917

Paano namin malalalaman kung ano ang error kapag hindi mo pinakita sa amin yung code kung saan nagkaka-error? Tingnan mo sa Error Panel at i-double click mo.

Waiting for your reply. :)
 
Last edited:
Paano namin malalalaman kung ano ang error kapag hindi mo pinakita sa amin yung code kung saan nagkaka-error? Tingnan mo sa Error Panel at i-double click mo.

Waiting for your reply. :)

wala naman error sa code ko boss ang problem ko lang pag nag run ako una yan lumabas bago ang freetext ko. wala pa ba naka encounter nito.
 
PATULONG NAMAN DITO EXERCISE LANG SA SKUL!

2.Given: Functional, Theory, Thermal, Typical, Tropical
Given these inputs. Create a program that will find the missing letter of the inputted string.
Example:
Input: Tory
Output: The missing letter/s : he
Input: Theml
Output: The missing letter/s : ra
input: th
ouput: theory and thermal is the possible answer

\\hahanapin yung pinaka malapit na word dun sa input na letters tapos icheck kung anung letter yung nawawala dun sa input pag dawala yung posible na word ito yung sample ouput: theory and thermal is the possible answer---- wag kayo maguluhan dun sa mga given na function, theory ... dun lang hahanap ng word

C, C#,C++ SANA

d pa po ba solved tong query na to? willing ako gumawa ng code nito

- - - Updated - - -

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.


SELECT *
FROM EncodingComplete
WHERE Date_Bill BETWEEN @startDate AND @endDate AND Client like + '%' + @client + '%'
ORDER BY Date_Bill desc"

Try this query sir baka sakali lang. may problema ka lang sa filtering ng date kaya walang na fetch na resultset.
 
Last edited:
Hello po. Sino po c# programmer dito? Kailangan po talaga namin ng help sa system namin. Image processing po. Willing po kami magbayad. Sana po matulungan niyo kami. Badly needed napo. Marami pong salamat. Godbless :)
 
Sir bat ganun hindi naman to eh. Iba ung nag open pagkatapos ma DL.
 
Status
Not open for further replies.
Back
Top Bottom