fatdaveh

Stories submitted by fatdaveh

Extending Typed Datasets (geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 4 years, 11 months ago

With only a few lines of code you can get your Typed DataSet objects to do pretty much anything you want. read more...

add a comment |category: |Views: 8

tags: another

Updating form controls from another thread(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 4 years, 11 months ago

Form controls, by default, can only be updated by the forms thread. This can be a problem in multi-threaded windows forms applications. This short example shows a simple logging function that can be called by threads other than the forms. read more...

add a comment |category: |Views: 5

tags: another

Migrating to Microsoft Ajax RTM - missing Json Converters(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years ago

I recently migrated a large project from an old ATLAS CTP to the MS AJAX RTM were I was using web service calls to get data via typed datasets. The lack of JSON converters for DataSet, DataTable and DataRow was a real problem. Lots of 'System.InvalidOperationException: A circular reference was detected...' errors. Here is how I got around it with minimal fuss. read more...

add a comment |category: |Views: 5

tags: another

Parsing Enum strings in .NET(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 5 months ago

A quick and easy tip for converting strings back to Enum types. read more...

2 comments |category: |Views: 17

tags: another

How-to: Access ASP.NET MasterPage properties without casting(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 8 months ago

ASP.NET master pages are pretty handy and here is a simple tip to make them even easier to use. Using the MasterType reference in your content page allows you to refer to your master page properties without having to cast it to your master page type every time. read more...

add a comment |category: |Views: 368

tags: another

SQL 2005: Changing Schema for a group of objects(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 8 months ago

This script moves all of your stored procedures from one Schema to another. It wouldn't be hard to change it to move other object types. read more...

add a comment |category: |Views: 7

tags: another

T-SQL script automatically adds auditing to a table(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 8 months ago

This handy T-SQL script makes adding auditing to your database really very easy. read more...

add a comment |category: |Views: 27

tags: another

Select Column Information using SQL Server (geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 8 months ago

How to select information about columns in a table using SQL Server. read more...

3 comments |category: |Views: 28

tags: another

One Pager: Why we should use C# for .NET development(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 8 months ago

A one pager on why I think C# can be more productive than VB in our scenario. Our primary language is Java and developers multi-skill. I would be interested to hear your feedback. read more...

add a comment |category: |Views: 8

tags: another

Using Typed DataSets with SQL 2005 and stored procedures(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 8 months ago

I have been a fan of typed datasets since I started using them in VS2005. Using the feature with SQL Express/stored procedures, Express/SQL Statements, SQL Server/SQL Statements all generate my DAL just fine. However, I have found a couple of problems with them when using them with full SQL Server 2005 and stored procedures. read more...

1 comment |category: |Views: 8

tags: another

Authenticated WebService calls using HTTPWebRequest.Credentials in C#(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 8 months ago

This example shows how to make a call to a web service where the standard vs2005 WebReference tool does not recognise the web service. In this case the web service is the Cisco AXL interface into CallManager and the WebReference tool fails because the the AXL service accepts only POST'ed requests. The code sample is in C#. read more...

add a comment |category: |Views: 895

tags: another

Lightweight Ajax(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 9 months ago

Ajax is nice - it allows you to do things that would would not work otherwise. It doesn't always have to be complex either; have a look at this example. Source code is downloadable. read more...

add a comment |category: |Views: 4

tags: another

Adding autocomplete using ATLAS(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 9 months ago

A quick demo of how to add auto-complete to your web site using ATLAS read more...

add a comment |category: |Views: 6

tags: another

Web service calls from javascript using ATLAS (part 3) - Complex prope(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 9 months ago

More cool stuff with ATLAS, web services, and javascript. This post demonstrates how 'complex' properties can be made available to javascript via a webservice. read more...

add a comment |category: |Views: 3

tags: another

Web service calls from javascript using ATLAS (part 2) - Complex retur(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 9 months ago

ATLAS makes web services and javascript play together nicely. As this simple example shows.... read more...

add a comment |category: |Views: 2

tags: another

Web service calls from javascript using ATLAS (part 1)(geekzilla.co.uk)

submitted by fatdavehfatdaveh(1420) 5 years, 9 months ago

An introduction to using the ATLAS framework to make web service calls from javascript. I have found this to be a really useful and simple mechanism. read more...

add a comment |category: |Views: 9

tags: another