User Rorschach - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T02:34:32Zhttp://stackoverflow.com/feeds/user/27908http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1829009/in-powerpoint-2007-how-can-i-position-a-callouts-tail-programatically0In Powerpoint 2007, how can I position a Callout's Tail programatically?Rorschach2009-12-01T21:21:04Z2009-12-02T19:16:29Z
<p>I'm looking at the XML and this is what it has for the Callout object's coordinates and geometry:</p>
<pre><code><p:spPr>
<a:xfrm>
<a:off x="2819400" y="5181600"/> // X,Y Position of Callout Box
<a:ext cx="609600" cy="457200"/> // Width,Height of Callout Box
</a:xfrm>
<a:prstGeom prst="wedgeRectCallout">
<a:avLst>
<a:gd name="adj1" fmla="val 257853"/> // X Position Of Tail
<a:gd name="adj2" fmla="val -532360"/> // Y Position of Tail
</a:avLst>
</a:prstGeom>
<a:solidFill>
<a:schemeClr val="accent1">
<a:alpha val="50000"/>
</a:schemeClr>
</a:solidFill>
</p:spPr>
</code></pre>
<p>What I'm having trouble with is the formula for telling it to place the tail at a particular coordinate on the slide. I've tried this to calculate it, but it does not work correctly.</p>
<pre><code>//This gives me the distance between the Coordinate and the Center of the Callout.
DistanceX = Coordinate.X - (Callout.X + Callout.X_Ext)/2
DistanceY = Coordinate.Y - (Callout.Y + Callout.Y_Ext)/2
</code></pre>
<p>But, the geometric value is not the distance between the two points.</p>
<p>Anybody know what the formula is for calculating this?</p>
http://stackoverflow.com/questions/1829009/in-powerpoint-2007-how-can-i-position-a-callouts-tail-programatically/1829836#18298360Answer by Rorschach for In Powerpoint 2007, how can I position a Callout's Tail programatically?Rorschach2009-12-02T00:07:21Z2009-12-02T00:07:21Z<p>I think I've figured out the formula:</p>
<pre><code>DistanceX = Coordinate.X - (Callout.X + (Callout.X_Ext/2))
DistanceY = Coordinate.Y - (Callout.Y + (Callout.Y_Ext/2))
TailX = (DistanceX/Callout.X_Ext) * 100000
TailY = (DistanceY/Callout.Y_Ext) * 100000
</code></pre>
http://stackoverflow.com/questions/1101109/is-saving-one-controls-value-to-the-database-better-than-saving-all-controls0Is saving one control's value to the database better than saving all controls?Rorschach2009-07-08T23:36:10Z2009-10-26T05:00:09Z
<p>I came across this a few times in my career and never really found an answer. My question is in regards to a web form that contains multiple controls that the user can update, and then saves the data to a database (easiest example I can think of right now is a user profile form - see SO profile edit screen).</p>
<p>So far, I have always just saved every control's value to the database. To me, it seems easier to have one method that calls one stored procedure, passing all the page's form values in.</p>
<p>I have seen pages that seem to save the individual control's value, rather than the entire set of controls. It can definitely look nice (if the page is doing it through AJAX), but is it better? I would think you would need more overhead to get this done, like one (or many?) DTO, more methods, and more stored procedures?</p>
<p>Which way is better? And are there any examples of how the individual control way is done?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1598035/datetime-manipulation-in-sql-server-execute-spexecutesql/1598057#15980574Answer by Rorschach for DateTime manipulation in SQL Server EXECUTE sp_executesqlRorschach2009-10-21T00:15:25Z2009-10-21T00:15:25Z<p>You need to declare a variable, I think it has trouble with using a function:</p>
<pre><code>DECLARE @endDate as datetime
SET @endDate = GETDATE()
EXECUTE sp_executesql
N'SELECT TOP 10 * FROM dbo.Items WHERE DateCreated BETWEEN @start AND @end'
, N'@start DATETIME, @end DATETIME'
, @start = '20091001'
, @end = @endDate
</code></pre>
http://stackoverflow.com/questions/1406282/simpler-regex-for-parsing-microsoft-file-checksum-integrity-verifier-output0Simpler Regex for parsing Microsoft File Checksum Integrity Verifier output?Rorschach2009-09-10T16:20:59Z2009-09-10T16:49:27Z
<p>I want to parse out each modified file that is reported during FCIV's verification process.</p>
<p>It comes out like this:</p>
<p>"Microsoft Windows XP [Version 5.1.2600]\r\n(C) Copyright 1985-2001 Microsoft Corp.\r\n\r\nC:\MD5Checksum>C:\MD5Checksum\fciv.exe -v -xml db.xml\r\n//\r\n// File Checksum Integrity Verifier version 2.05.\r\n//\r\nStarting checksums verification : 09/10/2009 at 11h19'30\r\r\n\r\r\nList of modified files:\r\r\n-----------------------\r\r\nc:\md5checksum\readme.txt \r\r\n\tHash is\t\t: e2c6d562bd35352b73c00a744e9c07c6\r\r\n\tIt should be\t: 79ac8d043dc8739f661c45cc33fc07ac\r\r\n\r\nc:\md5checksum\fciv.exe \r\r\n\tHash is\t\t: 79ac8d043dc8739f661c45cc33fc07ac\r\r\n\tIt should be\t: e2c6d562bd35352b73c00a744e9c07c6\r\r\n\r\n\r\r\nEnd Verification : 09/10/2009 at 11h19'30\r\r\n\r\r\n\r\nC:\MD5Checksum>"</p>
<p>Right now I'm using this as the Regex (which works fine), but I'm wondering if there is a simpler way?</p>
<pre><code>".*(\r\r\n\t)(Hash)( )(is)[\t]{2}(:)( )[a-zA-Z0-9]{32}(\r\r\n\t)(It)( )(should)( )(be)[\t](:)( )[a-zA-Z0-9]{32}"
</code></pre>
http://stackoverflow.com/questions/1208560/how-to-wait-on-events-on-a-second-thread/1208616#12086161Answer by Rorschach for How to wait on events on a second threadRorschach2009-07-30T18:57:55Z2009-07-30T18:57:55Z<p>Pulled from <a href="http://msdn.microsoft.com/en-us/library/aa645740%28VS.71%29.aspx" rel="nofollow">MSDN</a></p>
<pre><code>Worker worker = new Worker();
Thread thread = new ThreadStart(worker.Run);
thread.Start();
// Not sure if you need this while
while (!oThread.IsAlive);
oThread.Join();
Console.ReadLine();
</code></pre>
http://stackoverflow.com/questions/1203406/whats-the-difference-between-these-two-lines-c/1203436#12034360Answer by Rorschach for What's the difference between these two lines? (C#)Rorschach2009-07-29T22:29:50Z2009-07-29T22:29:50Z<p>myData is already declared as a field of IntIndexer class, so you don't have to redeclare it in the constructor. The class understands that it is referencing its own field.</p>
http://stackoverflow.com/questions/1201662/when-not-to-use-pop-ups3When not to use pop ups?Rorschach2009-07-29T16:58:44Z2009-07-29T18:41:16Z
<p>I remember reading an article about when to use and when not to use pop ups (javascript alerts, pop up windows, etc.) in web development, but I can't find it anywhere. I thought the general rule was something along the lines of "if it's annoying to the user, don't use it."</p>
<p>What's the common consensus on this?</p>
http://stackoverflow.com/questions/1201662/when-not-to-use-pop-ups/1201764#12017643Answer by Rorschach for When not to use pop ups?Rorschach2009-07-29T17:13:18Z2009-07-29T17:13:18Z<p>One of the arguments I'm dealing with is the scenario of "User Saved X, show alert window stating Save was successful."</p>
<p>I'm arguing that it should just be a message displayed on the page, along with any other informative messages.</p>
<p>It just doesn't seem right to force the user to click "OK" on an alert window for a piece of trivial information.</p>
http://stackoverflow.com/questions/1190487/how-do-i-listen-to-a-mocked-objects-event2How do I listen to a mocked object's event?Rorschach2009-07-27T20:40:51Z2009-07-28T21:11:08Z
<p>I'm doing some unit tests for a controller, and I'm mocking the business component. The BC has a public event that I have the controller listening to when the controller is constructed. </p>
<p>The problem I'm having is I keep getting an Expectation error stating:
"IBC.add_MessageRaised(MessageEventHandler) Expected#:1 Actual#:0".</p>
<p>However, I don't have any expectation of that kind in my test. I'm wondering if it has to do with setting the Controller to listen to an event on a mocked object (the BC in this case). Is there another way I can get the Controller to listen to an event coming from a mock? </p>
<p>I'm also trying to think of a way to get the mock to raise the MessageRaised event, but that might be another question altogether.</p>
<p>Here is the code:</p>
<p>Business Component Interface</p>
<pre><code>public interface IBC
{
event MessageEventHandler MessageRaised;
XmlDocument GetContentXml(string path);
}
</code></pre>
<p>Controller</p>
<pre><code>private readonly IBC _bc;
public Controller(IBC bc)
{
_bc = bc;
_bc.MessageRaised += MessageWatch;
}
private void MessageWatch(object sender, MessageEventArgs e)
{
if (MessageRaised != null)
MessageRaised(sender, e);
}
</code></pre>
<p>Unit Test</p>
<pre><code>MockRepository Mockery = new MockRepository();
TFactory _tFac;
IView _view;
Presenter _presenter = new Presenter();
IBC _bc = Mockery.DynamicMock<IBC>();
Controller _controller = new Controller(_bc);
_tFac = new TFactory(Mockery);
_tFac.Create(ref _view, ref _presenter, ref _controller);
[Test]
public void View_OnGetContentXmlButtonClick_Should_SetXmlInView()
{
//SETUP
XmlDocument xmlDocument = new XmlDocument();
using ( Mockery.Record() )
{
SetupResult.For(_view.FilePath).Return("C:\Test.txt");
Expect.Call(_bc.GetContentXml("C:\Test.txt")).Return(xmlDocument);
_view.Xml = xmlDocument.InnerXml;
}
//EXECUTE
using ( Mockery.Playback() )
{
_presenter.View_OnGetContentXmlButtonClick();
}
}
</code></pre>
http://stackoverflow.com/questions/1190487/how-do-i-listen-to-a-mocked-objects-event/1195181#11951810Answer by Rorschach for How do I listen to a mocked object's event?Rorschach2009-07-28T16:17:58Z2009-07-28T16:17:58Z<p>I got it to work by combining a few things (not entirely sure how it works, but it does):</p>
<pre><code>IEventRaiser _raiser;
MockRepository Mockery = new MockRepository();
TFactory _tFac;
IView _view;
Presenter _presenter = new Presenter();
IBC _bc = Mockery.DynamicMock<IBC>();
_bc.MessageRaised += null;
_raiser = LastCall.GetEventRaiser();
Controller _controller = new Controller(_bc);
Mockery.BackToRecord(_bc,BackToRecordOptions.None);
_tFac = new TFactory(Mockery);
_tFac.Create(ref _view, ref _presenter, ref _controller);
</code></pre>
<p>This made the test in the question work, as well as letting me raise an event from the Mock object in other tests, like:</p>
<pre><code>[Test]
public void View_OnGetContentXmlButtonClick_When_FileDoesNotExist_Should_RelayMessage()
{
//SETUP
XmlDocument xmlDocument = new XmlDocument();
using (Mockery.Record())
{
SetupResult.For(_view.FilePath).Return("C:\Test.txt");
Expect.Call(_bc.GetContentXml("C:\Test.txt")).Return(null);
_view.Xml = xmlDocument.InnerXml;
_view.Message = MESSAGE_FILE_NOT_EXIST;
}
//EXECUTE
using (Mockery.Playback())
{
_presenter.View_OnGetContentXmlButtonClick();
_raiser.Raise(_bc, new MessageEventArgs(MESSAGE_FILE_NOT_EXIST));
}
}
</code></pre>
<p>Hope others find this useful!</p>
http://stackoverflow.com/questions/1172706/what-is-the-best-data-structure-for-tree-like-data-of-fixed-depth-in-c/1172899#11728991Answer by Rorschach for What is the best data structure for tree-like data of fixed depth in C#?Rorschach2009-07-23T16:20:44Z2009-07-23T16:20:44Z<p>Why not just make a TreeNode class?</p>
<pre><code>class TreeNode
{
private string _name;
private int _someNumber;
private int _uniqueId;
private List<TreeNode> _childNodes;
public string Name{get{return _name;}}
public int SomeNumber{get{return _someNumber;}}
public int UniqueId{get{return _uniqueId;}}
public List<TreeNode> ChildNodes{get{return _childNodes;}}
public void TreeNode(string name, int someNumber, int uniqueId)
{
_name=name;
_someNumber=someNumber;
_uniqueId = uniqueId;
_childNodes = new List<TreeNode>();
}
public void AddNode(TreeNode node)
{
_childNodes.Add(node);
}
// other code for deleting, searching, etc.
}
</code></pre>
http://stackoverflow.com/questions/1154541/find-nested-user-control/1154601#11546011Answer by Rorschach for Find nested User ControlRorschach2009-07-20T16:39:07Z2009-07-20T16:39:07Z<p>You want to call it from the page itself, so you'll have to expose the nested user control in the user control itself.</p>
<pre><code>public Control NestedUserControl
{
get{ return FindControl(nameOfUserControl);}
}
</code></pre>
<p>And in the code behind of the page just do:</p>
<pre><code>UserControl1.NestedUserControl
</code></pre>
http://stackoverflow.com/questions/1099805/asp-code-to-execute-stored-proc/1099849#10998490Answer by Rorschach for ASP code to execute Stored Proc Rorschach2009-07-08T18:38:52Z2009-07-08T18:38:52Z<p>You need to specify a connection string.</p>
<pre><code>conn.ConnectionString = "MyDatabase"
</code></pre>
http://stackoverflow.com/questions/1033570/what-are-the-differences-between-a-web-service-and-a-windows-service1What are the differences between a web service and a Windows service?Rorschach2009-06-23T16:05:50Z2009-06-26T02:13:01Z
<p>What are the differences between a web service and a Windows service?</p>
<p>My experience has mostly been with Windows services, and I have never created a web service. </p>
<p>Do web services behave similarly to Windows services?<br />
Can they have scheduling, run at certain times, etc.?<br />
When you would use a web service in place of a Windows service, and vice versa?</p>
http://stackoverflow.com/questions/1015411/winforms-radiobuttonlist-doesnt-exist0WinForms RadioButtonList doesn't exist?Rorschach2009-06-18T21:55:11Z2009-06-18T22:03:51Z
<p>I know that WebForms has a RadioButtonList control, but I can't find one for WinForms. What I need is to have 3 RadioButtons grouped together, so that only 1 can be selected at a time. I'm finding that I have to do this through code, which is a pain. Am I just not seeing RadioButtonList somewhere, or does it really not exist in WinForms?</p>
http://stackoverflow.com/questions/982026/set-similar-object-properties-in-another-object0Set similar object properties in another object.Rorschach2009-06-11T16:05:26Z2009-06-11T17:00:51Z
<p>I have two objects that contain some properties that are exactly the same (same name, type). What I want to do is populate one object's identical properties with another object's properties. I am trying to do this in code, but it's not working. The Bin object's properties are not being set.</p>
<pre><code>class Basket{
public Basket(int itemId, int itemGroup){
ItemId=itemId;
ItemGroup=itemGroup;
}
private int _itemId;
private int _itemGroup;
public int ItemId{ get{return _itemId;} set{_itemId = value};}
public int ItemGroup{ get{return _itemGroup;} set{_itemGroup = value};}
}
struct Bin{
public string Name;
private int _itemId;
private int _itemGroup;
public int ItemId{ get{return _itemId;} set{_itemId = value};}
public int ItemGroup{ get{return _itemGroup;} set{_itemGroup = value};}
public bool IsEmpty;
}
Basket basket = new Basket(1,1);
Bin bin = new Bin();
PropertyInfo[] basketPI = basket.GetType().GetProperties();
PropertyInfo[] binPI = bin.GetType().GetProperties();
foreach(PropertyInfo biPI in binPI){
foreach(PropertyInfo baPI in basketPI){
if(baPI.Name==biPI.Name){
biPI.SetValue(bin,baPI.GetValue(basket,null),null));
}
}
}
</code></pre>
<p>I'm trying to get away from simply doing:</p>
<pre><code>object1.ItemId = object2.ItemId;
object1.ItemGroup = object2.ItemGroup;
</code></pre>
<p>I'm also wondering if there is a more elegant way to do this?</p>
<p>EDIT: I shorthanded the classes; meant to have the get/set in there.</p>
<p>EDIT: Changed to struct from object. For some reason it doesn't like setting the struct's properties when I do this.</p>
http://stackoverflow.com/questions/952391/how-do-i-trim-these-fields-of-quotation-marks-in-sql-server/952425#9524250Answer by Rorschach for How do I trim these fields of quotation marks in SQL Server?Rorschach2009-06-04T18:54:16Z2009-06-04T18:54:16Z<pre><code>UPDATE TableName
SET Field1 = MID(Field1,2)
Field2 = MID(Field2,1,LEN(Field2)-1)
</code></pre>
http://stackoverflow.com/questions/947362/looking-for-c-audio-analysis-libraries/947435#9474350Answer by Rorschach for Looking for C# audio analysis librariesRorschach2009-06-03T21:43:25Z2009-06-03T21:43:25Z<p>This <a href="http://www.codeproject.com/KB/audio-video/SoundViewer.aspx?fid=448560&df=90&mpp=25&noise=3&sort=Position&view=Quick&select=2202971" rel="nofollow">CodeProject</a> article has code that can grab amplitude and frequency. Not sure if that covers everything you need.</p>
http://stackoverflow.com/questions/608585/can-someone-explain-microsoft-unity2Can someone explain Microsoft Unity?Rorschach2009-03-03T22:54:15Z2009-05-26T00:52:29Z
<p>I've been reading the articles on MSDN about Unity (Dependency Injection, Inversion of Control), but I think I need it explained in simple terms (or simple examples). I'm familiar with the MVPC pattern (we use it here), but I just can't really grasp this Unity thing yet, and I think it's the next step in our application design.</p>
http://stackoverflow.com/questions/587488/handling-hierarchy-data-in-database6Handling Hierarchy Data in DatabaseRorschach2009-02-25T19:38:19Z2009-03-07T05:16:17Z
<p>I'm curious to know what the best way (best practice) to handle hierarchies are in regards to database design. Here is a small example of how I usually handle them.</p>
<p><strong>Node Table</strong></p>
<pre><code>NodeId int PRIMARY KEY
NodeParentId int NULL
DisplaySeq int NOT NULL
Title nvarchar(255)
</code></pre>
<p><strong>Ancestor Table</strong></p>
<pre><code>NodeId int
AncestorId int
Hops int
</code></pre>
<p>with Indexes on NodeId, AncestorId, Hops</p>
<p>Tables look like this:</p>
<p><strong>Node Table</strong></p>
<pre><code>NodeId NodeParentId DisplaySeq Title
1 NULL 1 'Root'
2 1 1 'Child 1'
3 1 2 'Child 2'
4 2 1 'Grandchild 1'
5 2 2 'Grandchild 2'
</code></pre>
<p><strong>Ancestor Table</strong></p>
<pre><code>NodeId AncestorId Hops
1 NULL 0
1 1 0
2 1 1
2 2 0
3 1 1
3 3 0
4 1 2
4 2 1
4 4 0
5 1 2
5 2 1
5 5 0
</code></pre>
<p>With this design, I've found that with large hierarchies I can get an entire section of the hierarchy very quickly by joining on the Ancestor table for AncestorId = target NodeId, like:</p>
<pre><code>SELECT *
FROM Node n
INNER JOIN Ancestor a on a.NodeId=n.NodeId
WHERE a.AncestorId = @TargetNodeId
</code></pre>
<p>It's also easy to get direct children as well</p>
<pre><code>SELECT *
FROM Node n
INNER JOIN Ancestor a on a.NodeId=n.NodeId
WHERE a.AncestorId = @TargetNodeId
AND Hops = 1
</code></pre>
<p>I'm interested in knowing what other solutions you may have used for this type of thing. In my experience, hierarchies can get pretty hairy, and any way to optimize their retrieval is very important.</p>
http://stackoverflow.com/questions/612454/is-it-ok-to-give-users-no-way-to-change-their-password/612638#6126380Answer by Rorschach for Is it OK to give users no way to change their password?Rorschach2009-03-04T21:55:42Z2009-03-04T21:55:42Z<p>It's easier to make a machine memorize something a human makes, than to make a human memorize something a machine makes.</p>
http://stackoverflow.com/questions/595603/how-to-make-single-where-condition-for-this-sql-query/595664#5956641Answer by Rorschach for How to make single where condition for this SQL query?Rorschach2009-02-27T17:07:49Z2009-02-27T17:26:34Z<p>Could do a LEFT JOIN in there, like this:</p>
<pre><code>INSERT INTO @search_temp_table
SELECT *
FROM (
SELECT d.DataId,
c.[Name] as 'Category',
d.Description, d.CompanyName, d.City, d.CategoryId,
d.CreatedOn, d.Rank, d.voteCount, d.commentCount, d.viewCount
FROM Data d
INNER JOIN Keyword k ON d.DataId = k.DataId
LEFT JOIN Category c on c.CategoryId=d.CategoryId
AND c.CategoryId=@CategoryId
WHERE FREETEXT(k.Keyword, @SearchQ)
AND d.IsSearch=1
AND d.IsApproved=1
) AS Search_Data
</code></pre>
<p>you wouldn't need the if statement anymore either.</p>
<p>Also, it's very important that you have the c.CategoryId=@CategoryId within the LEFT JOIN, if you move it to the WHERE clause it will force the LEFT JOIN into an INNER JOIN.</p>
http://stackoverflow.com/questions/595526/how-can-i-become-better-at-negotiation/595609#5956091Answer by Rorschach for How can I become better at negotiation?Rorschach2009-02-27T16:54:05Z2009-02-27T16:54:05Z<p>Be more prepared. The more information you have about a) what your employer/co-worker/manager wants and b) what you can bring to the table the better. Know what you want (be specific, do not beat around the bush or give subtle hints), and know what your employer wants, and know what the industry wants.</p>
<p>Know your wants/needs, what do you expect to get out of this negotiation? Set goals for your negotiation, and have facts on hand to justify your goal (i.e. I want to get paid more.) How much more? Why? Answers to this lie in a) your skills, b) employer's desired skills, c) industries' desired skills, d) employer's ability to pay your for desired skills, and e) industries' ability to pay you for desired skills.</p>
<p>You need to have all the facts before going into a negotiation, if you don't you will not succeed in attaining your goals. Not only this, but if you go into a negotiation unprepared, the other side will associate this with future tasks. They may not directly state it, but think about it - if someone came up to you and said "I want $50 from you", and you ask why, and they say "because I just want it", you're going to say no (unless they're wielding a knife or gun... then negotiation is out the window at that point anyway!), and you're also going to associate untrustworthiness to the person, at least subconsciously.</p>
http://stackoverflow.com/questions/586829/change-color-of-button-in-datagridview-cell/587208#5872080Answer by Rorschach for Change Color of Button in DataGridView CellRorschach2009-02-25T18:26:18Z2009-02-25T18:26:18Z<p>I think you're accessing it wrong:</p>
<pre><code>row.Cells[2].Style.BackColor = System.Drawing.Color.Red;
</code></pre>
<p>you say updates the "outline" of the button, but it's really updating the cell behind the button.</p>
<p>something like this should work:</p>
<pre><code>row.Cells[2].ButtonName.Style.BackColor = System.Drawing.Color.Red;
</code></pre>
http://stackoverflow.com/questions/583540/asp-net-gridview-with-all-records-editable/583622#5836221Answer by Rorschach for ASP.NET Gridview with all records editable.Rorschach2009-02-24T21:08:56Z2009-02-24T21:08:56Z<p>Gridview is going to be the easiest way to implement this. You <em>could</em> use an html table, but when the user wants to add more users you're going to have to do a lot more. Create a template for the gridview with your four properties (Id, FirstName, LastName, Email), and then just bind it from the session object like:</p>
<pre><code>public void BindGrid()
{
// assume students is the name of your GridView control
students.DataSource = (List<Student>)Session["StudentList"];
students.DataBind();
}
</code></pre>
http://stackoverflow.com/questions/558721/css-classes-subclasses2CSS Classes & SubClassesRorschach2009-02-17T21:07:13Z2009-02-18T13:39:29Z
<p>Is it possible, other than what I'm doing because it doesn't seem to work, to do this? I want to be able to have subclasses that are under a class to use the CSS specifically for that class.subclass.</p>
<p>CSS</p>
<pre><code>.area1
{
border:1px solid black;
}
.area1.item
{
color:red;
}
.area2
{
border:1px solid blue;
}
.area2.item
{
color:blue;
}
</code></pre>
<p>HTML</p>
<pre><code><div class="area1">
<table>
<tr>
<td class="item">Text Text Text</td>
<td class="item">Text Text Text</td>
</tr>
</table>
</div>
<div class="area2">
<table>
<tr>
<td class="item">Text Text Text</td>
<td class="item">Text Text Text</td>
</tr>
</table>
</div>
</code></pre>
<p>So that I can just use class="item" for the elements under the parent css class "area1","area2". I know I can use class="area1 item" to get this to work, but I don't understand why it has to be so verbose about it. Shouldn't the css subclass look at what parent class it is under in order to define it?</p>
<p>Note: this works in IE (using 7 right now), but in FF it does not, so I'm assuming this isn't a CSS standard way of doing something.</p>
http://stackoverflow.com/questions/541870/is-it-possible-manage-developers-with-high-turnover-if-you-cant-lower-the-turnov/542005#5420053Answer by Rorschach for Is it possible manage developers with high turnover if you can't lower the turnover rate?Rorschach2009-02-12T16:04:55Z2009-02-12T16:04:55Z<ol>
<li>This is a relative question, and should be taken on a case-by-case basis. If the new hire already knows Perl, you don't need to go over this piece of training (yes, you could put Perl as a mandatory prerequisite, but that would significantly limit your applicant pool), and their first bit of training should be something like fixing a bug in an existing application or walking them through an application they will maintain. Though, given that the developers are only there for a year makes me think the development styles are going to vary some (if not a lot).</li>
<li>Getting the new person up to speed with your process is very important, as long as your process <em>works</em>. In this high turnover environment, you should put a strong emphasis on documentation in your process. A Wiki is a great thing to have for this documentation, since it's centralized and any of the developers can access it. Having them try to figure out how a project works by themselves (with little to no documentation) is a waste of both their time and your time.</li>
</ol>
http://stackoverflow.com/questions/533560/creating-a-class-to-use-for-populating-drop-down-lists-grids-etc-in-c/533703#5337032Answer by Rorschach for Creating a class to use for populating drop-down lists, grids, etc., in C#Rorschach2009-02-10T19:06:44Z2009-02-10T19:06:44Z<p>You can create a class that lets you call stored procedures (this is known as a Data Access Component (DAC) class, which is usually referenced by a Business Component (BC) class, but it is outside the scope of your question).</p>
<p>There are a few objects you will want to use in this new class:
Microsoft.Practices.EnterpriseLibrary.Data.Database
Microsoft.EnterpriseLibrary.Data.DatabaseFactory
System.Data.Common.DBCommand</p>
<p>The DAC class will look similar to what you have:</p>
<pre><code>public class DataAccess
{
public DataAccess()
{
}
public System.Collections.IEnumerable GetSchoolData()
{
string connectionString = ConfigurationManager.ConnectionStrings["MyConnectionString"].ConnectionString;
Database db = DatabaseFactory.CreateDatabase(connectionString);
string sqlCommand = "GetSchoolData";
DbCommand comm = db.GetStoredProcCommand(sqlCommand);
//db.AddInParameter(comm, "SchoolId", DbType.Int32); // this is in case you want to add parameters to your stored procedure
return db.ExecuteDataSet(comm);
}
}
</code></pre>
<p>And your page code will look like this:</p>
<pre><code>public class SchoolPage : Page
{
public void Page_Init(object sender, EventArgs e)
{
DataAccess dac = new DataAccess();
cmbEditSchool.DataSource = dac.GetSchoolData();
cmbEditSchool.DataBind();
}
}
</code></pre>
<p>Note that this is just to help you learn how to do this. It is not a good approach to development because you are opening up your Data Access Layer to the outside world (which is bad).</p>
http://stackoverflow.com/questions/209686/passing-list-to-sql-stored-procedure6Passing List<> to SQL Stored ProcedureRorschach2008-10-16T18:20:30Z2009-01-21T20:48:47Z
<p>I've often had to load multiple items to a particular record in the database. For example: a web page displays items to include for a single report, all of which are records in the database (Report is a record in the Report table, Items are records in Item table). A user is selecting items to include in a single report via a web app, and let's say they select 3 items and submit. The process will add these 3 items to this report by adding records to a table called ReportItems (ReportId,ItemId).</p>
<p>Currently, I would do something like this in in the code:</p>
<pre><code>public void AddItemsToReport(string connStr, int Id, List<int> itemList)
{
Database db = DatabaseFactory.CreateDatabase(connStr);
string sqlCommand = "AddItemsToReport"
DbCommand dbCommand = db.GetStoredProcCommand(sqlCommand);
string items = "";
foreach (int i in itemList)
items += string.Format("{0}~", i);
if (items.Length > 0)
items = items.Substring(0, items.Length - 1);
// Add parameters
db.AddInParameter(dbCommand, "ReportId", DbType.Int32, Id);
db.AddInParameter(dbCommand, "Items", DbType.String, perms);
db.ExecuteNonQuery(dbCommand);
}
</code></pre>
<p>and this in the Stored procedure:</p>
<pre><code>INSERT INTO ReportItem (ReportId,ItemId)
SELECT @ReportId,
Id
FROM fn_GetIntTableFromList(@Items,'~')
</code></pre>
<p>Where the function returns a one column table of integers.</p>
<p>My question is this: is there a better way to handle something like this? Note, I'm not asking about database normalizing or anything like that, my question relates specifically with the code.</p>
http://stackoverflow.com/questions/1702052/ways-to-prevent-over-engineering/1702063#1702063Comment by Rorschach on Ways to prevent over-engineering?Rorschach2009-11-09T16:43:52Z2009-11-09T16:43:52ZI like the whooshing sound they make as they fly by.http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/806656#806656Comment by Rorschach on What coding mistakes are a telltale giveaway of an inexperienced programmer?Rorschach2009-11-05T19:40:17Z2009-11-05T19:40:17ZIt gets real fun when people copy/paste your code that has your initials in it, modify it, and then when it doesn't work you get to deal with it.http://stackoverflow.com/questions/1597988/how-do-you-explain-the-fashionable-cool-job-title-names/1598000#1598000Comment by Rorschach on How do you explain the fashionable "cool" job title names?Rorschach2009-10-21T00:18:36Z2009-10-21T00:18:36ZImagine your client-facing associates telling the client "Let me ask the assassin about that."http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/81717#81717Comment by Rorschach on What's Your Motto As A Developer/Programmer?Rorschach2009-10-14T20:54:15Z2009-10-14T20:54:15ZOh man, I hate when people use this quote to defend crappy software that really doesn't follow this.http://stackoverflow.com/questions/1406282/simpler-regex-for-parsing-microsoft-file-checksum-integrity-verifier-output/1406357#1406357Comment by Rorschach on Simpler Regex for parsing Microsoft File Checksum Integrity Verifier output?Rorschach2009-09-10T18:50:19Z2009-09-10T18:50:19ZWorks perfectly, thanks! I'm relatively new to regex, so it's a bit confusing.http://stackoverflow.com/questions/1336107/applying-operators-to-non-mathematical-objects/1336114#1336114Comment by Rorschach on Applying operators to non-mathematical objects?Rorschach2009-08-26T17:21:44Z2009-08-26T17:21:44ZShouldn't the Add method be returning a MyClass and not the added Prop values?
http://stackoverflow.com/questions/1209636/how-are-intellectual-property-patents-enforced-on-the-internet/1209653#1209653Comment by Rorschach on How are intellectual property/patents enforced on the Internet?Rorschach2009-07-30T22:25:12Z2009-07-30T22:25:12ZYou forgot the other if ( $your_money > $their_money) part, though.http://stackoverflow.com/questions/1208058/ideas-needed-for-variables-that-used-on-all-pages-c-site/1208068#1208068Comment by Rorschach on Ideas needed for variables that used on all pages c# siteRorschach2009-07-30T17:57:13Z2009-07-30T17:57:13Zclass PageExtented : Page
{
// your properties here...
}http://stackoverflow.com/questions/1201662/when-not-to-use-pop-ups/1201680#1201680Comment by Rorschach on When not to use pop ups?Rorschach2009-07-29T17:07:35Z2009-07-29T17:07:35ZRight, I was saying anything that "pops up" (user's tend to just say that). :)http://stackoverflow.com/questions/1190487/how-do-i-listen-to-a-mocked-objects-event/1193299#1193299Comment by Rorschach on How do I listen to a mocked object's event?Rorschach2009-07-28T16:22:42Z2009-07-28T16:22:42ZThank you! The other question helped out some since I didn't know about the BackToRecord() method.http://stackoverflow.com/questions/1172706/what-is-the-best-data-structure-for-tree-like-data-of-fixed-depth-in-cComment by Rorschach on What is the best data structure for tree-like data of fixed depth in C#?Rorschach2009-07-23T15:54:53Z2009-07-23T15:54:53ZAre you anticipating doing searches on the tree?http://stackoverflow.com/questions/970702/adding-rowguid-column-broke-this-stored-procedure/1131579#1131579Comment by Rorschach on Adding rowguid column broke this Stored Procedure?Rorschach2009-07-15T16:08:41Z2009-07-15T16:08:41ZI think you can just use SET @newPlanID = scope_identity()http://stackoverflow.com/questions/970702/adding-rowguid-column-broke-this-stored-procedure/1131579#1131579Comment by Rorschach on Adding rowguid column broke this Stored Procedure?Rorschach2009-07-15T15:24:10Z2009-07-15T15:24:10ZNo, you don't have to explicitly list columns that have Default values, as SQL will default them to a value. Make sure you're not listing an IDENTITY column that has auto-increment on, however.http://stackoverflow.com/questions/1099330/c-updatepanel-with-timer-pageloadComment by Rorschach on c# updatepanel with timer page_loadRorschach2009-07-08T17:09:07Z2009-07-08T17:09:07ZWhat is the timer_tick code doing?http://stackoverflow.com/questions/1087105/how-to-compare-values-in-arrayComment by Rorschach on How to Compare Values in ArrayRorschach2009-07-06T14:10:53Z2009-07-06T14:10:53ZI think this question has been asked before...