Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
~869 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

6 Posted Topics

Member Avatar for ssudra
Member Avatar for shayankhan

U can use "AND" to search two Strings Select * from [table] where arg1="val" AND arg2="val2";

Member Avatar for shayankhan
0
90
Member Avatar for stevanity
Member Avatar for danuz

you can use : [CODE]Array.Sort(a); Array.Reverse(a);[/CODE] methods to Sort arrays

Member Avatar for ddanbe
0
122
Member Avatar for m_wylie85

you have to use streamWriter in this case example usage:(stream writer) [CODE] using System; using System.IO; class Test { public static void Main() { string path = @"c:\temp\MyTest.txt"; try { if (File.Exists(path)) { File.Delete(path); } using (StreamWriter sw = new StreamWriter(path)) { sw.WriteLine("This"); sw.WriteLine("is some text"); sw.WriteLine("to test"); sw.WriteLine("Reading"); } …

Member Avatar for iconoclazt
0
181
Member Avatar for moone009

[CODE] using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.SqlClient; using System.Data; namespace SelectItems { class Program { internal static string ConnectionString = "Data Source=TROJANX;Initial Catalog=ENTERPRISE4;Integrated Security=True;Pooling=False"; static void Main(string[] args) { try { using (SqlConnection sco = new SqlConnection()) { sco.ConnectionString = ConnectionString; sco.Open(); using (SqlCommand sc = …

Member Avatar for Mitja Bonca
0
118

The End.