Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~1K People Reached
Favorite Tags
Member Avatar for hussain_ahmed

using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data.Linq.Mapping; public partial class Default3 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } public void showgridview() { DataClassesDataContext dc = new DataClassesDataContext(); var q = from a in dc.GetTable<bio>() select a; GridView1.DataSource = q; …

Member Avatar for pritaeas
0
142
Member Avatar for SiPexTBC

In my program, there is a button you click that brings up a new form. This form runs a process. On the form (second form) closing event, I have [CODE]e.Cancel = true; Hide();[/CODE] So now the form that runs the process is hidden. Now, the way i want it to …

Member Avatar for chaitra9
0
787
Member Avatar for Johan__

Hello [CODE]using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ConsoleApplication1 { class WholeNumbersFor { private int numOfInPut; private int sum; public void start(); WriteProgramInfo(); ReadInPut(); SumNumbers(); ShowResults(); } private void ReadInPut() { Console.Write ("Number of Values to sum?"); NumOfInPut = int.Parse(console.Readkey()); console.Writeline(); } private void WriteProgramInfo() { console.Writeline("\n\n ++++++ …

Member Avatar for mani-hellboy
0
92