User vanslly - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T09:22:07Zhttp://stackoverflow.com/feeds/user/27765http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/202079/wpf-versus-winforms15WPF versus Winformsvanslly2008-10-14T17:28:35Z2009-11-07T17:23:23Z
<ol>
<li>What are the advantages and disadvantages between using WPF (Windows Presentation Foundation) over Winforms?</li>
<li>What are the considerations that need to be made when choosing between the two?</li>
</ol>
<p>Thanks.</p>
http://stackoverflow.com/questions/1418630/how-to-prevent-sql-injection/1418634#14186344Answer by vanslly for How to Prevent SQL Injection?vanslly2009-09-13T19:25:49Z2009-09-13T19:25:49Z<p>Parameterized Queries</p>
http://stackoverflow.com/questions/729267/rhino-mocks-assertwascalled-multiple-times-on-property-getter-using-aaa/1390886#13908860Answer by vanslly for Rhino Mocks AssertWasCalled (multiple times) on property getter using AAA.vanslly2009-09-07T20:40:49Z2009-09-07T20:40:49Z<p>Depending on your version of Rhino you are using, you can use:</p>
<pre><code>// Call to mock object here
LastCall.IgnoreArguments().Repeat.Never();
</code></pre>
http://stackoverflow.com/questions/1364763/obtaining-clientcredentials-from-wcf-operation0Obtaining ClientCredentials from WCF operationvanslly2009-09-01T21:36:49Z2009-09-02T00:09:27Z
<p>My WCF Service uses a custom credentials validator for custom Message-based security, because I want to ensure each client calling an operation on my web service has a corresponding username and password in my database.</p>
<pre><code>Imports System.IdentityModel.Selectors
Imports System.IdentityModel.Tokens
Public Class CredentialsValidator
Inherits UserNamePasswordValidator
Public Overrides Sub Validate(ByVal userName As String, ByVal password As String)
Dim authenticationApi As New AuthenticationGateway()
If Not authenticationApi.IsValid(userName, password) Then
Throw New SecurityTokenException("Validation Failed.")
End If
End Sub
End Class
</code></pre>
<p>Thing is, once the user passes authentication I want to use the userName in my OperationContract implementations to make context based calls.</p>
<pre><code><ServiceContract(Name:="IMyService")> _
Public Interface IMyService
<OperationContract()> _
Function GetAccountNumber() As String
End Interface
Public Class IntegrationService
Implements IIntegrationService
Public Function GetAccountNumber() As String Implements IMyService.GetAccountNumber
Dim userName As String '' Here I want the userName set from credentials
Dim accountApi As New AccountGateway()
Return accountApi.GetAccountNumber(userName)
End Function
End Class
</code></pre>
<p>I cant rely on the honesty of the callees to specify their actual userName so can't pass it without also passing in a password. I wanted to avoid having every single call to my web service having to accept the ClientCredentials.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1364763/obtaining-clientcredentials-from-wcf-operation/1365161#13651611Answer by vanslly for Obtaining ClientCredentials from WCF operationvanslly2009-09-01T23:30:42Z2009-09-01T23:30:42Z<pre><code>Public Class IntegrationService
Implements IIntegrationService
Private ReadOnly Property UserName As String
Get
Return ServiceSecurityContext.Current.PrimaryIdentity.Name
End Get
End Property
Public Function GetAccountNumber() As String Implements IMyService.GetAccountNumber
Dim accountApi As New AccountGateway()
Return accountApi.GetAccountNumber(UserName)
End Function
End Class
</code></pre>
http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class3What's the best way to change the namespace of a highly referenced class?vanslly2009-05-12T03:44:45Z2009-08-24T16:10:05Z
<p>I am attempting to move a highly referenced class from one namespace to another. Simply moving the file into the new project which has a different root namespace results in over 1100 errors throughout my solution.</p>
<p>Some references to the class involve fully qualified namescape referencing and others involve the importing of the namespace.</p>
<p>I have tried using a refactoring tool (Refactor Pro) to rename the namespace, in the hope all references to the class would change, but this resulted in the aforementioned problem.</p>
<p>Anyone have ideas of how to tackle this challenge without needing to drill into every file manually and changing the fully qualified namespace or importing the new one if it doesn't exist already?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/670566/path-combine-absolute-with-relative-path-strings/1299356#12993562Answer by vanslly for Path.Combine absolute with relative path stringsvanslly2009-08-19T11:33:41Z2009-08-19T11:33:41Z<p><strong>What Works:</strong></p>
<pre><code>string relativePath = "..\\bling.txt";
string baseDirectory = "C:\\blah\\";
string absolutePath = Path.GetFullPath(baseDirectory + relativePath);
</code></pre>
<p>(result: absolutePath="C:\blah\bling.txt") </p>
<p><strong>What doesn't work</strong></p>
<pre><code>string relativePath = "..\\bling.txt";
Uri baseAbsoluteUri = new Uri("C:\\blah\\");
string absolutePath = new Uri(baseAbsoluteUri, relativePath).AbsolutePath;
</code></pre>
<p>(result: absolutePath="C:/blah/bling.txt") </p>
http://stackoverflow.com/questions/555197/what-is-the-vb-net-select-case-statement-logic-with-case-or-ing2What is the VB.NET select case statement logic with case OR-ingvanslly2009-02-17T00:57:12Z2009-08-19T08:47:17Z
<p>When writing some vb code I tripped and I'm still left wondering why.
I was ORing the case expectation yet a value lieing within this range didn't warrant a match; why not?</p>
<p>Example Code:</p>
<pre><code> Select Case 2
Case 0
''// Some logic
Case 1
''// Some other logic
Case 2 Or 3
Console.WriteLine("hit")
End Select
</code></pre>
<p>With the above I would naturally assume that "hit" would be printed, but that's not the case.</p>
http://stackoverflow.com/questions/551915/sql-temp-table-sharing-accross-different-sql-readers0SQL temp table sharing accross different SQL readersvanslly2009-02-16T00:25:43Z2009-06-16T18:54:28Z
<p>I am trying to do a many different queries on a result set which has a <em>very</em> large creation time. To get performance gains I wish to use a temp table and just do many queries on this temp table.</p>
<p>Seems pretty standard. Yet I am struggling to share this temp table in dynamic sql. As I understand it, each SqlCommand object executes in its own thread and so the temp table is in a different scope - thus making it inaccessible from the query thread.</p>
<p>I tried using a global temporary table and that works great, but not ideal?</p>
<p>How can I share a local temporary table between dynamic SQL queries?</p>
<p>My intent:</p>
<pre><code>using (var conn = new SqlClient.SqlConnection("..."))
{
// Creation involes many table joins in reality
String creationScript = "SELECT * FROM FooTable INTO #MyTemp";
SqlCommand createTempTbl = new SqlCommand(creationScript, conn);
createTempTbl.ExecuteNonQuery();
String query1 = "SELECT * FROM #MyTemp where id=@id";
SqlCommand query1Comm = new SqlCommand(query1, conn);
query1Comm.Parameters.Add("@id", ...);
String query2 = "SELECT * FROM #MyTemp where name=@name";
SqlCommand query2Comm = new SqlCommand(query2, conn);
query2Comm.Parameters.Add("@name", ...);
// And so on the queries go
} // Now want #MyTemp to be destroyed
</code></pre>
http://stackoverflow.com/questions/890487/is-software-development-a-discipline-of-engineering-or-a-discipline-of-arts8 Is software development a discipline of engineering or a discipline of arts?vanslly2009-05-20T22:02:39Z2009-05-21T02:44:08Z
<p>A <a href="http://blogs.msdn.com/brada/archive/2004/04/13/112619.aspx" rel="nofollow">post</a> I read on Brad Abrams blog had this very question and I would love to get the views of the community.</p>
<p>Software is being taught as an engineering discipline in many universities, even though the field is so young that questions regarding what consitutes good design, in terms of what is measurable, cannot yet be answered all that well without simply resorting to good arguments and drawing from experience.</p>
<p>So, as it stands now; do you view software development as a discipline of engineering or as a discipline of arts, and what's your reasoning?</p>
http://stackoverflow.com/questions/732331/ideas-for-summer-java-project/732343#7323432Answer by vanslly for Ideas for Summer Java projectvanslly2009-04-09T00:00:36Z2009-04-09T00:00:36Z<p>What about an image pane where you can add images, resize, change opacity, rotate and that type of thing. Then provide the ability to save these views.</p>
<p>This will provide you an opportunity to implement command pattern and show how easy it is to have undo/redo commands as well.</p>
http://stackoverflow.com/questions/539733/what-method-of-data-validation-is-most-appropriate-for-large-data-sets1What method of data validation is most appropriate for large data setsvanslly2009-02-12T02:15:50Z2009-04-03T07:06:23Z
<p>I have a large database and want to implement a feature which would allow a user to do a bulk update of information. The user downloads an excel file, makes the changes and the system accepts the excel file.</p>
<ol>
<li>The user uses a web interface (ASP.NET) to download the data from database to Excel.</li>
<li>User modifies the Excel file. Only certain data is allowed to be modified as other map into the DB.</li>
<li>Once the user is happy with their changes they upload the changed Excel file through the ASP.NET interface.</li>
<li>Now it's the server's job to suck data from the Excel file (using Gembox) and validate the data against the database (this is where I'm having the trouble)</li>
<li>Validation results are shown on another ASP.NET page after validation is complete. Validation is soft and so hard fails <strong>only</strong> occur when say an index mapping into DB is missing. (Missing data causes ignore, etc)</li>
<li>User can decide whether the actions that will be taken are appropriate, in accepting these the system will apply the changes. (Add, Modify, or Ignore)</li>
</ol>
<p>Before applying the changes and/or additions the user has made, the data must be validated to avoid mistakes by the user. (The accidentally deleted dates which they didn't mean to)</p>
<p>It's not far fetched for the rows that need updating to reach over 65k.</p>
<p>The question is: <strong>What is the best way to parse the data to do validation and to build up the change and addition sets?</strong></p>
<p>If I load all data that the excel data must be validated against into memory I might unnecessarily be affecting the already memory hungry application. If I do a database hit for every tuple in the excel file I am looking at over 65k database hits.</p>
<p>Help?</p>
http://stackoverflow.com/questions/567386/when-is-it-ok-to-use-the-goto-statement-in-vb-net/567442#5674420Answer by vanslly for When is it OK to use the GoTo statement in VB.Net?vanslly2009-02-19T22:07:05Z2009-02-19T22:07:05Z<p>I'd say use very sparingly as it's generally associated with introducing spagetti code. Try using methods instead of Labels.</p>
<p>A good case I think for using GOTO is to create a flow through select which is available in C# but not VB.</p>
http://stackoverflow.com/questions/523246/using-custom-ttf-font-for-image-rendering0Using custom TTF font for Image renderingvanslly2009-02-07T06:00:48Z2009-02-07T07:31:29Z
<p>I am using Gdi+ on the server-side to create an image which is streamed to the user's browser. None of the standard fonts fit my requirements and so I want to load a TrueType font and use this font for drawing my strings to the graphics object:</p>
<pre><code> using (var backgroundImage = new Bitmap(backgroundPath))
using (var avatarImage = new Bitmap(avatarPath))
using (var myFont = new Font("myCustom", 8f))
{
Graphics canvas = Graphics.FromImage(backgroundImage);
canvas.DrawImage(avatarImage, new Point(0, 0));
canvas.DrawString(username, myFont,
new SolidBrush(Color.Black), new PointF(5, 5));
return new Bitmap(backgroundImage);
}
</code></pre>
<p>"myCustom" represents a font that is not installed on the server, but for which I have the TTF file for.</p>
<p>How can I load the TTF file so that I can use it in GDI+ string rendering?
Thanks.</p>
http://stackoverflow.com/questions/523246/using-custom-ttf-font-for-image-rendering/523388#5233883Answer by vanslly for Using custom TTF font for Image renderingvanslly2009-02-07T07:31:29Z2009-02-07T07:31:29Z<p>I've found a solution to using custom fonts.</p>
<pre><code>// 'PrivateFontCollection' is in the 'System.Drawing.Text' namespace
var foo = new PrivateFontCollection();
// Provide the path to the font on the filesystem
foo.AddFontFile("...");
var myCustomFont = new Font((FontFamily)f.Families[0], 36f);
</code></pre>
<p>Now <code>myCutomFont</code> can be used with the Graphics.DrawString method as intended.</p>
http://stackoverflow.com/questions/509910/testing-io-stream-interaction1Testing IO.Stream interactionvanslly2009-02-04T02:51:31Z2009-02-04T03:06:27Z
<p>I have a method in my business logic layer that accepts a stream, which in the GUI comes from a user uploading a file, and I am interested in which is an appropriate way to test that the method appropriately uses this stream to make decisions.</p>
<pre><code>public Sub Initialize(ByVal uploadStream As Stream)
' Logic using uploadStream
End Sub
</code></pre>
<p>For testing purposes I wish to DI a mocked stream into this method, but I find a stiffling lack of abstraction whenever working with streams.</p>
<p>Intuition tells me that a need to create a Stream wrapper which would allow me to DI an interface of the wrapper to test interaction of my logic with the stream wapper.</p>
<p>What's the best way to proceed?</p>
http://stackoverflow.com/questions/505305/class-design-entity-id-vs-entity-reference/505379#5053791Answer by vanslly for Class design: entity ID vs entity referencevanslly2009-02-02T23:09:16Z2009-02-02T23:09:16Z<p>As a general rule I try to avoid chaining, because it usually introduces unncessary tight coupling. All depends on the context, but in terms of business objects it might be a good idea to keep the entities loosely coupled so they can grow independently.</p>
<p>In the example you provide I don't think tight coupling is warranted. If the intersection was greater this might be warranted, but this isn't the general case with Business entities, I've found.</p>
http://stackoverflow.com/questions/499902/generic-interface-as-a-method-parameter-and-seeing-fields/500002#5000023Answer by vanslly for Generic interface as a method parameter and seeing fieldsvanslly2009-02-01T01:46:01Z2009-02-01T01:46:01Z<p>Bad Design (as I think was described in the question):</p>
<pre><code>public interface IEntry
{
string Description { get; set; }
}
public class Bug : IEntry
{
public int ID { get; set; }
public string Description { get; set; }
public string UserName { get; set; }
}
public class Incident : IEntry
{
public Guid ID { get; set; }
public string Description { get; set; }
}
public class Persister
{
public void Save(IEnumerable<IEntry> values)
{
foreach (IEntry value in values) { Save(value); }
}
public void Save(IEntry value)
{
if (value is Bug) { /* Bug save logic */ }
else if (value is Incident) { /* Incident save logic */ }
}
}
</code></pre>
<p>Improved design (smart entity approach):</p>
<pre><code>public interface IEntry
{
string Description { get; set; }
void Save(IPersister gateway);
}
public class Bug : IEntry
{
public int ID { get; set; }
public string Description { get; set; }
public string UserName { get; set; }
public void Save(IPersister gateway)
{
gateway.SaveBug(this);
}
}
public class Incident : IEntry
{
public Guid ID { get; set; }
public string Description { get; set; }
public void Save(IPersister gateway)
{
gateway.SaveIncident(this);
}
}
public interface IPersister
{
void SaveBug(Bug value);
void SaveIncident(Incident value);
}
public class Persister : IPersister
{
public void Save(IEnumerable<IEntry> values)
{
foreach (IEntry value in values) { Save(value); }
}
public void Save(IEntry value)
{
value.Save(this);
}
public void SaveBug(Bug value)
{
// Bug save logic
}
public void SaveIncident(Incident value)
{
// Incident save logic
}
}
</code></pre>
<p>The improved design is only caters for the need to shift the need for change of Persister.Save(IEntry). I just wanted to demonstrate a first step to make the code less brittle. In reality and production code you would want to have a BugPersister and IncidentPersister class in order to conform to the <a href="http://www.objectmentor.com/resources/articles/srp.pdf" rel="nofollow">Single Responsibility principle</a>.</p>
<p>Hope this more code-centric example is a help.</p>
http://stackoverflow.com/questions/498363/what-constitutes-redundant-delegate-creation3What constitutes 'redundant delegate creation'?vanslly2009-01-31T05:54:30Z2009-01-31T06:02:08Z
<p>I was registering to an event in my class, and as per usual I was lazy and just use the autocomplete feature built into Visual Studio 2008 Pro which auto creates the delegate creation and it's associated method.</p>
<pre><code>public abstract class FooBase
{
protected event EventHandler<MyValueChangedArgs> MyValueChanged;
protected FooBase()
{
MyValueChanged +=
new EventHandler<MyValueChangedArgs>(HandleMyValueChanged);
}
private void HandleMyValueChanged(object sender, MyValueChangedArgs e)
{
// Some handling logic
}
}
</code></pre>
<p>Usually I dont think twice when Visual Studio gens the event handler for me, but then I received a recommendation from Refactor! Pro to "Remove Redundant Delegate Creation". The recommendation results in:</p>
<pre><code>public abstract class FooBase
{
protected event EventHandler<MyValueChangedArgs> MyValueChanged;
protected FooBase()
{
MyValueChanged += HandleMyValueChanged;
}
private void HandleMyValueChanged(object sender, MyValueChangedArgs e)
{
// Some handling logic
}
}
</code></pre>
<p>Under what circumstances is delegate creation redundant and when is delegate creation appropriate?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/498200/how-to-best-clean-up-resources-for-net-application/498218#4982182Answer by vanslly for How to best clean up resources for .NET application?vanslly2009-01-31T04:06:45Z2009-01-31T04:06:45Z<p>If your implementation is whiteboxed then calling Close on file stream should close it's memory stream.</p>
<p>If class implements IDisposable just use the using block if in C# so the resource will be disposed:</p>
<pre><code>using (var foo = new Foo())
{
// Do some stuff to foo
}
</code></pre>
<p>If you are writing a wrapper that will consume memory intensively then I recommend implementing <a href="http://msdn.microsoft.com/en-us/library/system.idisposable.aspx" rel="nofollow">IDisposable</a>.</p>
http://stackoverflow.com/questions/498002/generics-using-public-interfaces-and-internal-type-parameters/498107#4981072Answer by vanslly for Generics using public interfaces and internal type parametersvanslly2009-01-31T02:53:51Z2009-01-31T03:11:59Z<p>This constraint you are facing makes sense for the following reason.</p>
<p>C# is strongly typed so...</p>
<p>To be able to reference the MySpecificClass outside the scope of the assembly it is defined in you must know its parameter types in order to generate a strong type reference to its instance; but an separate assembly than the internal definition does not know about MyInternalConcrete.</p>
<p>Thus the following wont work if in a separate assembly:</p>
<pre><code>MyClass<MyInternalConcrete> myInstance = new MySpecificClass();
</code></pre>
<p>Here the separate assembly doesn't know of MyInternalConcrete, so how can you define a variable as such.</p>
http://stackoverflow.com/questions/482510/generate-a-c-delegate-method-stub/482513#4825133Answer by vanslly for Generate a C# delegate method stubvanslly2009-01-27T06:59:23Z2009-01-27T07:04:25Z<p>Use an IDE plugin like Refactor Pro! It also allows you to convert your delegates to instance methods, or if its a one-liner, into a lambda. I tend to start typing using a lambda and then hovering my cursor over the parms gives you the types available.</p>
<p>Or. Wait till Visual Studio 10 which would have this all built in. But until then use either of the aforementioned :)</p>
http://stackoverflow.com/questions/481817/what-are-the-biggest-gotchas-in-silverlight-2-0/481930#4819303Answer by vanslly for What are the biggest gotchas in Silverlight 2.0?vanslly2009-01-27T00:28:44Z2009-01-27T00:28:44Z<p>A while back I did a project in Silverlight 2.0 and the project was driven using TDD and MVP. My service references were located in a seperate assembly so the view need not know of the model. I had a gotcha with the location of the <strong>ServiceReferences.ClientConfig</strong> file which needs to be in the view's assembly!</p>
<p>This file is generated if you add a service reference. We were added a WCF Web Service, but I was new to Silverlight and so didn't know that the Silverlight applications are compiled and packaged as a XAP.</p>
<p>If your <strong>ServiceReferences.ClientConfig</strong> file isn't located inside this XAP you have problems.</p>
<p>So there's my two cents worth. I posted this a while back on the Silverlight forums and it seems I'm not the only one this gotcha applied to.</p>
<p><a href="http://silverlight.net/forums/p/18528/165341.aspx#165341" rel="nofollow">My Original Post</a></p>
http://stackoverflow.com/questions/476348/that-a-ha-moment-for-understanding-oo-design-in-c/477160#4771601Answer by vanslly for That A-Ha Moment for Understanding OO Design in C#vanslly2009-01-25T04:31:59Z2009-01-25T04:31:59Z<p>Object Oriented design in general requires mental snuggling, but for me C-type OOD seemed rather natural after the university using JAVA to teach us OOD.</p>
<p>After much practice with hobby projects where an elegant architecture is required to meet some of the use cases - OOP seem to become more and more automatic.</p>
http://stackoverflow.com/questions/476942/raising-event-from-base-class/476992#4769921Answer by vanslly for Raising event from base classvanslly2009-01-25T00:54:38Z2009-01-25T04:13:48Z<p>The final result:</p>
<pre><code>public interface IFoo
{
event EventHandler<FooEventArgs> FooValueChanged;
void RaiseFooValueChanged(IFooView sender, FooEventArgs e);
}
[TypeDescriptionProvider(typeof(FooBaseImplementor))]
public abstract class FooBase : Control, IFoo
{
protected event EventHandler<FooEventArgs> backEndStorage;
public abstract event EventHandler<FooEventArgs> FooValueChanged;
public void RaiseFooValueChanged(IFooView sender, FooEventArgs e)
{
if (backEndStorage != null)
backEndStorage(sender, e);
}
}
public class FooDerived : FooBase {
public override event EventHandler<FooEventArgs> FooValueChanged {
add { backEndStorage += value; }
remove { backEndStorage -= value; }
}
}
</code></pre>
http://stackoverflow.com/questions/476942/raising-event-from-base-class2Raising event from base classvanslly2009-01-25T00:15:03Z2009-01-25T04:13:48Z
<p>I understand that one can raise an event in the class that the implementation declaration occurs, but I wish to raise the event at the base class level and have the derived class's event be raised:</p>
<pre><code>public interface IFoo
{
event EventHandler<FooEventArgs> FooValueChanged;
void RaiseFooValueChanged(IFooView sender, FooEventArgs e);
}
[TypeDescriptionProvider(typeof(FooBaseImplementor))]
public abstract class FooBase : Control, IFoo
{
public virtual event EventHandler<FooEventArgs> FooValueChanged;
public void RaiseFooValueChanged(IFooView sender, FooEventArgs e)
{
FooValueChanged(sender, e);
}
}
</code></pre>
<p>I cannot have the FooValueChanged event abstract, because then the base class cannot raise the event. Current the code runs, but the call FooValueChanged(sender, e) throws a NullReferenceException because it doesn't call the derived class's event, only that of the base class.</p>
<p>Where am I going wrong?</p>
<p>I can have the event and the raiser both abstract, but then I need to remember to call FooValueChanged(sender, e) in every single derived class. I'm trying to avoid this while being able to use the Visual Studio designer for derived controls.</p>
http://stackoverflow.com/questions/464831/what-are-the-benefits-of-listt-find-over-alternatives0What are the benefits of List<T>.Find over alternatives?vanslly2009-01-21T11:01:01Z2009-01-21T11:09:58Z
<p>Recently I used a predicate to describe search logic and passed it to the Find method of a few Lists.</p>
<pre><code>foreach (IHiscoreBarItemView item in _view.HiscoreItems)
{
Predicate<Hiscore> matchOfHiscoreName =
(h) => h.Information.Name.Equals(item.HiscoreName);
var current = player.Hiscores.Find(matchOfHiscoreName);
item.GetLogicEngine().ForceSetHiscoreValue(current as Skill);
var goal = player.Goals.Find(matchOfHiscoreName);
item.GetLogicEngine().ForceSetGoalHiscoreValue(goal as Skill);
}
</code></pre>
<p>Are there any benefits, apart from 'less code', from using the aforementioned approach over an alternative.</p>
<p>I am particularly interested in performance.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/456596/how-to-persist-attributes-of-asp-net-user-controls0How to persist attributes of ASP.NET User controlsvanslly2009-01-19T05:18:41Z2009-01-19T21:41:16Z
<p>I have a ASP.NET user control which hosts a 'HtmlImage'. The src attribute is successfully set at run-time, but adding the rendered control to another container causes a loss of the src attribute.</p>
<p>The rendered control is stored in Session (I know this is not ideal). Then a redirect is done to another page which uses the control in Session.</p>
<p>Perhaps it's because the url is not encoded?</p>
<p>Code: </p>
<pre><code><img id="ctlImage" runat="server" style="border-style: none;" />
ctlImage.Src = String.Format("..\image.aspx?{0}", "...")
</code></pre>
http://stackoverflow.com/questions/358793/design-pattern-for-methods-in-another-class/358908#3589080Answer by vanslly for Design pattern for methods in another classvanslly2008-12-11T10:27:07Z2008-12-11T17:15:44Z<p>What you describe is not really a pattern, but instead a programming principle called '<strong>Separation of Concerns</strong>'.</p>
<p>From your description I would strongly argue that you after a structural design pattern, not a creational design pattern since allocation of coding concerns is discussed over creational complicity.</p>
<p>So, my best guess is that the pattern you are after is perhaps the <strong>Facade Pattern</strong> or <strong>Gateways</strong>. It is common to use Entities (your clsClass) with Gateways.</p>
<p>I would however not necessarily encourage jumping into making your methods static however since then these cannot be mocked during testing of Business Logic. You would want to mock these types of methods that return data access objects if they form the application's data layer since you don't want to hit the data base when business logic depends on these gateways/facades.</p>
<pre><code>public class clsClass
{
public int ID;
public string title;
public string author;
public string article;
}
public class BookGateway
{
public List<clsClass> GetAllArticles()
{
var result = new List<clsClass>();
// Add items here.
// Can call database and populate each new clsClass
// and add to result object.
return result;
}
}
</code></pre>
http://stackoverflow.com/questions/238660/difference-of-two-uint9Difference of two 'uint'vanslly2008-10-26T21:28:23Z2008-12-04T17:47:40Z
<p>When you attempt to declare an unsigned variable in C#.NET with a value outside its value range it is flagged as a compiler error, but if you produce a negative value at runtime and assign it to that variable at runtime the value wraps.</p>
<pre><code>uint z = -1; // Will not compile
uint a = 5;
uint b = 6;
uint c = a - b; // Will result in uint.MaxValue
</code></pre>
<p>Is there a good reason why unsigned variables wrap in such a situation instead of throwing an exception?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/670566/path-combine-absolute-with-relative-path-strings/1299356#1299356Comment by vanslly on Path.Combine absolute with relative path stringsvanslly2009-10-28T19:32:04Z2009-10-28T19:32:04ZYes, that is what I am insinuating with the posthttp://stackoverflow.com/questions/1456518/how-to-obtain-a-list-of-constants-in-a-class-and-their-values/1456596#1456596Comment by vanslly on How to obtain a list of constants in a class and their valuesvanslly2009-09-21T20:30:36Z2009-09-21T20:30:36ZThat's a nice solution :)http://stackoverflow.com/questions/1456518/how-to-obtain-a-list-of-constants-in-a-class-and-their-values/1456538#1456538Comment by vanslly on How to obtain a list of constants in a class and their valuesvanslly2009-09-21T20:07:27Z2009-09-21T20:07:27ZEnums in VB.NET cannot contain strings as values. In Java they can.http://stackoverflow.com/questions/1384147/ioc-are-at-the-class-level-but-what-about-database-conflicts/1384154#1384154Comment by vanslly on IOC are at the class level, but what about database conflicts?vanslly2009-09-05T20:20:25Z2009-09-05T20:20:25ZThis substitution ability you refer to is known as the Liskov Substitution Principle.http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-classComment by vanslly on What's the best way to change the namespace of a highly referenced class?vanslly2009-06-18T23:21:19Z2009-06-18T23:21:19ZFor those striking this problem. I tried Resharper, which made a real mess of things. In the end a basic 'Replace in Files' did the job. Technique for this was to replace all highly qualified references first and then lesser qualified and then manually fixing the imports. This took me 30 minutes all up. Cross cutting concerns are a pain.http://stackoverflow.com/questions/890487/is-software-development-a-discipline-of-engineering-or-a-discipline-of-artsComment by vanslly on Is software development a discipline of engineering or a discipline of arts?vanslly2009-05-20T22:52:01Z2009-05-20T22:52:01ZSoftware being taught as an engineering descipline (Computer Science, Development Cycle, Software Design) in universities, but is still pretty young.http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/851059#851059Comment by vanslly on What's the best way to change the namespace of a highly referenced class?vanslly2009-05-12T04:22:01Z2009-05-12T04:22:01ZUsing Visual Studio 2008 Standard Edition to correct each of the 1100+ errors is a manual process and takes much time.
ReSharper is an option, but adding another refactoring tool for namespace changing seems overkill.http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/851059#851059Comment by vanslly on What's the best way to change the namespace of a highly referenced class?vanslly2009-05-12T04:03:49Z2009-05-12T04:03:49ZThis is exactly what I want to avoid. Going into each one of the files to correct 1100+ errors doesn't seem very productive use of developer time.http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/851061#851061Comment by vanslly on What's the best way to change the namespace of a highly referenced class?vanslly2009-05-12T04:01:54Z2009-05-12T04:01:54ZDefinitely an option, I would prefer not needing to fork out a bunch of cash for a namespace change though :) http://stackoverflow.com/questions/851050/whats-the-best-way-to-change-the-namespace-of-a-highly-referenced-class/851067#851067Comment by vanslly on What's the best way to change the namespace of a highly referenced class?vanslly2009-05-12T03:56:30Z2009-05-12T03:56:30ZFor starters it's VB, not a C-based language, but the idea of specifying both can be done with regular expression global replace. But, then I get over 500 error where the namespace is imported twice :)http://stackoverflow.com/questions/758670/how-can-we-encourage-people-to-ask-better-questions/758675#758675Comment by vanslly on How can we encourage people to ask better questionsvanslly2009-04-17T02:01:20Z2009-04-17T02:01:20ZAnd there's an 'edit' option for the author. And reputable users can edit. Etc.http://stackoverflow.com/questions/758670/how-can-we-encourage-people-to-ask-better-questionsComment by vanslly on How can we encourage people to ask better questionsvanslly2009-04-17T01:54:52Z2009-04-17T01:54:52Z... I feel a great urge to fix the spelling errors in the question ...http://stackoverflow.com/questions/758340/how-do-i-design-a-sub-class-with-features-not-available-in-the-base-class/758497#758497Comment by vanslly on How do I design a sub class with features not available in the base class?vanslly2009-04-17T00:16:53Z2009-04-17T00:16:53ZGood answer. The questioner is attemtping to violate OOD priciples which is a design flaw, most notably LSP.http://stackoverflow.com/questions/567386/when-is-it-ok-to-use-the-goto-statement-in-vb-netComment by vanslly on When is it OK to use the GoTo statement in VB.Net?vanslly2009-02-19T22:07:43Z2009-02-19T22:07:43ZI don't think you gave a particularly useful use of the GOTO statement. I consider using GOTOs for such trivial control flow bad practice as you should be using a method to commit and close the Repo. http://stackoverflow.com/questions/555197/what-is-the-vb-net-select-case-statement-logic-with-case-or-ing/555214#555214Comment by vanslly on What is the VB.NET select case statement logic with case OR-ingvanslly2009-02-17T02:37:00Z2009-02-17T02:37:00ZTrue, and I was using the To keyword, but it's slightly hacky because if say 2 and 3 were Enum vals and the enum gets refactored without taking this use into consideration - which if it's in some class deep in the bowels of a large system - then you have some unexpected breaks ;)