Showing posts with label c#. Show all posts
Showing posts with label c#. Show all posts

HTML HTML HTML

Posted: Friday, April 3, 2009 by Ric in Labels: , , ,
0

As my job becomes increasingly more and more related to developing and maintaining quraz.com, my interest in making validation easy has gone up a notch.

The trick is to make it so easy, you do it in a few seconds AND can delegate it to someone who is not as technical as yourself.

With this in mind, I found a cool way to help things a bit:

Add a bookmark to this code:

javascript:void(document.location='http://validator.w3.org/check?uri='+document.location);


That will validate the current page you are visiting.

As reccomended by Scott Hanselman here, a nice HTML validation Module

The rest is just up to the usual suspects: w3c

Happy 2009

Posted: Thursday, January 1, 2009 by Ric in Labels: , , ,
0

I have been quite busy lately, studying MOSS.

Recently I have found a neat CMS called SiteCore.

of the site, this link was extremely important...SharePoint Modules enabling the CMS to interact with SharePoint and MOSS Sites.

cubing

Posted: Tuesday, November 11, 2008 by Ric in Labels: , , ,
0

Found an interesting tutorial as to how to create cubes.

Shop Assistant

Posted: by Ric in Labels: , , , , , , , ,
0

...has been heavily updated:

1. New Pie Chart Displays Shop Unit Activity Ratio

2. Drill Down Statistics:

2.1 Number of Individual Units Reporting Activity (Grouped by Shop and Floor)

2.2 Pie Chart Updates on Shop and Floor Selection, showing the Unit Activity ratio

3. Added Lights Statistics (Excel)

4. Faster and more accurate with all sorts of IT buzzwords in the code:

5. Easy to See assumed Open/Close Times per Unit


Current Limitations:

1. The Shop Assistant Application only reports Light Usage on Floors that also had Unit Activity.

2. Only Reporting Time Calculated on Zone 1 of a Floor

(Some Reports will show a slightly lower Light Usage Reading than the Unit Activity Hours)

The Shop Assistant is a Building Automation Windows Application Tool I have developed that links to a TAC Continuum (Andover) DataBase System to display with a fully customized Graphical User Interface; its a reporting tool, with easy to use navigation and CSV (Excel) exports.

cool sdk

Posted: Tuesday, October 28, 2008 by Ric in Labels: , ,
0

play with this touchless sdk

visual studio IDE

Posted: Friday, October 24, 2008 by Ric in Labels: , , , , ,
0

wow this was interesting..


My Visual Studio 2008 kept crashing on my dual monitor desktop environment.
Steps:
  1. Maximize VSIDE2008 on Monitor 1
  2. Restore Size of VSIDE2008
  3. Move VSIDE2008 to Monitor 2
  4. Maximize VSIDE2008 on Monitor 2
*crash*

Fix:
Start/Run
regsvr32 C:\windows\system32\actxprxy.dll

Apparently, this gets (wrongly) unregistered by Office 2007 Installs and uninstalls..

helped by post from Coding Hillbilly

SharePoint Governance

Posted: Tuesday, October 21, 2008 by Ric in Labels: , , ,
0

Saw this link to CodePlex Sharepoint Governance by Bamboo Team Joel Oleson


Have to find the time to research it propperly.. seems useful

Periodic Table

Posted: by Ric in Labels: , , , , ,
0

Found this on my Ubuntu release the other day: gperiodic


Now thinking of making something like it on dotNet
(and make it more interactive, like q Quizz perhaps?)

ARF from the kid

Posted: by Ric in Labels: , , ,
0

This: ARF For SharePoint Seems really interesting.

Supposed to help with customizing SharePoint sites.

download page

Cool Tool

Posted: by Ric in Labels: , , , , , ,
0

This is in its Beta 1, and it seems great:

Research-Output Repository Platform

Impact Assessment Tool

Posted: Monday, October 20, 2008 by Ric in Labels: , , , , , ,
0


Added MSAGL functionality to my Impact Assessment Tool:

Posted: by Ric in Labels: , , , , ,
0


with a custom built field, one can extend the SharePoint List functionality to allow for hiding and showing a field based on a choice from a dropdown:











The idea is that, in this list, we have c_hide and Special columns attributed to special types I developed in C#.


c_hide is a column that we can hide, the column itself does not have meaningful data for an end user.

but when the SharePoint List Designer builds the SharePoint List, he or she would place the following XML on c_hide's description:


<options>
<add name="IT" >
<add field="ITField" visible="true" />
<add field="CCField" visible="true" />
</add>
<add name="Call Center" >
<add field="ITField" visible="false" />
<add field="CCField" visible="true" />
</add>
<add name="Finance" >
<add field="ITField" visible="false" />
<add field="CCField" visible="false" />
</add>
</options>

The XML above builds the Drop Down List in the Column "Special" and assigns the behaviours for hiding and showing the fields "CCField" and "ITField" accordingly to their visibility attributes.



The Field "ITField" disappears if the "Call Center" Option is selected:

another great blog

Posted: Friday, October 3, 2008 by Ric in Labels: , , , , , ,
0

Resource Dictionary

Posted: Friday, September 19, 2008 by Ric in Labels: , , , , , ,
0


My latest app at work:
Currently looking forward to having people test this internally.
still thinking of what to call it..
the end project should be:
"Impact Assessment Tool"
This:
1. Adds a list of resources.
2. Make one resource dependant on the other
3. vice-versa
4. Uses Nhibernate to talk to the DB (SQLServer2005)