pjacobs

Stories submitted by pjacobs

SubForum To Be Designed Using the 960 Grid System(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

SubForum is an open source discussion forum using the ASP.NET MVC framework. However, we are going to use the 960 Grid System to develop the interface. The 960 Grid System is basically web design for 1024×768 display. Word is 800×600 is dead and 960 pixels is the new gold standard. The current interface was put together using css only. We are not putting any of the styling into the controls or aspx pages. All styling will leverage CSS and will not be embedded into any component, control, or page. We believe this will allow designers more freedom to develop themes which SubForum will support. read more...

add a comment |category: |Views: 13

tags: another

Simple Tag Cloud Implementation for ASP.NET MVC(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

I read this post by Mikesdotnetting a few days ago when I was trying to implement a Tag Cloud for our open source forum project SubForum. Although it was a good post and got me started on how to do it, I found it a bit complex for what I needed. One of the complications that I saw was obviously the Entity Framework and the data layer that Mike talked about to build the Tag Cloud. The data I needed was quite simple and didn’t need to be that complex. I decided to implement a simple ASP.NET MVC Tag Cloud using plain SQL and a simple table structure. Also, I did not want categories. I just wanted posts and post tags, so that my Tag Cloud could more accurately represent the Tags in the posts. read more...

add a comment |category: |Views: 130

tags: another

Use Castle Windsor to Read Your Config Files Automatically(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

I have not updated my code to the latest Castle Windsor. I am still using the the previous version. With it you can setup your .config files to be parsed automatically and stored for you. All you have to do is setup an interface and initialize a class. From that point on if you need to add anything to your storage (app.config or web.config) you just have to update the interface. read more...

add a comment |category: |Views: 4

tags: another

How To Sort From Left To Right with SQL Server 2005 and above(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

A few months back I wrote a web service that generates lottery numbers for the Texas Lottery. The concept is that the numbers are not truly random; otherwise, there would be a uniform spread for the numbers. Also, some numbers are hot numbers and you are more likely to pick a winner using the hottest numbers. read more...

add a comment |category: |Views: 2

tags: another

SubForum.net Is An Open Source ASP.NET MVC Discussion Forum(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

we are announcing an open source project on codeplex called subforum.net. Subforum.net is an ASP.NET MVC discussion forum. We want it to be unique and different from other discussion forums but still maintain the ideals of a forum. We would like it to combine the best ideas of other sites such as stackoverflow and DIGG. Please join us and check out subforum.net. read more...

add a comment |category: |Views: 336

tags: another

How NOT To Design a UI – The dotnetkicks Example(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

With the advent of ajax and jquery flooding the internet, web developers are providing professional and polished web designs like never before. For example, when I search with google I type begin typing my query and google responds with other popular search terms and giving me feedback as I type. read more...

add a comment |category: |Views: 35

tags: another

Use a BindingListCollectionView from a BindingList from a List<T>(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

Let’s say you have a WPF application with a DataGrid on it. You also have a strongly typed list of objects – I.E. List<Person> which you would normally bind to your grid. You might have been under the misconception that you can’t convert the List<Person> to a BindingListCollectionView. I have searched google for answers and ran across people saying you can’t do that. It is possible and I will show you how to make it happen. read more...

add a comment |category: |Views: 102

tags: another

WPF C1DataGrid how to tab or shift tab(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

I am working on a WPF project at work and we purchased a couple components from a couple of different component vendors. One of them is ComponentOne and we have used the C1DataGrid in several places. Recently a bug was submitted that said they could not tab or shift tab through the grid and have it select the next or previous row automatically when the beginning or end of the row is hit. read more...

add a comment |category: |Views: 22

tags: another

Visual Studio Team System DeploymentItem Attribute(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 7 months ago

Subversion is awesome I am a big fan of source control and subversion is my favorite. I used it for several years before being forced into using TFS on my current project. Subversion is great because it really doesn’t get in your way. You hardly notice the code is under source control. read more...

add a comment |category: |Views: 19

tags: another

Generate c# Enums From Your SQL Database(wijix.com)

submitted by pjacobspjacobs(375) 2 years, 8 months ago

Many developers like to stick their data inside the database and load their combo boxes and other application data from it. There are lots of reasons for doing so such as localizing your data or maybe you can’t write to the local file system for whatever reason. In my case the local file system was untouchable. read more...

add a comment |category: |Views: 40

tags: another

Ayende's Localization Solution using NHibernate(ayende.com)

submitted by pjacobspjacobs(375) 3 years, 5 months ago

using NHibernate 1.2 you can globalize / localize your software externally with little change to your code. This is a very elegant solution because you won't have to provide culture all over your stored procs and the like. read more...

add a comment |category: |Views: 393

tags: another

Highlight Current Line in Visual Studio 2008(wijix.com)

submitted by pjacobspjacobs(375) 3 years, 8 months ago

How to highlight the current line within Visual Studio using Resharper or SlickEdit Gadgets. Also shows the messed up highlighting that Resharper does on a dark themed visual studio. read more...

add a comment |category: |Views: 340

tags: another

Improve The Visual Studio Solution Explorer(wijix.com)

submitted by pjacobspjacobs(375) 3 years, 8 months ago

Improve The Visual Studio Solution Explorer using an addin called SonicFileFinder. Also a macro to collapse the solution explorer down to the project level. read more...

add a comment |category: |Views: 34

tags: another

Free License for the Dispatch Deployment Tool(wijix.com)

submitted by pjacobspjacobs(375) 4 years, 9 months ago

This is a web deployment tool similar to UnleashIt or West Winds web site configuration tool. Bobby DeRosa has kicked it up a notch by integrating it into Visual Studio. Get your FREE copy before he decides to stop giving it away when it becomes a new product. read more...

add a comment |category: |Views: 9

tags: another

Creating a Rules Processing Framework - Part 1 - The Rules Provider(wijix.com)

submitted by pjacobspjacobs(375) 4 years, 10 months ago

I will describe how to create a Rules Engine Framework using C#. It will take a few posts to describe the entire process but it's very cool and your going to want to read them all. In Part 1, I am going to describe the Rules Provider. read more...

add a comment |category: |Views: 80

tags: another

Debugging a Windows Service using Visual Studio .NET 2005(wijix.com)

submitted by pjacobspjacobs(375) 4 years, 10 months ago

Demonstrate how to allow Windows Services to be debugged using Visual Studio .NET 2005 read more...

4 comments |category: |Views: 56

tags: another