Keith Sirmons

1,599
Reputation
279 views

Registered User

Name Keith Sirmons
Member for 1 year
Seen Dec 1 at 21:58
Website
Location Houston, TX
Age 32
OO VB/C#, learning SharePoint Developer.
Nov
25
awarded  Notable Question
Nov
24
awarded  Popular Question
Nov
18
answered How to Decompress nested GZip (TGZ) files in C#
Nov
5
asked Why is my OLE data source data not querying consistently?
Nov
4
awarded  Popular Question
Nov
2
comment How to split a byte array
Interesting. Too bad I didn't see this one when I was working on that project. Thanks for the info anyway.
Oct
12
comment How can I learn CSLA.NET Fast?
A little dated, but take a look at this: lhotka.net/weblog/… "ADO.NET EF ... works with entity objects - objects designed primarily as data containers." "CSLA .NET is all about creating business objects - objects designed primarily around the responsibilities and behaviors defined by a business use case. It is all about making it easy to build use case-derived objects that have business logic, validaiton rules and authorization rules."
Sep
28
awarded  Notable Question
Sep
14
comment Why is a SQL float different from a C# float
I suggest you start a new question and you will get better answers to your situation.
Aug
26
awarded  Popular Question
Aug
20
awarded  Popular Question
Aug
12
awarded  Yearling
Aug
11
comment Any decent C# profilers out there?
Do you have a link describing this loophole and how to capitalize on it?
Aug
6
comment How to convert a column number (eg. 127) into an excel column (eg. AA)
This code works well. It assumes Column A is columnNumber 1. I had to make a quick change to account for my system using Column A as columnNumber 0. I changed the line int dividend to int dividend = columnNumber + 1; Keith
Jul
30
awarded  Popular Question
Jul
16
asked How do I handle CLS-compliant within a Web Reference?
Jul
15
revised How do I write a While loop
deleted 621 characters in body
Jul
15
comment Switch Case on type of object (C#)
If you change the Type's Name during refactoring, you could introduce a bug that would not be caught until runtime.
Jul
9
awarded  Self-Learner
Jul
8
awarded  Nice Question
Jul
6
comment Why is the column name from a CSV file different than its DataTable?
Here is an example: object data = datatable.Rows[rowIndex][sourceColumnName.Replace(".", "#")];
Jul
6
comment Why is the column name from a CSV file different than its DataTable?
So, would you advise sourceColumnName.Replace(".", "#"); instead of trying to preserve the period?
Jul
6
asked Why is the column name from a CSV file different than its DataTable?
Jun
17
comment Why is my XML validation failing against its schema?
The issue wasn't the PrescribedTestDate.
Jun
17
comment Why is my XML validation failing against its schema?
Tried it and it works.... So why does this fix the problem?
Jun
17
comment Why is my XML validation failing against its schema?
It doesn't matter if PrescribedTestDate is in the XML file or not. The error is the same, stopping at the MRIDNumber element.
Jun
17
asked Why is my XML validation failing against its schema?
Jun
11
revised How to create a custom document library in SharePoint?
feature guid
Jun
11
answered How to create a custom document library in SharePoint?
Jun
11
asked How to create a custom document library in SharePoint?
Jun
10
accepted How do you read a byte array from a DataRow in C#?
Jun
9
awarded  Popular Question