Clarke Scott

<September 2008>
SuMoTuWeThFrSa
31123456
78910111213
14151617181920
21222324252627
2829301234
567891011


Navigation

2: Links

Subscriptions

Post Categories



Code (RSS)

Code
I have a new Blog

I have a new blog www.clarkescott.com

rss here http://www.clarkescott.com/SyndicationService.asmx/GetRss 

posted Monday, January 24, 2005 9:17 PM by ClarkeScott with 9 Comments

Are you an Australian developer using Skype

If your an Australian software developer and using Skype check out “The Skype List”.

http://weblogs.asp.net/autocrat/archive/2005/01/06/347548.aspx

 

posted Thursday, January 06, 2005 3:40 PM by ClarkeScott with 9 Comments

Roy Osherove - is podcasting well sort of

http://weblogs.asp.net/rosherove/

 

 

crm software customer relationship management software

posted Wednesday, December 29, 2004 2:04 PM by ClarkeScott with 8 Comments

I started a software company

 

http://www.clarkescott.com/PermaLink.aspx?guid=fed23ad9-7336-4822-8929-424cee8480f5

CRM Software, Customer Relationship Managment Software

posted Thursday, December 23, 2004 3:17 PM by ClarkeScott with 6 Comments

Another Aussie Podcast

New Australian Podcast

http://www.clarkescott.com/PermaLink.aspx?guid=745d755c-0e7c-4e75-9e15-2277c594cf1a

 

posted Thursday, December 23, 2004 1:36 PM by ClarkeScott with 9 Comments

GDay world request

http://www.clarkescott.com/PermaLink.aspx?guid=32b04793-3569-4711-a3ae-3790c9f7844c

 

 

crm software

crm software

crm software

crm software

crm software

crm software

crm software

 

posted Wednesday, December 22, 2004 9:56 PM by ClarkeScott with 6 Comments

New Blog

I had the domain clarkescott.com for years now but, when I started to blog Nov 2003 see my first blog post
I just signed up here and Donny Mack was a big help! Thank Donny. 

Last night I installed the dasBlog engine on my web site last night. So I'm “on the move”. www.clarkescott.com

I think I'II cross-post for awhile or at least provide a link to the post.

Now to tell Frank

posted Wednesday, December 22, 2004 8:01 PM by ClarkeScott with 8 Comments

2 new GDay World podcasts

Mitch Denny was “On the Pod”

http://www.clarkescott.com/default.aspx

posted Wednesday, December 22, 2004 12:54 PM by ClarkeScott with 0 Comments

Drop Shadow on a form

I perhaps a month ago I had created a drop shadow on a form but, I had forgotten how to do it and google was not bringing anything useful back.

In steps David Kean with an even better solution then the one I had http://davidkean.net/archive/2004/09/13/151.aspx

Thanks David

posted Saturday, December 18, 2004 2:20 PM by ClarkeScott with 0 Comments

String v String Builder

http://www.clarkescott.com/CommentView.aspx?guid=a995797f-1f0a-4725-88fa-8099c4c0f7e0

crm software customer relationship management

posted Wednesday, November 03, 2004 3:31 PM by ClarkeScott with 0 Comments

VS.Net 2005 - The Good, the great and the f.... beautiful

For the sake of balance, here is what I love about VS.Net 2005 and .Net 2.0

1: Partial classes, man this beautiful!
The fact that we can now seperate a classes into mutliple files rocks.

2: The little yellow lines that show you where a method starts and finishes.

3: Win Forms Strip controls. Menu strip, ToolbarStrip and the StatusStrip all come with renders and you can also built your own.
This means we can now build Win Forms skins easily.

4: Code Refactoring. “Encapsulate Field“ I love it.

5: Right click on a file tab “Close all windows except for this“. Now this may seem like a little feature but I'd like to meet the person who made this happen.

6: Document Outline. The document outline gives you a hierarchical view of your form. From here you can chnage the z order of controls on your form. I'd like to be able to double-click a control from within the Document Outline and have it take you to the properties of the control.

 

posted Friday, October 29, 2004 9:36 PM by ClarkeScott with 0 Comments

VS.Net 2005 - The thing I'd like to see

http://www.clarkescott.com/PermaLink.aspx?guid=420c2d20-fd0b-4b3d-97af-fff74f28e6b1

crm software customer relationship management

posted Friday, October 29, 2004 8:17 PM by ClarkeScott with 1 Comments

Datagrid Tooltip

