codeinlinq.blogspot.com
Sample Code in LINQ: How to Insert from ListView with LINQ to SQL
http://codeinlinq.blogspot.com/2008/08/how-to-insert-from-listview-with-linq.html
Sample Code in LINQ. Thursday, August 28, 2008. How to Insert from ListView with LINQ to SQL. I have code here from my previous project. This code show on how to save in database using linq to sql from listview. Create 1 listview and 1 button. Create your connectionstring and *.dbml file. Then copy this code to your project. Private void button2 Click(object sender, EventArgs e). DataClasses1DataContext DCDC = new DataClasses1DataContext();. For (int i = 0; i. Hope this one can help. LIST OF MY TOPICS.
silverlightsnippets.blogspot.com
Silverlight Snippets: July 2010
http://silverlightsnippets.blogspot.com/2010_07_01_archive.html
Friday, July 9, 2010. Embed Silverlight to Blogger Account. This is my first entry on blogger with Silverlight. How? Simple follow the simple steps:. 1 Download the Windows Live Writer. 2 If finished in downloading, Install the WLW. 3 If installed has been done. Open the Windows Live Writer from your Start Menu All Programs Windows Live. 4 Then fill-up the details to connect your account to your blogs site. Just like my example below. Subscribe to: Posts (Atom). LIST OF MY TOPICS. Sample Code in C#.
codeinaspnet.blogspot.com
Sample Code in ASP.NET: June 2009
http://codeinaspnet.blogspot.com/2009_06_01_archive.html
Sample Code in ASP.NET. Sunday, June 28, 2009. Hi, this simple code can prevent the back button of internet explorer to back in previous page. Window.history.forward(); }. SetTimeout("Back()", 0);. Window.onunload = function() { null };. Subscribe to: Posts (Atom). LIST OF MY TOPICS. Sample Code in Silverlight. Sample Code in C#. Sample Code in ASP.NET. Sample Code in Crystal Report. Sample Code in SQL. Sample Code in Linq. Sample Code in Ajax. Sample Code in VB6.
codeinlinq.blogspot.com
Sample Code in LINQ: August 2008
http://codeinlinq.blogspot.com/2008_08_01_archive.html
Sample Code in LINQ. Thursday, August 28, 2008. How to Insert from ListView with LINQ to SQL. I have code here from my previous project. This code show on how to save in database using linq to sql from listview. Create 1 listview and 1 button. Create your connectionstring and *.dbml file. Then copy this code to your project. Private void button2 Click(object sender, EventArgs e). DataClasses1DataContext DCDC = new DataClasses1DataContext();. For (int i = 0; i. Hope this one can help. Grid1DataSource = q;.
codeinaspnet.blogspot.com
Sample Code in ASP.NET: Accept Number Only
http://codeinaspnet.blogspot.com/2009/05/accept-number-only.html
Sample Code in ASP.NET. Friday, May 15, 2009. Hi, Today this is my first post in my asp.net topic (Even this year, this is my first post). I will show on how to validate textbox input in numeric using javascript. Event : window.event. Var charCode = (event.which)? Eventwhich : event.keyCode. If ( charCode = 48 & charCode. In your form load event. Txtnumeric.attributes.add("onKeyPress","return checkNum(event)"). This example showing that theirs another way to validate numeric input in a textbox.
codeinlinq.blogspot.com
Sample Code in LINQ: How to Load DataGridView in LINQ to SQL
http://codeinlinq.blogspot.com/2008/08/how-to-load-datagridview-in-linq-to-sql.html
Sample Code in LINQ. Thursday, August 7, 2008. How to Load DataGridView in LINQ to SQL. First Step. Make sure you have sql server 2000/05/08. Second Step. If you have Database at your sql server, Add DataClasses1 in your project. Third Step. Drag the table from your Database to your DataClasses Window. Fourth Step. Add DataGridView to your Form and Button. Copy this code to your button. Private void button1 Click(object sender, EventArgs e). DataClasses1DataContext dc = new DataClasses1DataContext();.
codeincsharp.blogspot.com
Sample Code in C#: April 2010
http://codeincsharp.blogspot.com/2010_04_01_archive.html
Sample Code in C#. Monday, April 12, 2010. VISUAL STUDIO 2010 GLOBAL LAUNCH. The Visual Studio 2010 is here. You can test by downloading the free trial at this link http:/ www.microsoft.com/visualstudio/en-us/download. And view the products features in this link http:/ www.microsoft.com/visualstudio/en-us/products. You can even watch the live launch at http:/ www.microsoft.com/visualstudio/en-us/watch-it-live. Labels: Visual Studio 2010. Subscribe to: Posts (Atom). LIST OF MY TOPICS. Sample Code in C#.
silverlightsnippets.blogspot.com
Silverlight Snippets: March 2010
http://silverlightsnippets.blogspot.com/2010_03_01_archive.html
Thursday, March 4, 2010. Autocomplete in Silverlight with Visual Studio 2010. To show how the autocomplete works with database. This is the output:. First, this is the setup for my autocomplete:. The tags for autocompletebox on XAML. Second, my simple snippets:. Event for the autocomplete to send a text string to my function. Private void autoCompleteBox1 KeyUp(object sender, KeyEventArgs e). AutoCompleteBox1.Populating = (s, args) =. ArgsCancel = true;. Var c = new Service1Client();. DataGrid1.Items...