Welcome to Bangladesh Microsoft Technology Community Sign in | Join | Help

January 2007 - Posts

Distributing data to other systems and in this instance I used MSMQ

I remember last year I designed a asp.net application where I had couple of Webforms to collect data and I was storing in the database.Ie. Webform facilitates insert, Update and Delete of Person and allow to set reminders for the person, which is later
posted by Shahed | 0 Comments

Can you find the C

Can you find the “C” ??? (Good exercise for the eyes!) Be ready to go blind. OOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO OOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO
posted by Shahed | 0 Comments

Links to Microsoft Visual Studio Documentation and Related Resources....

Source MSDN Blogs: http://blogs.msdn.com/vsdocs/archive/2007/01/22/links-to-microsoft-visual-studio-documentation-and-related-resources.aspx   Links to Microsoft Visual Studio Documentation and Related Resources Note: These links are subject to
posted by Shahed | 0 Comments

Improving Reflection Performance

Some tips to keep in mind when using reflection....Source MSDN: http://msdn.microsoft.com/msdnmag/issues/05/07/Reflection/default.aspx?loc=&side=true#aImproving Reflection Performance There are various reasons why an application can't define a static
posted by Shahed | 0 Comments

Published Last week on MSDN (Jan 22, 2007)

Published Last Week on MSDN Online Monday, January 22, 2007 New Content Advertisement Development Subscribe to MSDN Flash and you could win a wireless home music system! Publishing Date: 01/16/2007 http://go.microsoft.com/?linkid=6070049 Printed
posted by Shahed | 0 Comments

Use Reflection wisely and be aware of the list Costly functions vs the fast ones

Here is the list of Fast and Light Functions and Costly Functions. So when you write your next piece of codes be more careful to choose the right methods. Fast and Light FunctionstypeofObject.GetTypetypeof == Object.GetTypeType equivalence APIs (including
posted by Shahed | 0 Comments

CLS - Common Language Specification, consider making your code CLS compliant.

Making your code CLS compliant is important, as this confirms that the classes should only expose features that are common to the CLS. So anyone using your classes and writing in a different programming language do not face any issues. To make sure, CLS
posted by Shahed | 0 Comments

Pageflakes takeaway feature

Like I took this sudoku flake here in this blog: Choose your flake at www.pageflakes.com and go to edit and press Export button and this will give you a html similiar to this:<script type="text/javascript" src="http://www.pageflakes.com/CFFlakeManager.js"></script><iframe
posted by Shahed | 0 Comments

Testing Bandwith Speed

Its not as hard as it sounds anyone can do this by throwing some javascript. Most of the speed test sites that are available, downloads a predefined file (a jpg or something with known size) and then uses javascript to find the time elapsed and then calculate
posted by Shahed | 0 Comments

Video: Asp.Net Ajax Basics

http://aspnetpodcast.com/CS11/blogs/asp.net_podcast/archive/2006/09/11/620.aspxThis is a video for the ASP.NET Podcast that shows the basics of using the Microsoft AJAX Library.Here are the Show Notes:  a.. The new names for Atlas.   
posted by Shahed | 0 Comments

Taking Asp.Net2.0 applications offline with app_offline.htm

Asp.Net 2.0 comes with this cool feature, just place a file named app_offline.htm in the root folder of your web application, this will shut-down the application and also unload the application domain from the server, not only this it will stop processing
posted by Shahed | 0 Comments

Free Asp.Net Goodies

Some zero cost resources for asp.net develpers.source: http://www.code-magazine.com/article.aspx?quickid=0411041&page=1 OpenSourceProjects:SmartCodeGenerator(www.codeplex.com/smartcodegenerator): A free opensources code generation tool that uses pure
posted by Shahed | 0 Comments

Asp.Net Ajax Debugging

Dan Walhin made this good video tutorial to show us steps needed to debug client side script : Video : Debugging ASP.net Ajax Application with Visual Studio 2005 Basically, The following steps need to be performed Step1: Need to
posted by Shahed | 0 Comments

Some Useful Asp.Net Ajax /xml Tutorial Videos to let you start quickly

All the following Videos are available in this bloghttp://blogs.interfacett.com/dan-wahlins-blog/   Video: Viewing Albums with WPF/E and ASP.NET AJAX Video: Edit XML Data with the XmlDocument Class Video: Using XPath with the XmlDocument Class Video:
posted by Shahed | 0 Comments

Code blocks formatting in blogs

This GREAT! code formatter lets you format your code blocks. It's simple, you have to copy/paste into a text box, select the technology c#, VB, HTML/ASPX, XML also you can turn on/off line numbers, and alt line back colors. The Service
posted by Shahed | 0 Comments

Published Last Week on MSDN online (Jan08_07)

Published Last Week on MSDN Online Monday, January 8, 2007 New Content Announcement .NET development Experience software evaluation a whole new way Author: Microsoft Publishing Date: 01/04/2007 http://msdn2.microsoft.com/evalcenter/ Printed
posted by Shahed | 0 Comments

Just Uploaded SmartCodeGenerator CTP 2.4.0 at CodePlex

Just Uploaded SmartCodeGenerator CTP 2.4.0 at CodePlexSmartCodeGenerator CTP 2.4, 4 Jan 2007 contains support for .Net2.0 and now you get out of the box DBSchemaProvider for MSSQL2000, MSSQL2005, Oracle and MySqlAlso written and quick example using the
posted by Shahed | 0 Comments

MS SQL 2000 Schema Discovery Queries

Below is the list of queries that I am upto with my MSSql2000DBSchemaProvider for SmartCodeGenerator. I thought this might be useful and quick reference for others too.GetTables string cmdText = string.Format(@"Select TABLE_NAME, TABLE_SCHEMA OWNER,
posted by Shahed | 0 Comments

DBSchemaProvider for MSSQL - GetTables

I have started writing the DBSchemaProvider for MSSQL and here is my first method to return all the Tables from MSSQL Database. I will appreciate if you know a better way to retrieve table list please post that, and I would love tomodify the Provider
posted by Shahed | 0 Comments

I have been awarded MVP for Year 2007

Happy New Year Everyone. I just found this morning I have been MVP ( Microsoft’s Most Valuable Professional ) Award for Year 2007 for my contribution to the Visual c# Community. My MVP Profile: https://mvp.support.microsoft.com/profile/default....You
posted by Shahed | 0 Comments

SmartCodeGenerator - DBSchemaProviders for MySql and Oracle

The SourceCode of Implemented DBSchemaProviders for Oracle and MYSql was mising in the zip file, sorry for the inconvenience.The correct files are uploaded and is downloadable.http://www.codeplex.com/smartcodegenerator/Release...
posted by Shahed | 0 Comments