http://www.clarkescott.com/PermaLink.aspx?guid=5b4b123e-abbc-4e42-a377-8aebc0b045b0

crm software customer relationship management

posted Tuesday, October 12, 2004 10:37 PM by ClarkeScott with 3 Comments

Article

http://www.gamespp.com/csharp/cSharpMultiThreading01.html

crm software customer relationship management

posted Monday, September 06, 2004 6:35 PM by ClarkeScott with 0 Comments

Backup utility

I lost about a weeks work last week!
Becuase of this I have become more interested in back ups.

So, does anyone know of a good backUP utility.
Don't tell me the backUp util that windows offers is a good util and I dont want to use VSS!

I would like something that will back up file as a save them.

Note to self : if no one responses. Do it yourself and dont tell any bastard about it (only joking....or are you![ -- sinister laugh -- ])

posted Tuesday, August 31, 2004 6:27 PM by ClarkeScott with 0 Comments

Dataset DataRelation Xml


private static void ProcessSomeData()
{

     /*******************************************************************************************************************************
    IN A GIVEN DIRECTORY WE HAVE TWO XML FILES. (1) HAS THE PARENT ITEMS (2) HAS THE CHILD ITEMS THE METHOD WILL TAKE THE TWO XML FILE AND
    GENERATE A DATASET WITH 2 DATATABLES AND A DATARELATION OBJECT FOR THE 2 TABLES DATATABLE (1) HAS ALL THE PARENT ITEMS. DATATABLE(2) HAS THE
    CHILD ITEMS 
    *******************************************************************************************************************************/
    try
   {
        DataSet dsTemp = new DataSet();
        //GET THE XML FILES
        DirectoryInfo dir = new DirectoryInfo(GlobalSettings.DesktopDirectory + GlobalSettings.SyncData + GlobalSettings.TransactionData);
        FileInfo[] fl = dir.GetFiles();
        //READ THE XML FILE INTO A DATASET THEN DELETE THE FILE
        foreach(FileInfo f in fl)
       {
           dsTemp.ReadXml(f.FullName, XmlReadMode.ReadSchema);
           File.Delete(f.FullName); 
       }
   
       //SETUP THE DATARELATION
       DataColumn parent = dsTemp.Tables["ParentItem"].Columns["ParentID"];
       DataColumn child = dsTemp.Tables["ChildItem"].Columns["ParentID"];
       DataRelation dRel = new DataRelation("Items",parent,child); dsTemp.Relations.Add(dRel);
       DataRow[] childRows; 

      foreach(DataRow myRow in dsTemp.Tables["Parent"].Rows)
      {
           DataSet ds = new DataSet("ParentItems");
           DataTable dtParent = new DataTable("Parent");
           DataTable dtChild = new DataTable("Child");
           dtParent = dsTemp.Tables["ParentItem"].Clone();
           dtChld = dsTemp.Tables["ChildItem"].Clone(); 
           dtParent.Rows.Add(myRow.ItemArray);
           childRows = myRow.GetChildRows("ParentItems");
       
           foreach(DataRow childRow in childRows)
          {
              dtParent.Rows.Add(childRow.ItemArray);
          }
          ds.Tables.Add(dtParent);
          ds.Tables.Add(dtChild);
          WriteThis(ds);
    }
 }
 catch(Exception ex)
 {
      //WRITE THE EXCEPTION TO THE LOG FILE
      CustomExceptionHandler.LogException(ex);
  }
}

private static void WriteThis(DataSet ds)
{
    //THIS METHOD WILL WRITE OUT EACH DATASET TO XML
    //EACH XML FILE WILL HAVE ONE PARENT ROW AND ALL ITS CHILD ROWS
    try
    {
        ds.WriteXml(GlobalSettings.DesktopDirectory + @"Transaction - " + forDevelopment + ".xml", XmlWriteMode.WriteSchema);
        forDevelopment++;
    }
    catch(Exception ex)
    {
        CustomExceptionHandler.LogException(ex);
    }
}

posted Tuesday, August 31, 2004 5:21 PM by ClarkeScott with 0 Comments

My new CODE category

I am adding this category for me to add links to articles, place some code for me to use.
It is not about showing you how good I am and therefore you may find from time to time some stuff that SUX!

Please be kind with your comments if you see anything wrong.

posted Monday, August 30, 2004 3:45 PM by ClarkeScott with 0 Comments




Powered by Dot Net Junkies, by Telligent Systems