User Ricardo Villamil - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T04:44:01Zhttp://stackoverflow.com/feeds/user/19314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1346699/visual-studio-2008-local-debugging-permission-problems/1348992#13489920Answer by Ricardo Villamil for Visual Studio 2008 local debugging permission problemsRicardo Villamil2009-08-28T19:49:08Z2009-08-28T19:49:08Z<p>This could be a misleading error, stop IIS, then delete C:\Windows\Microsoft.NET\[your version of framework]\Temporary ASP.NET Files, then restart IIS. </p>
<p>Also, when you're debugging, the application runs under the currently logged on user (you), not as NETWORK SERVICE, if you've been able to change the permissions on that folder I assume your account has full r+w rights, but just a thought.</p>
http://stackoverflow.com/questions/1245656/c-log4net-store-entries-in-memory-and-email-under-certain-conditions/1246036#12460361Answer by Ricardo Villamil for c# log4net store entries in memory and Email under certain conditionsRicardo Villamil2009-08-07T17:34:30Z2009-08-07T17:34:30Z<p>You can use SMTPAppender and look at how the flush functionality works. Log4net keeps all messages in memory until flush is called (if it's setup this way), so the email will be sent when you flush it.</p>
<p>Another thing you can do is create a separate appender (Rolling or FileAppender) with filters WARN and FATAL, then attach this appender to the same logger, and at the end of your run email this file if it's non-empty (and you can choose to send it as an attachment or right in the body of the email). Let me know if you want more details, this is almost the same I'm doing know.</p>
<p>Good luck! </p>
<p>Ricardo.</p>
http://stackoverflow.com/questions/899629/cast-object-to-t/899643#8996431Answer by Ricardo Villamil for Cast object to TRicardo Villamil2009-05-22T19:42:32Z2009-05-22T19:42:32Z<p>Add a 'class' constraint (or more detailed, like a base class or interface of your exepected T objects):</p>
<pre><code>private static T ReadData<T>(XmlReader reader, string value) where T : class
{
reader.MoveToAttribute(value);
object readData = reader.ReadContentAsObject();
return (T)readData;
}
</code></pre>
<p>or <code>where T : IMyInterface</code> or <code>where T : new()</code>, etc</p>
http://stackoverflow.com/questions/899514/default-row-ordering-for-select-query-in-oracle/899626#899626-2Answer by Ricardo Villamil for Default row ordering for select query in oracleRicardo Villamil2009-05-22T19:36:15Z2009-05-22T19:36:15Z<p>Although, it should be rownnum (your #2), it really isn't guaranteed and you shouldn't trust it 100%. </p>
http://stackoverflow.com/questions/899318/oracle-sqlplus-command-line-question/899543#8995430Answer by Ricardo Villamil for oracle sqlplus command line questionRicardo Villamil2009-05-22T19:17:44Z2009-05-22T19:17:44Z<p>Yes, I believe you can with the SQL*Plus command accept, check this link for more info: <a href="http://www.dba-oracle.com/concepts/displaying_pl_sql_output.htm" rel="nofollow">http://www.dba-oracle.com/concepts/displaying_pl_sql_output.htm</a></p>
<p>Good luck!</p>
<p>Ricardo.</p>
http://stackoverflow.com/questions/899346/guidance-needed-asp-net-app-connection-string/899496#8994960Answer by Ricardo Villamil for Guidance needed ASP.Net app connection stringRicardo Villamil2009-05-22T19:06:41Z2009-05-22T19:06:41Z<p>There's a special section of web.config you can add called connectionStrings. You add to web.config:</p>
<pre><code> <connectionStrings>
<add name="oracle" connectionString="Data Source=server; User ID=user; Password=password;"/>
</connectionStrings>
</code></pre>
<p>Then in your C# code:</p>
<pre><code>string connString = ConfigurationManager.ConnectionStrings["oracle"].ConnectionString;
</code></pre>
<p>I know it's a little bit more complicated than the first example, but it helps keep the config file organized, specially as this file gets more and more complicated you'll learn to value this connectionStrings section.</p>
<p>Good luck!</p>
<p>Ricardo.</p>
http://stackoverflow.com/questions/401103/are-we-shooting-ourselves-in-the-foot-by-working-on-open-source-projects12Are we shooting ourselves in the foot by working on Open Source projects?Ricardo Villamil2008-12-30T18:57:57Z2009-03-14T15:18:12Z
<p>I've been considering the idea of working on some open source projects, mainly because of the same reasons that everyone else does it: for fun and to learn something new. But now more than ever these OS (Open Source) projects are taking more and more strength and becoming more and more popular. So, I've been thinking, <strong>are we developers killing our profession by working for free?</strong> I know there are some OS projects that pay something, but nothing compared to what you would get paid for working in a full time software company.</p>
<p>Think about these worst case scenarios: </p>
<ul>
<li>OpenOffice or any other of these office suits brings Microsoft Office down and now Microsoft has to lay off thousands of developers because of this...</li>
<li>Linux becomes the #1 used operating system, and both Apple and Microsoft have to lay off Windows and Mac developers.</li>
</ul>
<p>Think of this analogy:</p>
<ul>
<li>What if there were "Open Source Banks"?! Where the tellers, managers, execs, etc are super friendly, worked for free, and offered some kick ass products, why go to a Bank of America and pay tons in fees, right?</li>
</ul>
<p>In other words, what if all software became open source? This probably will never happen or even if it does there will still be plenty of jobs for us out there, but anyway, I wanted to see what other people thought of this crazy paranoia of mine :)</p>
<p><hr /></p>
<p>See Also: <br /><a href="http://stackoverflow.com/questions/196131/making-money-with-open-source-as-a-developer">http://stackoverflow.com/questions/196131/making-money-with-open-source-as-a-developer</a><br /><a href="http://stackoverflow.com/questions/116581/open-source-why-or-why-not">http://stackoverflow.com/questions/116581/open-source-why-or-why-not</a><br /><a href="http://stackoverflow.com/questions/276957/the-difference-between-free-software-and-open-source-software">http://stackoverflow.com/questions/276957/the-difference-between-free-software-and-open-source-software</a></p>
http://stackoverflow.com/questions/172184/are-you-elite-coder-enough-to-take-a-code-challenge/198788#1987882Answer by Ricardo Villamil for Are you _elite coder_ enough to take a "code-challenge" ?Ricardo Villamil2008-10-13T19:44:50Z2009-02-08T00:14:54Z<pre><code>if(you.ReadStackOverflow())
{
you.Elite = true;
you.AskBoss("Boss, I'm an elite programmer cuz I read StackOverflow.com, can I get a raise?");
boss.Answers("bite me");
}
</code></pre>
http://stackoverflow.com/questions/517011/design-1-to-1-relationship-db-tables/517022#5170223Answer by Ricardo Villamil for Design 1-to-1 relationship DB tables?Ricardo Villamil2009-02-05T17:52:53Z2009-02-06T18:48:18Z<p>Only when the fields in the UserProfile table are not required for all the number of records in the user table. For example if you had 3,000,000 users but only 3,000 of those have UserProfiles, it may make sense to split them (to avoid a whole bunch of null columns.)</p>
<p>Although now a days with the increased databases speed and cheap costs of storage, it really doesn't make much of a difference to split them for this reason...</p>
http://stackoverflow.com/questions/517016/moving-forward-with-a-career-c-or-c/517054#5170541Answer by Ricardo Villamil for Moving forward with a career: C++ or C#?Ricardo Villamil2009-02-05T17:58:41Z2009-02-05T17:58:41Z<p>It really depends on what you like to do. I see C++ still living around for a long time, not necessarily in web apps with the latest flashiest technologies, but very specific systems (think Air Traffic Control, railroad systems, embedded systems, etc).</p>
<p>Stick with what you like most, if you're good at it, you will do good (considering, like I said, that C++ will be around for a long time, IMHO.)</p>
http://stackoverflow.com/questions/483787/is-there-a-bug-in-sqldatareader-hasrows-when-running-against-sql-server-2008/508931#5089311Answer by Ricardo Villamil for Is there a bug in SqlDataReader.HasRows when running against SQL Server 2008?Ricardo Villamil2009-02-03T21:16:29Z2009-02-03T21:16:29Z<p>Sounds like HasRows is one of those properties which value is not guaranteed to be accurate...</p>
<p>I agree with the previous two posts (about going straight into while(dr.Read()) and get the ordinals in the first iteration). Also, why not get a dataset instead of a data reader? If in this case you're only dealing with 20 rows, getting the whole dataset at once might not be much of a performance hit compared to using a data reader. I know this doesn't really answer your question, but just a thought for a workaround.</p>
http://stackoverflow.com/questions/496655/difference-between-creating-guid-keys-in-c-vs-the-db/496681#4966812Answer by Ricardo Villamil for Difference between creating Guid keys in C# vs. the DBRicardo Villamil2009-01-30T18:44:53Z2009-01-30T18:44:53Z<p>By doing it in C# you might run the risk of reassigning the GUID and saving it back to the database. By having the database be responsible for it, you're guaranteed that this PK will not change, that is, if you set up the proper constraints. Having said that, you could set similar constraints in your C# code that prevent changing a unique id once it has been assigned, but you'd have to do the same in all of your applications...In my opinion, having it in C# sounds like is more maintenance than the database, since databases already have built in methods to prevent changing primary keys.</p>
http://stackoverflow.com/questions/470876/using-separate-msi-build-for-config-files-for-each-environment/491992#4919921Answer by Ricardo Villamil for Using separate MSI build for config files for each environmentRicardo Villamil2009-01-29T15:16:29Z2009-01-30T18:37:59Z<p>Not sure if your setup is more complicated, but we have a similar problem and we added a custom actions class that updates the config files based on the environment (which the user selects during installation), then you add this custom actions project to your setup project. That way you use one setup exe no matter what environment you're installing to.</p>
<p>Let me know if you're interested and I can post some samples or more info on how we accomplished it.</p>
<p>Here are some more details:</p>
<ol>
<li>Add a new dialog to your Setup project to request the environment from the user (we use a 4 radio button dialog with the 4 environments we have: dev, qa, staging and production)</li>
<li>Configure the values of the 4 radio buttons and the property that this value will be setting i.e. "environment" (to latter be used by the CustomActions class)</li>
<li>Add a dll project to your solution with a single class (CustomActions)</li>
<li><p>in the CustomAction class, you read the property we configured in step two as:</p>
<pre><code> if(!this.Context.Parameters.ContainsKey("environment"))
{
string error = "'environment' argument is null. Please configure config file manually";
//...handle your error, etc.
return;
}
<pre><code>string env = this.Context.Parameters["environment"];
</code></pre>
</code></pre></li>
<li><p>now your env variable contains the value we assigned to each radio button in step. You then can use a switch statement to decide what environment the user selected. and update your config file appropriately with:</p></li>
</ol>
<p>Configuration config = ConfigurationManager.OpenExeConfiguration(this.servicePath);
//for example, to change your connection strings you'd use:
config.ConnectionStrings.ConnectionStrings["oracle"] = "dev conn string here";</p>
<ol>
<li><p>Back in your setup project, add the output of the CustomActions project to your CustomActions editor (View menu -> Editor -> Custom Actions)</p></li>
<li><p>Finally, configure the CustomActionData property of your setup project to pass the environment and other variables to the CustomAction class (mine looks something like this:
/serviceFolder="[TARGETDIR]\" /serviceExe="blahblah.exe" /serviceName="MyServiceName" /environment="[ENVIRONMENT]"</p></li>
</ol>
<p>Hope that makes sense and applies to your solution!</p>
http://stackoverflow.com/questions/492020/c-net-blocking-and-waiting-for-an-event/492047#4920472Answer by Ricardo Villamil for C#/.NET: Blocking and waiting for an eventRicardo Villamil2009-01-29T15:27:14Z2009-01-29T15:27:14Z<p>Don't pass the event, pass a delegate that matches the event handler signature. This actually sounds hacky to me, so be aware of potential dead lock issues.</p>
http://stackoverflow.com/questions/282067/c-odp-net-and-ora-01475-must-reparse-cursor-to-change-bind-variable-datatype0C# - ODP.NET and ora-01475 must reparse cursor to change bind variable datatypeRicardo Villamil2008-11-11T20:38:00Z2009-01-28T20:23:35Z
<p>Hi all,</p>
<p>I'm getting ora-01475 whenever I try to insert a null value in a column (of type DateTime) after some records have already been inserted that have real date values. I'm using the OracleParameter constructor that takes the name and the value as an object (I assume the data type is then implied from the datatype of the object), but since sometimes the value of my parameter is null, it's being set as a String, therefore throwing this error. I don't want to use the constructor that takes the datatype explicitly because I use reflection heavily to build the OracleCommand object and its parameters.</p>
<p>How can I reparse the cursor (as the error suggests) if I find this situation? Has anyone else run into this and has a solution? I'd highly appreciate any help.</p>
<p>Thanks!!</p>
<p>Ricardo.</p>
http://stackoverflow.com/questions/489071/when-can-an-exception-in-a-net-winforms-app-just-get-eaten-without-being-caught/489098#4890982Answer by Ricardo Villamil for When can an exception in a .NET WinForms app just get eaten without being caught or bubbling up to a windows exception?Ricardo Villamil2009-01-28T20:03:33Z2009-01-28T20:03:33Z<p>There are some special exceptions that don't get bubbled up or caught, it sounds like you're dealing with one of them: see <a href="http://msdn.microsoft.com/en-us/library/system.threading.threadabortexception.aspx" rel="nofollow">ThreadAbortException</a></p>
http://stackoverflow.com/questions/489052/how-to-dynamically-configure-an-application/489072#4890723Answer by Ricardo Villamil for How to dynamically configure an application?Ricardo Villamil2009-01-28T19:57:58Z2009-01-28T19:57:58Z<p>It depends on how often these change and who or what changes them. For some application specific settings, it's best to use an XML or config file, where the developers are the ones responsible for updating it. For other "businessy" values (like exchange rates, tax rates, etc), it's best to keep them in the database and provide a UI for users (not developers) to update.</p>
<p>It also depends on how many apps depend on this value, for example, if several applications depend on some setting (such as email server addres), it's best to put it in a database since it'll be easily accessible from any machine where the app is running.</p>
http://stackoverflow.com/questions/484242/oracle-sql-passing-different-multiple-cursors-to-the-same-for-loop/485049#4850490Answer by Ricardo Villamil for [Oracle SQL] Passing different (multiple) cursors to the same For LoopRicardo Villamil2009-01-27T20:18:08Z2009-01-27T20:18:08Z<p>Why not build your cursor query dynamically and only use one cursor?</p>
<p>Where 77, 88 and 99 come from parameters into your stored procedure, I assume.</p>
<pre><code>cursor c1 is
select info_a, info_b from table_x where info_g in( 77, 88)
UNION
select info-a, info_b from table_y where info_j in (88, 99)
...
</code></pre>
http://stackoverflow.com/questions/481383/selecting-records-from-a-many-to-many-design/481434#4814340Answer by Ricardo Villamil for Selecting records from a many-to-many designRicardo Villamil2009-01-26T21:25:47Z2009-01-26T21:25:47Z<pre><code>Select studentname from Students s Where s.studentid NOT EXISTS (Select 1 From Student_Class sc where sc.studentid = s.studentid)
</code></pre>
http://stackoverflow.com/questions/481356/how-do-you-write-tests-to-test-functions-with-variable-return-values/481403#4814032Answer by Ricardo Villamil for How do you write tests to test functions with variable return values?Ricardo Villamil2009-01-26T21:20:58Z2009-01-26T21:20:58Z<p>What your unit tests need to do is setup the environment for this function to work properly, in other words, you simulate as if the system was running by setting up other variables, then you SHOULD be able to know what it will return based on how your unit test set up these variables (unless of course the return value is a random number, in which case all you could do, as Randolpho suggested, is make sure it doesn't throw).</p>
<p>If your unit tests is found in this situation of setting up and calling a whole bunch of other methods just to test this function, it's probably a good indication that your function is tightly coupled and you could probably break it down into smaller pieces.</p>
http://stackoverflow.com/questions/481175/method-chaining-generic-list-extensions/481208#4812080Answer by Ricardo Villamil for Method chaining generic list extensionsRicardo Villamil2009-01-26T20:28:13Z2009-01-26T20:33:20Z<p>Why not create a <code>Dictionary<string, List<string>></code>, that way you can add "Interest" as the key, and a list of values as the value. For example:</p>
<pre><code>Customer {
public Dictionary<string, List<string>> Characteristics;
.
.
.
}
...
Characteristics.Add("Interest", new List<string>());
Characteristics["Interest"].Add("Post questions on StackOverflow");
Characteristics["Interest"].Add("Answer questions on StackOverflow");
..
List<Characteristic> interestCharacteristics = Characteristics["Interest"];
</code></pre>
<p>Furthermore, if you wanted, you could limit your characteristics to a list of possible values by making it an enum, then use that as the data type of your dictionary's key:</p>
<pre><code>public enum CharacteristicType
{
Interest,
Job,
ThingsYouHate
//...etc
}
</code></pre>
<p>then declare your dictionary as:</p>
<pre><code>public Dictionary<CharacteristicType, List<string>> Characteristics;
..
Characteristics.Add(CharacteristicType.Interest, new List<string>());
Characteristics[CharacteristicType.Interest].Add("Post questions on StackOverflow");
Characteristics[CharacteristicType.Interest].Add("Answer questions on StackOverflow");
</code></pre>
http://stackoverflow.com/questions/474047/how-where-to-handle-configurationerrorsexception-in-a-windows-service/474132#474132-1Answer by Ricardo Villamil for How/Where to handle ConfigurationErrorsException in a windows service?Ricardo Villamil2009-01-23T19:22:31Z2009-01-23T20:30:20Z<p>First, check if your configuration contains the key that you're looking for, then wrap it in a try catch, then check if it's a valid integer:</p>
<pre><code>int retValue = 100;
if(this.ContainsKey("ProcessingSleepTime"))
{
object sleepTime = this["ProcessingSleepTime"];
int sleepInterval;
if(Int32.TryParse(sleepTime.ToString(), out sleepInterval)
{
retValue = sleepInterval;
}
}
return retValue;
</code></pre>
http://stackoverflow.com/questions/432160/how-to-make-sure-redundant-data-is-deleted-in-a-many-to-many-relationship/474372#4743720Answer by Ricardo Villamil for How to make sure redundant data is deleted in a many-to-many relationshipRicardo Villamil2009-01-23T20:22:58Z2009-01-23T20:22:58Z<p>I think you have to use an on delete trigger on your Posts table, that checks the tags of the post being deleted and deletes them if they aren't being referenced (in the PostTags table).</p>
<p>Before deleting your post, save this recordset:</p>
<pre><code>SELECT tagID, count(*) from PostsTags WHERE postId = 2 group by tagID;
</code></pre>
<p>Then, after you delete it, loop through this recordsoet and if count(*) is = 1, then delete the tag.</p>
http://stackoverflow.com/questions/474055/c-equivalent-of-getclassloader-getresourceasstream/474069#4740691Answer by Ricardo Villamil for C# equivalent of getClassLoader().getResourceAsStream(...)Ricardo Villamil2009-01-23T19:04:29Z2009-01-23T19:04:29Z<p>Once you've added the text file as a resource, and assigned a <code>resourceName</code> to it, then:</p>
<pre><code> Assembly assembly = Assembly.GetExecutingAssembly();
TextReader inputStream = new StreamReader(assembly.GetManifestResourceStream(resourceName));
string result = inputStream.ReadToEnd();
</code></pre>
<p>Note: this came from <a href="http://gibbons.co.za/archive/2005/02/02/253.aspx" rel="nofollow">this</a> posting</p>
http://stackoverflow.com/questions/473752/reading-private-queues-using-a-windows-service-listener/473830#4738300Answer by Ricardo Villamil for Reading private queues using a windows service listenerRicardo Villamil2009-01-23T17:44:54Z2009-01-23T17:44:54Z<p>I'd try to make the service also act as some sort of server (WCF) to listen for requests (as well as processing the private queue). Then your asp.net could connect to it and request whatever info it needs from it.</p>
<p>This service could then be your only entry point to the queue and any other application you write could go through it to access the queue.</p>
http://stackoverflow.com/questions/473218/what-are-some-best-practices-for-optimizing-multiple-column-like-sql-queries/473280#4732800Answer by Ricardo Villamil for What are some best practices for optimizing multiple column LIKE SQL queries?Ricardo Villamil2009-01-23T15:20:16Z2009-01-23T15:20:16Z<p>I would try to not have my sql code add the '%' but instead expect the parameter to already have it, this of course, after you have validated it in your application! Then don't include '=' comparisons, use LIKE all the time:</p>
<p>WHERE (cu.LastName LIKE @LastName) </p>
<p>instead of:</p>
<p>WHERE (cu.LastName = @LastName OR cu.LastName LIKE @LastName + '%')</p>
http://stackoverflow.com/questions/473188/output-parameter/473238#4732380Answer by Ricardo Villamil for output parameter Ricardo Villamil2009-01-23T15:11:22Z2009-01-23T15:11:22Z<p>When you create your SqlParameter object, assign Output to its Direction property. Then after you execute your query, cast out the value of the parameter to a C# variable and use it as you please:</p>
<pre><code>SqlParameter newId = new SqlParameter();
newId.Direction = ParameterDirection.Output;
SqlCommand cmd = new SqlCommand();
// ... build your cmd...and add your other parameters as required
cmd.Parameters.Add(newId);
cmd.ExecuteNonQuery();
int outValue = (int)newId.Value;
</code></pre>
<p>Then use <code>outValue</code> to pass it to your next SQL query.</p>
http://stackoverflow.com/questions/469445/last-words-of-a-programmer/470510#4705107Answer by Ricardo Villamil for Last words of a ??? programmerRicardo Villamil2009-01-22T19:35:25Z2009-01-22T19:35:25Z<p>UNIX programmer:</p>
<pre><code>die_you_gravy_sucking_pig_dog();
</code></pre>
<p>See Jeff Atwoods post: <a href="http://www.codinghorror.com/blog/archives/001211.html" rel="nofollow">http://www.codinghorror.com/blog/archives/001211.html</a></p>
http://stackoverflow.com/questions/465052/how-to-avoid-failed-to-load-viewstate-exception-when-adding-markup-to-a-repeate/466912#4669121Answer by Ricardo Villamil for How to avoid 'Failed to load viewstate' exception when adding markup to a repeater?Ricardo Villamil2009-01-21T20:45:54Z2009-01-21T20:45:54Z<p>I would try the OnItemDataBound event instead of prerender.</p>
http://stackoverflow.com/questions/464929/problems-with-combining-serialization-and-databinding/466881#4668810Answer by Ricardo Villamil for Problems with combining Serialization and DataBindingRicardo Villamil2009-01-21T20:38:59Z2009-01-21T20:38:59Z<p>I agree with previous post, break out your processing from your data. Much cleaner and easier to debug, maintain and scale.</p>
http://stackoverflow.com/questions/425025/toad-vs-aquafold-connecting-to-oracleComment by Ricardo Villamil on TOAD vs AquaFold - Connecting to OracleRicardo Villamil2009-07-28T16:03:38Z2009-07-28T16:03:38ZI "settled" with SQL Developer, yet I still use TOAD on a Windows VM a lot. Toad is super fast and responsive.http://stackoverflow.com/questions/899414/in-java-why-super-class-method-cant-access-protected-or-private-methods-variablComment by Ricardo Villamil on In Java, why super-class method can't access protected or private methods/variables from sub-class instance?Ricardo Villamil2009-05-22T19:00:55Z2009-05-22T19:00:55Zno, it doesn't make sense.http://stackoverflow.com/questions/403398/c-mysql-connection-problems/403566#403566Comment by Ricardo Villamil on C# MySQL Connection problemsRicardo Villamil2009-05-20T20:11:39Z2009-05-20T20:11:39ZNo, but the constructor itself can reference a null object within its body, therefore throwing a null reference exception.http://stackoverflow.com/questions/496655/difference-between-creating-guid-keys-in-c-vs-the-db/496680#496680Comment by Ricardo Villamil on Difference between creating Guid keys in C# vs. the DBRicardo Villamil2009-01-30T20:17:50Z2009-01-30T20:17:50Z@Mark, of course it does,look up the RETURNING INTO clausehttp://stackoverflow.com/questions/496655/difference-between-creating-guid-keys-in-c-vs-the-db/496681#496681Comment by Ricardo Villamil on Difference between creating Guid keys in C# vs. the DBRicardo Villamil2009-01-30T20:08:29Z2009-01-30T20:08:29ZHm, sorry if it came that way, I'm a hardcore C#'er and dindn't intend to say that, I just meant to say that constraints and db code you write once and in one place and forget about it, versus doing it in several C# apps.http://stackoverflow.com/questions/282067/c-odp-net-and-ora-01475-must-reparse-cursor-to-change-bind-variable-datatype/489157#489157Comment by Ricardo Villamil on C# - ODP.NET and ora-01475 must reparse cursor to change bind variable datatypeRicardo Villamil2009-01-29T17:01:11Z2009-01-29T17:01:11ZYes, and that's exactly the reason why I'm getting the problem, because in the first query I pass a null and then later on I pass a real date...I've solved it by explicitly specifying the Parameter DBType to Date, even if it's null. Thanks!http://stackoverflow.com/questions/489071/when-can-an-exception-in-a-net-winforms-app-just-get-eaten-without-being-caughtComment by Ricardo Villamil on When can an exception in a .NET WinForms app just get eaten without being caught or bubbling up to a windows exception?Ricardo Villamil2009-01-29T14:07:34Z2009-01-29T14:07:34ZDo you have a "catch all" exception handler such as: AppDomain.CurrentDomain.UnhandledException += OnDomainExceptionThrown;http://stackoverflow.com/questions/489071/when-can-an-exception-in-a-net-winforms-app-just-get-eaten-without-being-caught/489578#489578Comment by Ricardo Villamil on When can an exception in a .NET WinForms app just get eaten without being caught or bubbling up to a windows exception?Ricardo Villamil2009-01-29T14:05:56Z2009-01-29T14:05:56ZIf you're able to catch it in the debugger, can you see what type of exception it is? And the full stack trace?http://stackoverflow.com/questions/489052/how-to-dynamically-configure-an-application/489067#489067Comment by Ricardo Villamil on How to dynamically configure an application?Ricardo Villamil2009-01-28T20:05:07Z2009-01-28T20:05:07ZThen it sounds like you might want to keep these settings in the databasehttp://stackoverflow.com/questions/481314/in-net-when-if-ever-should-i-pass-structs-by-reference-for-performance-reasonsComment by Ricardo Villamil on In .Net, when if ever should I pass structs by reference for performance reasons?Ricardo Villamil2009-01-26T21:11:26Z2009-01-26T21:11:26ZThat's a rather large struct, why not convert it to a class? If you're gonna be passing it by ref, it defeats the purpose of making it a struct anyway.http://stackoverflow.com/questions/479049/why-java-fails-to-use-verdana-font-with-firefox3-under-terminal-server-accessco/479909#479909Comment by Ricardo Villamil on Why Java fails to use Verdana Font with Firefox3 under Terminal server? (AccessControlException)Ricardo Villamil2009-01-26T20:51:16Z2009-01-26T20:51:16ZI think you're right, you can include fonts in your JRE, but make sure you have distribution rights for that font first!http://stackoverflow.com/questions/480677/install-asp-net-mvc-without-administrator-rightsComment by Ricardo Villamil on Install ASP.Net MVC without administrator rights?Ricardo Villamil2009-01-26T18:03:54Z2009-01-26T18:03:54ZWow, I agree with previous comment, developers should have full access to their machines. My network admin keeps getting mad at me because I install too much crap on my machine, but that's the nature of our jobs, to try new stuff and decide what's best to solve the problem at hand.http://stackoverflow.com/questions/476060/what-do-you-suggest-on-how-to-stop-hit-counter-for-the-same-ip-in-asp-net-websiteComment by Ricardo Villamil on What do you suggest on how to stop hit counter for the same IP in asp.NET website ?Ricardo Villamil2009-01-25T17:47:07Z2009-01-25T17:47:07ZRather than writing your own, have you checked Google Analytics? Very good for counting new vs. existing visitors, plus a whole bunch of other nice counters.http://stackoverflow.com/questions/477683/how-to-make-visual-studio-take-automatic-actions-on-check-inComment by Ricardo Villamil on How to make Visual Studio take automatic actions on check-in?Ricardo Villamil2009-01-25T17:44:35Z2009-01-25T17:44:35ZNot exactly an answer to your question, but have you checked Cruise Control for .NET? it's very good for continuous integration, but I don't think you can set it up to revert if the checked in code broke the build. http://stackoverflow.com/questions/466782/how-to-enlarge-presentation-font-size-for-projector-in-vs2005-for-solution-expl/466911#466911Comment by Ricardo Villamil on How to enlarge presentation font size (for projector) in VS2005 for Solution Explorer.Ricardo Villamil2009-01-22T17:01:53Z2009-01-22T17:01:53Z"Tools -> Options -> Fonts and Colors -> Click on dropdown 'Show settings for" and select TextEditor" This will change the code window, not the solution explorer, not sure where you're looking at.