james_crowley

Stories kicked by james_crowley

Reflector for .NET(aisto.com)

submitted by j.montyj.monty(1868) 6 years, 2 months ago

Reflector is an excellent utility - a class browser for .NET components. It supports assembly and namespace views, type and member search, XML documentation, call and callee graphs, IL, Visual Basic, Delphi and C# decompiler, dependency trees, base type and derived type hierarchies and resource viewers. read more...

add a comment |category: |Views: 11

tags: another

Seven Pillars of Pretty Code(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 2 months ago

The essence of pretty code is that one can infer much about the code's structure from a glance, without completely reading it. I call this "visual parsing": discerning the flow and relative importance of code from its shape. Engineering such code requires a certain amount of artifice to transform otherwise working code into working, readable code, making the extra step to leave visual cues for the user, not the compiler. read more...

add a comment |category: |Views: 0

tags: another

Using WMI From Managed Code(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 2 months ago

Windows Management Instrumentation (WMI) is Microsoft's implementation of Web-Based Enterprise Management (WBEM) and the Common Information Model (CIM). Although WMI is COM-based, Andriy Klyuchevskyy shows you how you can access it from C# and VB.NET through System.Management, thanks to COM Inter-Op. read more...

add a comment |category: |Views: 11

tags: another

Locking the Door behind You: Hacker Protection for Your Web Applicatio(developerfusion.co.uk)

submitted by cainfotechcainfotech(460) 6 years, 2 months ago

The web applications are the most improtant and valnurable for an organisation and are the entry point for the hackers. To have protection against those it has to be ensured adequate hacker protection towards the web applications. While we consider web applications it not only compraises of the outlook rather all the contents and applications running behind them. Read here to know more.... read more...

add a comment |category: |Views: 4

tags: another

Aspect Oriented Programming using .NET(developerfusion.co.uk)

submitted by cainfotechcainfotech(460) 6 years, 2 months ago

Aspect Oriented Programming or AOP is an interesting concept that can be applied to many of the programming problems we solve everyday. Read here to know what AOP does... read more...

add a comment |category: |Views: 7

tags: another

Using MySQL with .NET(developerfusion.co.uk)

submitted by cainfotechcainfotech(460) 6 years, 2 months ago

It is realy amazing to combine a powerful platform like .net with a free database like MySql. Well the credit goes to the ODBC database functions in ADO .net. You install it and its ready for the action and rollover to build a simple application for reading a table built in MySQ. Read to know more about using My SQL with . NET..... read more...

add a comment |category: |Views: 24

tags: another

Creating Applications for Handheld Devices Using eMbedded Visual Basic(developerfusion.co.uk)

submitted by cainfotechcainfotech(460) 6 years, 2 months ago

This basic tutorial explains how developers with a basic knowledge of Visual Basic 6 can adapt their skills to develop applications for handheld devices which run the Pocket PC 2002 or 2003 Operating System (O/S). Eventhough .net technology is taking the picture still the programmers feel better with eVB to make the softwares for handheld devices. View the above link to know more.... read more...

add a comment |category: |Views: 6

tags: another

Hacker Protection for Your Web Applications(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 3 months ago

Your Web applications can be the most important and most vulnerable entry point into your organization, and, as such, ensuring adequate hacker protection in your Web applications can be critical. This article discusses some of the issues. read more...

add a comment |category: |Views: 5

tags: another

Aspect Oriented Programming using .NET(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 3 months ago

Till now we were talking about non-mainstream languages to use Aspect Oriented Programming (AOP). Learn what exactly AOP is, and how you can go about getting this functionality in C#. read more...

add a comment |category: |Views: 16

tags: another

ASP.NET Cache Manager(dotnetslackers.com)

submitted by RobChappelRobChappel(2720) 6 years, 3 months ago

This plug-in allows for the viewing and removal of any Cache API entries or output cached ASP.NET pages within an ASP.NET application. It has been compiled under 1.1 and so my hope is that it will work with any application written using ASP.NET 1.1 or 2.0. It might even work for 1.0 but no promises there. It is 100% free -- enjoy and share. read more...

add a comment |category: |Views: 466

tags: another

Url Rewriting with Regex for ASP.NET 2.0(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 3 months ago

A new feature in ASP.NET 2.0 is it's built-in url rewriting support. When i looked into this new feature I found that it lacked regular expressions support, which is really the point of an Url Mapper. So, this code demonstrates how to create a Url Rewriting Module with Regex support in ASP.NET. read more...

add a comment |category: |Views: 3

tags: another

DataGrid Paging and Sorting Using A DataReader(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 3 months ago

This article will demonstrate two ways one could implement the DataReader to bind a DataGrid, that includes caching, paging and persistent bi-directional sorting, all without the use of a DataAdapter/DataSet at all! read more...

add a comment |category: |Views: 324

tags: another

Using .NET to make your Application Scriptable(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 4 months ago

Shows how to use the built-in compilers in the .NET framework to allow users of your product to write script to control and hook in to the application. read more...

add a comment |category: |Views: 3

tags: another

Printing Reports in .NET(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 4 months ago

Learn how to print reports from C# and other .NET languages using the open source library presented here. Features include Printing DataTables, printing paragraphs of text using style classes, customizable page headers and footers, boxes, lines, graphics and much more. read more...

add a comment |category: |Views: 12

tags: another

Applying XSL transformations to XML in .NET(developerfusion.co.uk)

submitted by RobChappelRobChappel(2720) 6 years, 4 months ago

XML Stylesheet Transformation(XSLT) is defined as a language for converting xml documents to other document formats. XSLT processors parse the input XML document, as well as the XSLT stylesheet and then process the instructions found in the XSLT stylesheet, using the elements from input XML document. During the processing of the XSLT instructions, a structured XML output is created. We are going to perform the transformation using the XmlUrlResolver, XSLTransform classes from the .NET Framework. The XslTransform class, found in the System.Xml.Xsl namespace, is the XSLT processor that implements the XSLT version 1.0 recommendation. read more...

add a comment |category: |Views: 16

tags: another

Exceptions and Performance in .NET - The True Cost of Exceptions(developerfusion.co.uk)

submitted by gavinjoycegavinjoyce(25.7k) 6 years, 4 months ago

Almost every time exceptions are mentioned in mailing lists and newsgroups, people say they're really expensive, and should be avoided in almost all situations. As an idea of just how expensive some people think they can be, in one article someone asked whether the fact that his web application was throwing about 200 exceptions an hour was likely to be harming his performance. Various people replied saying that it would indeed be causing a problem. This article examins the claim read more...

add a comment |category: |Views: 5

tags: another