As mentioned on the .NET Framework page, .NET Framework is designed for cross-language compatibility. Cross-language compatibility means .NET components can interact with each other irrespective of the languages they are written in. An application written in VB .NET can reference a DLL file written in C# or a C# application can refer to a resource written in VC++, etc. This language interoperability extends to Object-Oriented...
Friday, October 10, 2008
XAML
Extensible Application Markup Language (XAML, pronounced zammel [zæml]) is a declarative XML-based language created by Microsoft which is used to initialize structured values and objects. It is available under Microsoft's Open Specification Promise. The acronym originally stood for Extensible Avalon Markup Language - Avalon being the code-name for Windows Presentation Foundation (WPF)XAML is used extensively in .NET Framework...
Labels:
XAML
Silverlight
Microsoft Silverlight is a programmable web browser plugin that enables features such as animation, vector graphics and audio-video playback that characterize rich internet applications. Silverlight competes with products such as Adobe Flash, Adobe Flex, Adobe Shockwave, JavaFX, Curl and the JavaScript programming language. Version 2.0, now in beta-testing, brings additional interactivity features and support for .NET languages...
Labels:
ASP.NET,
silverlight
file extensions which are configured by default in ASP.NET 2.0
Here is a list of file extensions which are configured by default to be handled by ASP.NET 2.0.asax used for application level logicglobal.asax-ascx used for creating web user control.ashx- used to create a custom httphandlerasmx- used to create web servicesaspx- used for web application pagesaxd- is used for special webresource axd handler which allows the developer to package component and controls along with javascript, images...
Know Any File Extension
if u want to know full form of any file extension then u can find out it on following web site............www.fileinfo.n...
Thursday, October 9, 2008
Search string with Wild Card
Public Function CheckWildCardString(ByVal String1 As String, ByVal String2 As String) As BooleanDim I As Long If Left$(String1, 1) = Chr$(42) And Right$(String1, 1) = Chr$(42) ThenString1 = Replace$(String1, Chr(42), Empty) For I = 1 To Len(String2) If LCase$(Mid(String2, I, Len(String1))) = LCase$(String1) ThenCheckWildCard = TrueExit FunctionEnd IfNext IElseIf Left$(String1, 1) = Chr$(42) Then If LCase$(Right(String2, Len(String1)))...
Labels:
C#.NET
Wednesday, October 8, 2008
Compress Files & Foleder in vb.net
Imports java.util.zipImports java.ioPublic Class ZipUtilityPublic Shared Function CreateZip(ByVal FileNames() As String, ByVal ZipFileName As String) As Boolean'THIS SAMPLE WILL NOT ALLOW THE ZIP FILE TO BE CREATED IF IT ALREADY EXISTS'MODIFY AS NEEDED, I WILL WORK ON ADDING IN SUPPORT FOR APPENDING AND OVERWRITINGIf DoesFileExist(ZipFileName) ThenThrow New IOException("zip file already exists")Return FalseEnd IfTry'OUTPUT STREAM...
Labels:
VB.NET
Tuesday, October 7, 2008
Connect .NET with MySQL
To connect .NET with MySQL u will have to follow following stepsinstall mysql-connector-net-5.2.3 from net (its free)Import mysql.data which u will get in installation folder of above softwareimport namespace = imports MySql.Data.MySqlClientthen use mysqladaper,mysqlcommand,mysqlconnection as u use oledbdataatapter,oledbcommand,OleDbConnectionwhen ever u will try to exis table which contain date in 00:00:0000 format then u will...
Labels:
C#.NET
Subscribe to:
Posts (Atom)