| "Get the Place" Game |
| C# Corner |
|
|
| .NET - More on Generics in the CLR |
| MSDN |
| More on Generics in the CLR |
|
| .NET Framework and Web Services - Part III |
| C# Corner |
| In part II we learned how to create a Web service and how to consume it from a VB.NET client. Here I am going to explain Web methods. |
|
| Accessing Oracle Database |
| C# Corner |
| This source code shows you how to connect to an oracle database and do operations such as select, insert, update and delete. |
|
| Advertising on Mobile |
| C# Corner |
| Finally, its possible to advertise on your mobile phones. Mobile toolkit provides an add rotator control very similar to the ad rotator control for the Web. This Control will display the Advertisement in the random manner picking from the XML file. |
|
| Another Chart Engine Example |
| C# Corner |
| Another example of implementing charts with .NET. |
|
| Array Types in .NET |
| MSDN |
| Arrays are mechanisms that allow you to treat several items as a single collection. The Microsoft® .NET Common Language Runtime (CLR) supports single-dimensional arrays, multidimensional arrays, and jagged arrays (arrays of arrays). All array types are implicitly derived from System.Array, which itself is derived from System.Object. This means that all arrays are always reference types which are allocated on the managed heap, and your app's variable contains a reference to the array and not the array itself. |
|
| ASP.NET Validation Controls |
| DotNetJunkies |
| Input validation can be a tricky thing. Ideally we should validate the data on the client side to prevent unnecessary round trips to the server. That requires JavaScript. But not every browser out there processes JavaScript (hard to believe, isn't it). And even still, changing the display characteristics to show errors in the input is not always supported. Not to mention, a slightly unethical person could recreate your page, and bypass the validation all together. Ugh! This leaves us with server-side valida |
|
| Assemblies and Code Distribution |
| C# Corner |
|
|
| Autogeneration of Client-side JavaScript from an ASP.NET User Control |
| DotNetJunkies |
| I was recently tracking down a bug with JavaScript onMouseOut/onMouseOver handlers in my ASP.NET User Controls. In order to rule out one possible problem – images that haven't been downloaded yet – I decided it would be useful to implement image preloading for my ASP.NET ImageButton controls. I've seen the slick way that Macromedia Dreamweaver inserts the MM_preloadImages() function in its authored pages. So, I thought... there must be a way in my ASP.NET pages to do the same thing. After a little bit of research, I found that there was a way, and it was pretty easy to implement. |
|
| Autogeneration of Client-side JavaScript from an ASP.NET User Control |
| DotNetJunkies |
| Kirk decided it would be useful to implement image preloading for my ASP.NET ImageButton controls. He saw the slick way that Macromedia Dreamweaver inserts the MM_preloadImages() function in its authored pages. He found that there was a way to do the same thing in an ASP.NET page. |
|
| Automatic Generated DataGrid Commands |
| C# Corner |
|
|
| Brick Out Game in C# |
| C# Corner |
| Way back, I'd say about 1981 (ok maybe not so far back!), there was a game for the Apple II called Brick Out. The game was actually a bit more complex than the one I'm presenting here. The object of the game was to knock out all the brick by hitting a ball with a paddle against the bricks. This source code was provided at the time( in Apple Basic) and boasted 'Hi-Res' Graphics. |
|
| Building Text to Speech Applications using SAPI 5.1 and C#. |
| C# Corner |
| The Speech application programming interface (SAPI) considerably decreases the code necessary for an application to use speech recognition and text-to-speech, making speech technology more handy and robust for broad range of applications. |
|
| C# and its Types |
| C# Corner |
| In learning a new language the first pace is usually to learn basic concepts such as variables,operators,types,expressions etc. Variables represent storage locations. Every variable has a type that determines what values can be stored in the variable. C# is a strongly type-safe language, and the C# compiler assurance that values stored in variables are always of the suitable type.In this article let us see about the types in C#. |
|
| C# Logical Game |
| C# Corner |
|
|
| C++ Q & A: Singleton Class Private Constructor, C# Singleton Class, and More |
| MSDN |
| Answers to your questions about the singleton class private constructor, C# singleton class, and more |
|
| CDataService: A Generic Database Access Class |
| C# Corner |
| Using a generic database access component in data-aware applications can simply development and separate data tier from business tier. |
|
| Charting in GDI+ |
| C# Corner |
| Here is an example of creating simple charts using GDI+ commands in C#. I have used the random class to create 5 random percentage values. I then use GDI+ to plot these values on a chart. |
|
| COBOL for Microsoft.NET |
| C# Corner |
| This article gives you introduction about how the age old COBOL can take a new energetic look under Microsoft.NET. |
|
| Create a DotNet TCP/IP Client Class Using Asynchronous Delegates |
| STANDARDIO.ORG |
| In this article, I will demonstrate how manage a DotNet client connection to a TCPIP address and port. All of the necessary components are located under the System.Net.Sockets namespace. We will use the TCPClient and NetworkStream classes to accomplish the task. |
|
| Custom Security Implementation |
| C#Today |
| In the previous articles in this series, we have discussed the security architectures and schemes available to developers in the .NET framework. Code access security and role based security are the two main types of security available to developers. In this article, Kaushal Sanghavi explores .NETs support for building a custom security scheme by implementing our own identity and principal classes that rely on user information stored in a database. In the previous article on Custom Security Permissions, we focused on Code Access Security, while in this article we focus on extending .NETs support for Role Based Security. |
|
| Data Transfer From Microsoft SQL Server to Excel |
| C# Corner |
| The Interoperability services help our life very easy to work with COM Applications like Excel. .NET platform provides necessary services to use existent application written in visual basic, C++ and so on. In this application, we will see how we can transfer data from Microsoft SQL Server into Excel spreadsheet. |
|
| Directory Picker Dialog |
| C# Corner |
| Although the open file dialog is a good tool for picking files, sometimes its the desire of the programmer to have a dialog that chooses a directory. This simple directory picker should get you started on this useful windows function. I wrote a previous article on this topic for Beta 1, but wanted to redo it for Beta 2. This Directory Picker in this article is also a bit different because it uses the "Large Icon" view of the ListView to traverse through directories. |
|
| Displaying Data in a ListBox Web Control |
| C# Corner |
| This simple sample example shows you how to show a column dable in a ListBox control. I 've used northwind.mdb Access 2000 database comes with Office 2000. |
|