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
~813 People Reached
Interests
C# , XNA
Favorite Forums
Favorite Tags

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
70
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
111
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
177
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
111

The End.