rayet

Stories submitted by rayet

Stripping the Decimal From a Value in .NET(rtipton.wordpress.com)

submitted by rayetrayet(240) 2 years, 11 months ago

I had an issue in which I needed to strip the decimal point from both amount and diagnosis code fields. They also need to be right justified and padded with zeroes. I was able to accomplish my task by using the Replace and PadLeft methods which can be found in String Class. read more...

add a comment |category: |Views: 8

tags: another

Great Design Pattern Resources(rtipton.wordpress.com)

submitted by rayetrayet(240) 3 years, 8 months ago

Some common patterns include the Singleton, Facade, Adaptor and Decorator. There are many, many patterns and below are some great resources to learn about them. read more...

add a comment |category: |Views: 592

tags: another

SQL Server Reporting Services - Resources(rtipton.wordpress.com)

submitted by rayetrayet(240) 3 years, 9 months ago

Some resources and information on the topic of SSRS. read more...

add a comment |category: |Views: 8

tags: another

Dime Casts - Great Ten Minute Development Tutorials(rtipton.wordpress.com)

submitted by rayetrayet(240) 3 years, 11 months ago

Derik Whittaker has started a great video tutorial site called Dime Casts. The tutorials are just the right length to fit into a busy day. read more...

add a comment |category: |Views: 210

tags: another

Enthusiasm & Passion for Programming(rtipton.wordpress.com)

submitted by rayetrayet(240) 3 years, 11 months ago

Resources to help keep you passion and enthusiasm for programming in check. read more...

add a comment |category: |Views: 17

tags: another

Book Review: C# In Depth(rtipton.wordpress.com)

submitted by rayetrayet(240) 3 years, 11 months ago

Jon Skeet does a great job of demonstrating the differences between the features of C# 1, 2 and 3. read more...

add a comment |category: |Views: 11

tags: another

RadioButtonList Control in ASP.NET(rtipton.wordpress.com)

submitted by rayetrayet(240) 3 years, 11 months ago

The ASP.NET RadioButtonList control is used to create a defined list of options in which a user can choose from. Like the DropDownList control, only one item can be selected at a time. read more...

add a comment |category: |Views: 34

tags: another

CheckBoxList Control in ASP.NET(rtipton.wordpress.com)

submitted by rayetrayet(240) 3 years, 11 months ago

The ASP.NET CheckBoxList control is used to create a defined list of options in which a user can choose from. read more...

add a comment |category: |Views: 12

tags: another

Creating a Data Set From Scratch in C#(rtipton.wordpress.com)

submitted by rayetrayet(240) 3 years, 11 months ago

How to create a Date Set from scratch in code. Sometimes it takes doing something from scratch to learn more about the namespaces and classes. read more...

add a comment |category: |Views: 28

tags: another