User Esteban Brenes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T23:58:14Zhttp://stackoverflow.com/feeds/user/14177http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/136195/trying-to-set-get-a-javascript-variable-in-an-activex-webbrowser-from-c0Trying to set/get a JavaScript variable in an ActiveX WebBrowser from C#Esteban Brenes2008-09-25T21:15:44Z2009-11-19T14:44:28Z
<p>We have a windows application that contains an ActiveX WebBrowser control. As part of the regular operation of this application modifications are made to the pages that are displayed by the ActiveX WebBrowser control. Part of these modifications involve setting a JavaScript variable in a web page being loaded into the ActiveX WebBrowser. </p>
<p>We need to initialize this variable within C# (originally, VB6 code was initializing the value). The value of this variable is a COM-visible class object. </p>
<p>However, for simplicity we've reduced the problem to setting a string value. Our original page involves frames and the like but the same problems happens in a page like this:</p>
<pre><code><HTML>
<HEAD>
<TITLE>Test</TITLE>
<SCRIPT type="text/javascript">
var field = 'hello world';
</SCRIPT>
</HEAD>
<BODY>
<input type="button" value="See field" onclick="javascript:alert(field);"/>
</BODY>
</HTML>
</code></pre>
<p>We want to access the <em>field</em> variable and assign a value to it. In VB6 the code for this was pretty straightforward:</p>
<pre><code>doc.Script.field = 'newValue'
</code></pre>
<p>However, in C# we've had to resort to other tricks, like this: </p>
<pre><code>Microsoft.VisualBasic.CompilerServices.NewLateBinding.LateSet(Script, null, "field",new object[] { "newValue"},null, null);
</code></pre>
<p>The point of the page is to test whether our variable was properly assigned by C#. Clicking on the button should yield whatever new value was injected by C#. So for example, clicking on the button in the page we get an alert showing: "newValue".</p>
<p>That works the first time, but it doesn't work if we reload the page. On subsequent calls we cannot set the value of the variable <code>field</code>. </p>
<p>Has anyone had any experience doing this type of operation before?</p>
http://stackoverflow.com/questions/1365789/set-application-name-in-task-managers-applications-tab1Set Application name in Task Manager's Applications TabEsteban Brenes2009-09-02T04:12:04Z2009-09-02T04:59:19Z
<p>I have a WinForms application written in C# for .NET 3.5 that needs to show a specific name in the Task Manager's Applications tab. However, I need for this text to be different from the Form's text. </p>
<p>The behavior I've seen so far is that the Task Manager Applications tab will show the value of the Text property of the System.Windows.Forms.Form being displayed. However, I'd like to display the long name of the application in the Form.Text property, and use an abbreviated name in the Task Manager's Applications tab.</p>
<p>I know this behavior was supported in VB6, where the Application Title (Set through Project Properties -> Make tab -> Application Title field, or in the .VBP file itself) would be the name displayed in the Applications tab. Is there a way to replicate this functionality in C#/.NET?</p>
<p>This bit of information from MSDN seems to indicate that the Text property is the only source in .NET: <a href="http://msdn.microsoft.com/en-us/library/fc353bw2.aspx" rel="nofollow">App Object for Visual Basic 6.0 Users</a>. However, I'd like to know if there's a way around this.</p>
http://stackoverflow.com/questions/808262/is-j2mes-integer-parseint-broken0Is J2ME's Integer.parseInt() broken?Esteban Brenes2009-04-30T17:58:52Z2009-04-30T19:12:36Z
<p>While writing a game for J2ME we ran into an issue using java.lang.Integer.parseInt()</p>
<p>We have several constant values defined as hex values, for example:</p>
<pre><code>CHARACTER_RED = 0xFFAAA005;
</code></pre>
<p>During the game the value is serialized and is received through a network connection, coming in as a string representation of the hex value. In order to parse it back to an int we unsuccesfully tried the following:</p>
<pre><code>// Response contains the value "ffAAA005" for "characterId"
string hexValue = response.get("characterId");
// The following throws a NumberFormatException
int value = Integer.parseInt(hexValue, 16);
</code></pre>
<p>Then I ran some tests and tried this:</p>
<pre><code>string hexValue = Integer.toHexString(0xFFAAA005);
// The following throws a NumberFormatException
int value = Integer.parseInt(hexValue, 16);
</code></pre>
<p>This is the exception from the actual code:</p>
<pre><code>java.lang.NumberFormatException: ffaaa005
at java.lang.Integer.parseInt(Integer.java:462)
at net.triadgames.acertijo.GameMIDlet.startMIDlet(GameMIDlet.java:109)
</code></pre>
<p>This I must admit, baffled me. Looking at the parseInt code the NumberFormatException seems to be thrown when the number being parsed "crosses" the "negative/positive boundary" (perhaps someone can edit in the right jargon for this?).</p>
<p>Is this the expected behavior for the Integer.parseInt function? In the end I had to write my own hex string parsing function, and I was quite displeased with the provided implementation. </p>
<p>In other words, was my expectation of having Integer.parseInt() work on the hex string representation of an integer misguided?</p>
<p>EDIT: In my initial posting I wrote 0xFFFAAA005 instead of 0xFFAAA005. I've since corrected that mistake.</p>
http://stackoverflow.com/questions/208772/process-text-files-ftped-into-a-set-of-directories-in-a-hosted-server0Process text files ftp'ed into a set of directories in a hosted server Esteban Brenes2008-10-16T14:25:19Z2009-04-03T01:01:51Z
<p>The situation is as follows:</p>
<p>A series of remote workstations collect field data and ftp the collected field data to a server through ftp. The data is sent as a CSV file which is stored in a unique directory for each workstation in the FTP server.</p>
<p>Each workstation sends a new update every 10 minutes, causing the previous data to be overwritten. We would like to somehow concatenate or store this data automatically. The workstation's processing is limited and cannot be extended as it's an embedded system. </p>
<p>One suggestion offered was to run a cronjob in the FTP server, however there is a Terms of service restriction to only allow cronjobs in 30 minute intervals as it's shared-hosting. Given the number of workstations uploading and the 10 minute interval between uploads it looks like the cronjob's 30 minute limit between calls might be a problem.</p>
<p>Is there any other approach that might be suggested? The available server-side scripting languages are perl, php and python.</p>
<p>Upgrading to a dedicated server might be necessary, but I'd still like to get input on how to solve this problem in the most elegant manner.</p>
http://stackoverflow.com/questions/448106/how-do-i-prevent-print-screen/448159#4481591Answer by Esteban Brenes for How do I prevent print screenEsteban Brenes2009-01-15T19:36:25Z2009-01-15T19:36:25Z<p>Perhaps this article might be of use:</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc163713.aspx" rel="nofollow">Disabling Print Screen, Calling Derived Destructors and More</a></p>
http://stackoverflow.com/questions/421004/am-i-wasting-my-time-by-designing-my-asp-net-components-for-wysiwyg-tools/421059#4210592Answer by Esteban Brenes for Am I wasting my time by designing my ASP.NET components for WYSIWYG toolsEsteban Brenes2009-01-07T16:45:01Z2009-01-07T16:45:01Z<p>I think you're not wasting your time, especially if you want to release these controls for other developers to use. If the effort required is truly "a little extra" and you find it helps you in larger projects I think your controls are improved by being WYSIWYG tool compatible.</p>
<p>Personally, I generally hand code HTML/XHTML but I like using WYSIWYG functionality on occasion. I've always found that controls that were WYSIWYG friendly were easier to use than controls that relied on all code being written manually.</p>
http://stackoverflow.com/questions/345354/vs2008-windows-form-designer-does-not-like-my-control/345457#3454570Answer by Esteban Brenes for VS2008 Windows Form Designer does not like my control.Esteban Brenes2008-12-05T23:02:12Z2008-12-05T23:02:12Z<p>The compiler is right (as it tends to be). </p>
<p>Neither textbox1 nor listbox1 are defined in the source code. They don't appear in either the derived class or the base class.</p>
<p>You should add the following to your base class:</p>
<pre><code>protected System.Windows.Forms.TextBox textbox1;
protected System.Windows.Forms.ListBox listbox1;
</code></pre>
<p>You'll also need to do the changes outlined by Nazgulled if you decide to use private instead of protected for textbox1 and listbox1.</p>
http://stackoverflow.com/questions/253914/compare-memory-footprint-of-net-and-vb6-applications4Compare memory footprint of .Net and VB6 applications.Esteban Brenes2008-10-31T15:30:42Z2008-11-29T17:43:46Z
<p>I've been trying to compare the memory footprint between a VB6 application and .Net application. Trying to determine what's the average difference between the two.</p>
<p>The .Net code is for the most part a direct translation of the VB6 and for the most part has the same instructions as they would be programmed in C#. So while it's an apple to oranges comparison, it's a comparison on programs that are functionally (if not logically) equivalent.</p>
<p>I've been using <a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">Process Explorer</a> to help me determine the usage of memory of the applications, however there are a few areas that have left me perplexed:</p>
<ol>
<li>I've been trying to determine the overall memory consumption. Which of the Process Memory columns should I be using. So far I've been looking at the Working Set ones.</li>
<li>For comparing the size of DLL's within an application PExplorer shows Size, WS Total and other WS counters, how can these be interpreted? And why is Size so different from WS Total, shouldn't these be the same?</li>
</ol>
<p>So far I've gathered that WS Total includes both WS Private and WS Shareable. So using WS Total only can be a deceptive measure. I've also read from questions such as <a href="http://stackoverflow.com/questions/223283/net-exe-memory-footprint">.Net exe memory footprint</a> that the .Net working set is usually larger than it should be. Would instantiating the process in a memory starved environment, say a VM with 128 MB reduce the working set size to it's minimum?</p>
<p>Any help or insight would be greatly appreciated.</p>
http://stackoverflow.com/questions/295759/how-to-include-sql-compact-and-net-framework-in-my-installer/295802#2958020Answer by Esteban Brenes for How to include SQL Compact and .NET Framework in my InstallerEsteban Brenes2008-11-17T15:10:44Z2008-11-17T15:10:44Z<p>You might also want to register for redistribution rights:</p>
<p><a href="http://www.microsoft.com/sqlserver/2005/en/us/compact-redistribute.aspx" rel="nofollow">http://www.microsoft.com/sqlserver/2005/en/us/compact-redistribute.aspx</a></p>
http://stackoverflow.com/questions/265585/why-cant-a-class-extend-its-own-nested-class-in-c/265749#2657492Answer by Esteban Brenes for Why can't a class extend its own nested class in C#?Esteban Brenes2008-11-05T16:35:56Z2008-11-05T16:35:56Z<p>When you declare a nested class, you are in essence saying that the nested class is a member of the containing class. That is: B is a member of A, and class B cannot exist outside of the scope of class A.</p>
<p>In other words, by nesting the classes you are stating that B should not exist outside of A's scope. Unlike a namespace, you cannot declare an object of type B. You can only declare an object of type A.B, since A's existence is required for B to exist. So while there is no inheritance, there is a direct dependence.</p>
<p>Additionally, as outlined in the specification in the Nested Types section, nested types have access to all of the container class's methods. </p>
<blockquote>
<p>10.2.6.5 Access to private and protected members of the containing type
<br>
A nested type has access to all
of the members that are accessible to
its containing type, including members
of the containing type that have
private and protected declared
accessibility.</p>
</blockquote>
<p>So B can contain references to A that are private/protected, meaning B cannot be fully resolved and created unless A can be fully resolved and created, and if A depends on B you end up in a strange loop. So while it is not explicit, it is strongly implied that A cannot inherit from B due to this relationship.</p>
<p>If A could be derived from B, then A's definition would be recursive and the compiler might never be able to finish resolving A. While there might be ways to allow these sorts of constructs, they have been explicitly disallowed in C#.</p>
http://stackoverflow.com/questions/263370/range-for-integer-values-of-chars-in-c/263455#2634552Answer by Esteban Brenes for range for integer values of chars in c++Esteban Brenes2008-11-04T21:06:01Z2008-11-04T21:06:01Z<p><a href="http://www.trilithium.com/johan/2005/01/char-types/" rel="nofollow">Character types in C and C++</a></p>
<p>From reading that it seems it can be any of those, depending on implementation.</p>
http://stackoverflow.com/questions/263234/net-minimize-to-tray-and-minimize-required-resources/263297#2632972Answer by Esteban Brenes for .NET Minimize to Tray AND Minimize required resourcesEsteban Brenes2008-11-04T20:23:24Z2008-11-04T20:51:11Z<p>You're probably looking for this function call: <a href="http://msdn.microsoft.com/en-us/library/ms686234(VS.85).aspx" rel="nofollow">SetProcessWorkingSetSize</a></p>
<p>If you execute the API call SetProcessWorkingSetSize with -1 as an argument, then Windows will trim the working set immediately.</p>
<p>However, if most of the memory is still being held by resources you haven't released minimizing the working set will do nothing. This combined with the suggestion of forcing Garbage Collection might be your best bet.</p>
<p>From your application description, you might want to also verify how much memory the ListView is consuming as well as the database access objects. I'm also not clear on how you're making those monitoring database calls. You might want to isolate that into a separate object and avoid touching any of the forms while minimized, otherwise the program will be forced to keep the controls loaded and accessible. You could start a separate thread for monitoring, and pass the ListView.Count as a parameter.</p>
<p>Some sources:</p>
<p><a href="http://www.ddj.com/windows/184416804" rel="nofollow">.NET Applications and the Working Set</a></p>
<p><a href="http://www.itwriting.com/dotnetmem.php" rel="nofollow">How much memory does my .Net Application use?</a></p>
http://stackoverflow.com/questions/263229/datetime-utcnow-ticks-sometimes-jumps-a-remarkable-amount/263349#2633491Answer by Esteban Brenes for DateTime.UtcNow.Ticks sometimes jumps a remarkable amountEsteban Brenes2008-11-04T20:42:07Z2008-11-04T20:42:07Z<p>Actually, just running some test with this loop:</p>
<pre><code>static DateTime past = DateTime.UtcNow;
static void PrintTime()
{
while (stopLoop == 0)
{
DateTime now = DateTime.UtcNow;
Console.WriteLine("{0} - {1} d: {2}", now, now.Ticks, now - past);
Program.past = now;
Thread.Sleep(2000);
}
}
</code></pre>
<p>If I changed my system's clock time in between calls, the delta would jump accordingly. So if you have time synchronization running or some other process that affects system time, then that will be reflected in the output.</p>
http://stackoverflow.com/questions/251391/why-is-lockthis-bad/251668#25166817Answer by Esteban Brenes for Why is lock(this) {...} bad?Esteban Brenes2008-10-30T20:34:15Z2008-10-30T20:57:41Z<p>It is bad form to use <code>this</code> in lock statements because it is generally out of your control who else might be locking on that object.</p>
<p>In order to properly plan parallel operations, special care should be taken to consider possible deadlock situations, and having an unknown number of lock entry points hinders this. For example, any one with a reference to the object can lock on it without the object designer/creator knowing about it. This increases the complexity of multi-threaded solutions and might affect their correctness.</p>
<p>A private field is usually a better option as the complier will enforce access restrictions to it, and it will encapsulate the locking mechanism. Using <code>this</code> violates encapsulation by exposing part of your locking implementation to the public. It is also not clear that you will be acquiring a lock on <code>this</code> unless it has been documented. Even then, relying on documentation to prevent a problem is sub-optimal.</p>
<p>Finally, there is the common misconception that <code>lock(this)</code> actually modifies the object passed as a parameter, and in some way makes it read-only or inaccessible. This is <strong>false</strong>. The object passed as a parameter to <code>lock</code> merely serves a <strong>key</strong>. If a lock is already being held on that key, the lock cannot be made, otherwise, the lock is allowed.</p>
<p>Run the following C# code as an example.</p>
<pre><code>public class Person
{
private int age;
private string name;
public int Age
{
get { return age; }
set { age = value; }
}
public string Name
{
get { return name; }
set { name = value; }
}
public Person(string name)
{
this.age = 0;
this.name = name;
}
public void LockThis()
{
lock (this)
{
System.Threading.Thread.Sleep(10000);
}
}
public void GrowOld()
{
this.age++;
}
}
class Program
{
static void Main(string[] args)
{
Person nancy = new Person("Nancy Drew");
nancy.Age = 15;
Thread a = new Thread(nancy.LockThis);
Thread b = new Thread(Program.Timewarp);
Thread c = new Thread(Program.NameChange);
a.Start();
b.Start(nancy);
c.Start(nancy);
a.Join();
Console.ReadLine();
}
static void Timewarp(object subject)
{
Person person = subject as Person;
if (person == null) throw new ArgumentNullException("subject");
lock (person.Name)
{
while (person.Age <= 23)
{
if (Monitor.TryEnter(person, 10) == false)
{
Console.WriteLine("'this' person is locked!");
}
else Monitor.Exit(person);
person.GrowOld();
Console.WriteLine("{0} is {1} years old.", person.Name, person.Age);
}
}
}
static void NameChange(object subject)
{
Person person = subject as Person;
if (person == null) throw new ArgumentNullException("subject");
// Be careful about using strings as locks
if (Monitor.TryEnter(person.Name, 30) == false)
{
Console.WriteLine("Failed to obtain lock on 'person.Name' on first try, wait longer.");
}
else Monitor.Exit(person.Name);
if (Monitor.TryEnter("Nancy Drew", 30) == false)
{
Console.WriteLine("Failed to obtain lock using 'Nancy Drew' literal, locked by 'person.Name' since both are the same thanks to inlining!");
}
else Monitor.Exit("Nancy Drew");
if (Monitor.TryEnter(person.Name, 10000))
{
string oldName = person.Name;
person.Name = "Nancy Callahan";
Console.WriteLine("Name changed from '{0}' to '{1}'.", oldName, person.Name);
}
else Monitor.Exit(person.Name);
}
}
</code></pre>
http://stackoverflow.com/questions/227417/what-does-shift-mean-in-this-vb6-code3What does "Shift:=" mean in this VB6 code?Esteban Brenes2008-10-22T20:27:25Z2008-10-29T16:14:22Z
<p>I've run across the following line in a VB6 application.</p>
<pre><code>mobjParentWrkBk.ExcelWorkBook.Application.Selection.Insert Shift:=xlToRight
</code></pre>
<p>Unfortunately Google and other search engines have not been very useful as they seem to omit the := part. </p>
<p>What would be a C# equivalent?</p>
http://stackoverflow.com/questions/247313/can-i-format-a-string-like-a-number-in-net/247417#2474176Answer by Esteban Brenes for Can I Format A String Like A Number in .NET?Esteban Brenes2008-10-29T16:11:47Z2008-10-29T16:11:47Z<p>Best I can think of without having to convert to a long/number and so it fits one line is:</p>
<pre><code>string number = "1234567890";
string formattedNumber = string.Format("{0}-{1}-{2}", number.Substring(0,3), number.Substring(3,3), number.Substring(6));
</code></pre>
http://stackoverflow.com/questions/240758/how-do-you-encourage-someone-to-learn-to-use-the-debugger/240840#2408401Answer by Esteban Brenes for How do you encourage someone to learn to use the debugger?Esteban Brenes2008-10-27T17:55:48Z2008-10-27T20:38:59Z<p>Forget about forcing him to learn. People don't learn very well when forced, and he seems quite set in his ways despite what seems to be various generous offers to help him. As long as he's actually being productive and not holding your project back I'd say let him stick to his ways.</p>
<p>Of course, if his printline debugging starts becoming an issue you might want to bring it up again.</p>
<p>While printline debugging can be useful, it's one of many tools in a programmer's arsenal. And while many people seem to be upset about the implicit criticism on printline debugging, the central criticism is towards refusing to expand one's toolset. Any programmer who doesn't know how to use a debugger is found just as lacking as any programmer incapable of using a logger to pinpoint a problem. </p>
<p>Because seriously, the moment I read this question's title, the first thing I thought to myself was: </p>
<blockquote>
<p>What programmer wouldn't want to see the state of the program while it's running, like a good debugger can?"</p>
</blockquote>
http://stackoverflow.com/questions/235450/c-how-do-i-sort-the-columns-in-a-datagrid-into-alphabetical-order/235565#2355651Answer by Esteban Brenes for C# How do I sort the columns in a datagrid into alphabetical order?Esteban Brenes2008-10-24T23:11:37Z2008-10-24T23:11:37Z<p>This <a href="http://msdn.microsoft.com/en-us/library/0868ft3z(VS.80).aspx" rel="nofollow">MSDN article</a> should guide you along the way.</p>
<p>If you provide more information perhaps we can provide actual code for your specific problem.</p>
http://stackoverflow.com/questions/233501/it-the-use-of-multiple-languages-in-asp-net-code-behind-pages-acceptable/233750#2337506Answer by Esteban Brenes for It the use of multiple languages in ASP.NET code behind pages acceptable?Esteban Brenes2008-10-24T14:24:29Z2008-10-24T14:24:29Z<p>There are three points you should keep in mind:</p>
<ol>
<li>If it aint' broke don't fix it.</li>
<li>Team makeup and proficiencies</li>
<li>Coding standards and uniformity</li>
</ol>
<p>First off, like many have said if it's not broken, then why go through the effort of changing the code base. You risk adding bugs during the language transition, even if they're both .Net languages running in ASP.Net. </p>
<p>Second, I'm going to assume there was a valid reason for forking the project and using VB.Net instead of continuing with C#. What were the reasons behind this language change? Are those reasons no longer valid? Consider the validity of the assumptions that led to forking into a different language.</p>
<p>Third, are all team members competent in C#? Migrating all the code to C# might be a burden if several team members are not proficient in it.</p>
<p>Finally, I would suggest adopting coding standards and focus all new development in one language from this point onward. Along with those standards you might consider a policy dictating that if you need to modify/fix VB.Net pages that this page should be migrated to C#. </p>
<p>At that point the VB.Net page is no longer "not broken" and you'll most likely have to go through the debugging / testing stage anyway to verify the fixes/changes. So you're adding the cost of the migration to whatever bug fix. In this manner you can slowly migrate the code to C# without incurring a large one time cost.</p>
<p>If you balk at the cost of having to migrate a page along with any bug fix or change in a VB.Net page, then take note of this. You most likely don't have the time or resources to do a migration of ALL the VB.Net pages. As a mass migration would require even more time and would sensibly require you halt all work/fixes on the VB.Net pages while the migration is under way. This might be an indicator about whether migrating to C# is an option given your business needs.</p>
http://stackoverflow.com/questions/229765/triggers-that-cause-inserts-to-fail-possible/229802#2298023Answer by Esteban Brenes for TRIGGERs that cause INSERTs to fail? Possible?Esteban Brenes2008-10-23T13:56:09Z2008-10-23T13:56:09Z<p>From this <a href="http://www.brokenbuild.com/blog/2006/08/15/mysql-triggers-how-do-you-abort-an-insert-update-or-delete-with-a-trigger/" rel="nofollow">blog post</a></p>
<blockquote>
<p>MySQL Triggers: How do you abort an INSERT, UPDATE or DELETE with a
trigger? On EfNet’s #mysql someone
asked:</p>
<p><em>How do I make a trigger abort the operation if my business rule fails?</em></p>
<p>In MySQL 5.0 and 5.1 you need to
resort to some trickery to make a
trigger fail and deliver a meaningful
error message. The MySQL Stored
Procedure FAQ says this about error
handling:</p>
<p><em>SP 11. Do SPs have a “raise” statement to “raise application errors”? Sorry, not at present. The SQL standard SIGNAL and RESIGNAL statements are on the TODO.</em></p>
<p>Perhaps MySQL 5.2 will include SIGNAL
statement which will make this hack
stolen straight from MySQL Stored
Procedure Programming obsolete. What
is the hack? You’re going to force
MySQL to attempt to use a column that
does not exist. Ugly? Yes. Does it
work? Sure.</p>
<pre><code>CREATE TRIGGER mytabletriggerexample
BEFORE INSERT
FOR EACH ROW BEGIN
IF(NEW.important_value) < (fancy * dancy * calculation) THEN
DECLARE dummy INT;
SELECT Your meaningful error message goes here INTO dummy
FROM mytable
WHERE mytable.id=new.id
END IF; END;
</code></pre>
</blockquote>
http://stackoverflow.com/questions/223837/why-cant-i-read-a-file-path-correctly-using-c/223898#2238980Answer by Esteban Brenes for Why can't I read a file path correctly using C#?Esteban Brenes2008-10-21T23:14:30Z2008-10-21T23:14:30Z<p>Using the following code:</p>
<pre><code>class Program
{
static void Main(string[] args)
{
for (int i = 0; i < args.Length; i++)
{
Console.WriteLine("args {0}: {1}", i, args[i]);
Console.WriteLine(args[i].Substring(6, args[i].Length - 6));
}
}
}
</code></pre>
<p>I get the following output. As ZeissS mentioned, how are you setting the value of entry?</p>
<blockquote>
<p>program.exe /file:"c:\users\me\desktop\file.rtf"</p>
<p>args 0: /file:c:\users\me\desktop\file.rtf</p>
<p>c:\users\me\desktop\file.rtf</p>
</blockquote>
<p>What surprised me is that in the output it did not include the quotations around the path, it seems to strip those when passing it to the Main method. Might this be part of the problem?</p>
http://stackoverflow.com/questions/212550/a-script-on-this-page-is-causing-ie-to-run-slowly/212627#2126270Answer by Esteban Brenes for a script on this page is causing ie to run slowlyEsteban Brenes2008-10-17T15:22:25Z2008-10-17T15:22:25Z<p>I don't believe there's a tool that can find the offending script. You might try attaching an IE debugger like Visual Studio and maybe it will break at the point where the problem is occurring. But I can't give any guarantees on that working.</p>
<p>In the past when I've had similar problems I've simply commented out sections of code to test narrow down where the issue is occurring, usually in a binary search type pattern. Comment out half of the javascript libraries, etc...</p>
<p>Aside from that as others have said, this type of problem occurs from large loops and many setTimeout function calls or setTimeout recursive loops.</p>
http://stackoverflow.com/questions/192260/calculating-a-date-around-working-days-hours/192800#1928001Answer by Esteban Brenes for Calculating a date around working days/hours?Esteban Brenes2008-10-10T19:46:14Z2008-10-10T19:46:14Z<p>Here's some C# code which might help, it could be much cleaner, but it's a quick first draft.</p>
<pre><code> class Program
{
static void Main(string[] args)
{
// Test
DateTime deadline = DeadlineManager.CalculateDeadline(DateTime.Now, new TimeSpan(4, 0, 0));
Console.WriteLine(deadline);
Console.ReadLine();
}
}
static class DeadlineManager
{
public static DateTime CalculateDeadline(DateTime start, TimeSpan workhours)
{
DateTime current = new DateTime(start.Year, start.Month, start.Day, start.Hour, start.Minute, 0);
while(workhours.TotalMinutes > 0)
{
DayOfWeek dayOfWeek = current.DayOfWeek;
Workday workday = Workday.GetWorkday(dayOfWeek);
if(workday == null)
{
DayOfWeek original = dayOfWeek;
while (workday == null)
{
current = current.AddDays(1);
dayOfWeek = current.DayOfWeek;
workday = Workday.GetWorkday(dayOfWeek);
if (dayOfWeek == original)
{
throw new InvalidOperationException("no work days");
}
}
current = current.AddHours(workday.startTime.Hour - current.Hour);
current = current.AddMinutes(workday.startTime.Minute - current.Minute);
}
TimeSpan worked = Workday.WorkHours(workday, current);
if (workhours > worked)
{
workhours = workhours - worked;
// Add one day and reset hour/minutes
current = current.Add(new TimeSpan(1, current.Hour * -1, current.Minute * -1, 0));
}
else
{
current.Add(workhours);
return current;
}
}
return DateTime.MinValue;
}
}
class Workday
{
private static readonly Dictionary<DayOfWeek, Workday> Workdays = new Dictionary<DayOfWeek, Workday>(7);
static Workday()
{
Workdays.Add(DayOfWeek.Monday, new Workday(DayOfWeek.Monday, new DateTime(1, 1, 1, 10, 0, 0), new DateTime(1, 1, 1, 16, 0, 0)));
Workdays.Add(DayOfWeek.Tuesday, new Workday(DayOfWeek.Tuesday, new DateTime(1, 1, 1, 10, 0, 0), new DateTime(1, 1, 1, 16, 0, 0)));
Workdays.Add(DayOfWeek.Wednesday, new Workday(DayOfWeek.Wednesday, new DateTime(1, 1, 1, 10, 0, 0), new DateTime(1, 1, 1, 16, 0, 0)));
Workdays.Add(DayOfWeek.Thursday, new Workday(DayOfWeek.Thursday, new DateTime(1, 1, 1, 10, 0, 0), new DateTime(1, 1, 1, 16, 0, 0)));
Workdays.Add(DayOfWeek.Friday, new Workday(DayOfWeek.Friday, new DateTime(1, 1, 1, 10, 0, 0), new DateTime(1, 1, 1, 14, 0, 0)));
}
public static Workday GetWorkday(DayOfWeek dayofWeek)
{
if (Workdays.ContainsKey(dayofWeek))
{
return Workdays[dayofWeek];
}
else return null;
}
public static TimeSpan WorkHours(Workday workday, DateTime time)
{
DateTime sTime = new DateTime(time.Year, time.Month, time.Day,
workday.startTime.Hour, workday.startTime.Millisecond, workday.startTime.Second);
DateTime eTime = new DateTime(time.Year, time.Month, time.Day,
workday.endTime.Hour, workday.endTime.Millisecond, workday.endTime.Second);
if (sTime < time)
{
sTime = time;
}
TimeSpan span = eTime - sTime;
return span;
}
public static DayOfWeek GetNextWeekday(DayOfWeek dayOfWeek)
{
int i = (dayOfWeek == DayOfWeek.Saturday) ? 0 : ((int)dayOfWeek) + 1;
return (DayOfWeek)i;
}
private Workday(DayOfWeek dayOfWeek, DateTime start, DateTime end)
{
this.dayOfWeek = dayOfWeek;
this.startTime = start;
this.endTime = end;
}
public DayOfWeek dayOfWeek;
public DateTime startTime;
public DateTime endTime;
}
</code></pre>
http://stackoverflow.com/questions/182112/what-are-some-funny-loading-statements-to-keep-users-amused/183631#1836312Answer by Esteban Brenes for What are some funny loading statements to keep users amused?Esteban Brenes2008-10-08T16:23:46Z2008-10-08T16:23:46Z<p>For anyone who played Everquest this might be familiar:</p>
<p>"Teaching Snakes to Kick"</p>
http://stackoverflow.com/questions/183114/un-svn-a-working-copy/183166#1831665Answer by Esteban Brenes for 'Un-SVN' a working copyEsteban Brenes2008-10-08T14:48:09Z2008-10-08T14:48:09Z<p>If you're using TortoiseSVN you can just right click within the root folder of your working copy and click Export... That will work even if you have uncommited changes.</p>
<p>Likewise, you can just do an Export from your repository, and it won't create any of the .svn folders.</p>
<p>Another straightforward approach is to just delete all .svn folders as previously mentioned.</p>
http://stackoverflow.com/questions/179605/how-can-i-convert-vb6-code-to-c/179946#1799462Answer by Esteban Brenes for How can I convert VB6 code to C#?Esteban Brenes2008-10-07T19:25:03Z2008-10-07T19:25:03Z<p><a href="http://www.artinsoft.com" rel="nofollow">Artinsoft</a> does just this, especifically the <a href="http://www.artinsoft.com/pr_vbcompanion.aspx" rel="nofollow">Visual Basic Upgrade Companion</a>. </p>
<p>However, even after using the VBUC there's still some parts that of the system that needs to be migrated/proofed by hand. But it's usually a much smaller set of the original problem. And some of the migration issues have been resolved thanks to experience with past migrations.</p>
<p>Artinsoft is the same company that built the wizard that ships with Visual Studio, mentioned in theraccoonbear's post. However, if I'm not mistake the wizard only migrates VB6 to VB.Net.</p>
<p>Full disclosure: I work for Artinsoft</p>
http://stackoverflow.com/questions/178722/what-to-charge-clients-for-work-in-older-technologies/178802#1788022Answer by Esteban Brenes for What To Charge Clients For Work In Older Technologies?Esteban Brenes2008-10-07T14:46:28Z2008-10-07T14:46:28Z<p>It really depends on what your future aspirations entail and how comfortable you feel working in VB6 personally.</p>
<p>You could continue working on older technologies, which might take away time from other opportunities in newer technologies. So you might increase your fees to reflect this risk or if you feel this inhibits your growth professionally.</p>
<p>On the other hand, VB6 is reaching certain support milestones and is slowly being phased out by Microsoft. This might mean an opportunity to offer lucrative maintenance services for those unwilling to migrate to newer languages.</p>
<p>Additionally, what do you like doing the most? Do you like developing or do you like maintaining code? Your prices should reflect what you enjoy and what you don't enjoy, if only to incentivate getting more of the projects you're interested in. Plus I've always found it useful to receive a bonus for doing jobs which I find distasteful. The client is always free to find someone cheaper if they feel the rates are unfair.</p>
<p>This of course assumes you don't need the job and have other possibilities lined up.</p>
<p>And as others have said, your rates should reflect the value you bring with your efforts while trying to maximize your profits.</p>
http://stackoverflow.com/questions/163133/breakpoint-not-hooked-up-when-debugging-in-vs-net-2005/163652#1636524Answer by Esteban Brenes for Breakpoint not hooked up when debugging in VS.Net 2005Esteban Brenes2008-10-02T17:48:32Z2008-10-02T17:48:32Z<p>Maybe this suggestion might help:</p>
<ol>
<li>While debugging in Visual Studio, click on Debug > Windows > Modules. The IDE will dock a Modules window, showing all the modules that have been loaded for your project.</li>
<li>Look for your project's DLL, and check the Symbol Status for it.</li>
<li>If it says Symbols Loaded, then you're golden. If it says something like Cannot find or open the PDB file, right-click on your module, select Load Symbols, and browse to the path of your PDB. </li>
</ol>
<p>I've found that it's sometimes necessary to:</p>
<ol>
<li>stop the debugger</li>
<li>close the IDE</li>
<li>close the hosting application</li>
<li>nuke the obj and bin folders</li>
<li>restart the IDE</li>
<li>rebuild the project</li>
<li>go through the Modules window again</li>
<li>Once you browse to the location of your PDB file, the Symbol Status should change to Symbols Loaded, and you should now be able to set and catch a breakpoint at your line in code.</li>
</ol>
<p>Source: <a href="http://geekswithblogs.net/dbutscher/archive/2007/06/26/113472.aspx" rel="nofollow">The breakpoint will not currently be hit. No symbols have been loaded for this document.</a></p>
http://stackoverflow.com/questions/136195/trying-to-set-get-a-javascript-variable-in-an-activex-webbrowser-from-c/141381#1413811Answer by Esteban Brenes for Trying to set/get a JavaScript variable in an ActiveX WebBrowser from C#Esteban Brenes2008-09-26T19:18:31Z2008-09-26T19:36:42Z<p>These two articles helped us find a solution to our problem. They outline the basics of what one needs to know:</p>
<p><a href="http://www.codeproject.com/KB/cs/mshtml_automation.aspx" rel="nofollow">Microsoft Web Browser Automation using C#</a></p>
<p><a href="http://www.codeproject.com/KB/cs/advhost.aspx?target=idochostuihandler" rel="nofollow">Using MSHTML Advanced Hosting Interfaces</a></p>
<p>So we implemented a DocHostUIHandler interface and that allowed us to set a UIHandler, allowing us to reference the method from Javascript.</p>
http://stackoverflow.com/questions/86959/same-source-code-on-two-machines-yield-different-executable-behavior1Same source code on two machines yield different executable behaviorEsteban Brenes2008-09-17T19:55:25Z2008-09-19T12:22:10Z
<p>Here's the scenario: </p>
<p>A C# Windows Application project stored in SVN is used to create an executable. Normally, a build server handles the build process and creates builds at regular intervals which are used by testing. In this particular instance I was asked to modify a specific build and create the executable. </p>
<p>I'm not entirely sure if the build server modifies the project files, but I know it creates a tag in SVN of the source code it used to compile the executables. Using that tag I've checked out the code on a second machine, which is a development machine. I then compiled the source on the development machine.</p>
<p>When executed, the application that was compiled on the development machine does not function exactly like the one compiled by the build server. For example, on the testing machines a DateTime Parse execption is detected by the application. However, the build machine's executable does not throw any exeptions. If I run the executable on the development machine no exceptions are thrown.</p>
<p>So in summary, both machines are theoretically using the same source code and projects.<br />
The development machine's executable only works on the dev machine. The Build machine's executable works on every machine, including the dev machine.</p>
<p>Are the machine's Regional Settings or Time Zone stored in the compiled executable? Any idea what might cause this behaviour or how to check the executables to find the possible differences and correct them?</p>
<p>Unfortunately, I cannot take a testing machine and attach a debugger to it. As soon as I can I will.</p>
http://stackoverflow.com/questions/1241912/whats-wrong-with-the-analogy-between-software-and-building-construction/1241920#1241920Comment by Esteban Brenes on What's wrong with the analogy between software and building construction?Esteban Brenes2009-11-10T15:46:19Z2009-11-10T15:46:19Z@kuosan: It is also worth pointing out that most buildings are derivatives of accepted blueprints. The majority of houses are neither innovative or very different from what has come before.
Our equivalent in software is easily replicated and hence we tend to view building a house as building new software. It's all too easy to forget you ALWAYS have to build a house, whereas with software you can just copy it! http://stackoverflow.com/questions/547710/why-is-syntactic-sugar-sometimes-considered-a-bad-thing/547815#547815Comment by Esteban Brenes on Why is Syntactic Sugar sometimes considered a bad thing?Esteban Brenes2009-10-05T21:09:21Z2009-10-05T21:09:21ZYour point on the i++ / i = i + 1 syntactic sugar having consequences can be illustrated by this question: <a href="http://stackoverflow.com/questions/547668/why-isnt-our-c-graphics-code-working-any-more" rel="nofollow" title="why isnt our c graphics code working any more">stackoverflow.com/questions/547668/…</a>
Where the change from x = x * y to x *= y caused some issues.http://stackoverflow.com/questions/547668/why-isnt-our-c-graphics-code-working-any-more/547696#547696Comment by Esteban Brenes on Why isn't our c# graphics code working any more?Esteban Brenes2009-10-05T21:02:31Z2009-10-05T21:02:31ZI'd wager it was done for aesthetic reasons. Most likely someone figured "rect.Width = rect.Width *" was verbose and redundant and replaced it with the nicer-looking "rect.Width *=" http://stackoverflow.com/questions/1365789/set-application-name-in-task-managers-applications-tab/1365902#1365902Comment by Esteban Brenes on Set Application name in Task Manager's Applications TabEsteban Brenes2009-09-02T16:57:43Z2009-09-02T16:57:43ZThat's what I was fearing, but oh well. Thanks.http://stackoverflow.com/questions/319421/what-is-the-best-programming-language-for-web-development-and-why/319451#319451Comment by Esteban Brenes on What is the best programming language for web development and why?Esteban Brenes2009-05-20T22:18:12Z2009-05-20T22:18:12Z@hasen j: perhaps you could ammend your answer to reflect why you changed your mind?http://stackoverflow.com/questions/865741/else-considered-harmful-in-python/865781#865781Comment by Esteban Brenes on "else" considered harmful in Python?Esteban Brenes2009-05-14T21:28:29Z2009-05-14T21:28:29ZIt's hardly else's fault that the programmer's logic is faulty. '1 v 2 => Processing' is not logically equivalent to '1 v ~1 => Processing'. Programmer's really do need to take some binary/propositional logic, might as well blame boolean values for these sorts of mistakes.http://stackoverflow.com/questions/808262/is-j2mes-integer-parseint-broken/808274#808274Comment by Esteban Brenes on Is J2ME's Integer.parseInt() broken?Esteban Brenes2009-04-30T18:41:16Z2009-04-30T18:41:16Zkdgregory: thanks, that answers my question.http://stackoverflow.com/questions/808262/is-j2mes-integer-parseint-broken/808274#808274Comment by Esteban Brenes on Is J2ME's Integer.parseInt() broken?Esteban Brenes2009-04-30T18:40:42Z2009-04-30T18:40:42Z"If you parse a negative value, it will work: "-FFAAA005"", no that does not work either. That will also overflow for a signed 32-bit int.http://stackoverflow.com/questions/808262/is-j2mes-integer-parseint-brokenComment by Esteban Brenes on Is J2ME's Integer.parseInt() broken?Esteban Brenes2009-04-30T18:36:39Z2009-04-30T18:36:39Z@saua: well, it's only a bug if the contract is broken. From looking at Integer.parseInt's code it seems parseInt only expects a number using a given radix. So it wants to parse 0xFFAAA005 as 4289372165, instead of -5595131.http://stackoverflow.com/questions/808262/is-j2mes-integer-parseint-broken/808289#808289Comment by Esteban Brenes on Is J2ME's Integer.parseInt() broken?Esteban Brenes2009-04-30T18:29:01Z2009-04-30T18:29:01ZThanks. I've since corrected that, the problem of writing things from memory instead of looking at the actual code.http://stackoverflow.com/questions/808262/is-j2mes-integer-parseint-broken/808278#808278Comment by Esteban Brenes on Is J2ME's Integer.parseInt() broken?Esteban Brenes2009-04-30T18:25:09Z2009-04-30T18:25:09ZPlease look at the edited version. Thanks for pointing out that mistake in my original posting of the question.http://stackoverflow.com/questions/808262/is-j2mes-integer-parseint-broken/808277#808277Comment by Esteban Brenes on Is J2ME's Integer.parseInt() broken?Esteban Brenes2009-04-30T18:24:20Z2009-04-30T18:24:20ZThanks, fixed it in the question. The actual code value is 0xFFAAA005, not the 0xFFFAAA005 I originally listed in the question.http://stackoverflow.com/questions/808262/is-j2mes-integer-parseint-broken/808274#808274Comment by Esteban Brenes on Is J2ME's Integer.parseInt() broken?Esteban Brenes2009-04-30T18:23:38Z2009-04-30T18:23:38ZMy mistake when writing the question, the behavior still happens with 0xFFaaa005 which is the value that we are using in the code.http://stackoverflow.com/questions/37100/is-now-a-good-time-to-move-jobs/37110#37110Comment by Esteban Brenes on Is now a good time to move jobs?Esteban Brenes2009-04-07T20:08:09Z2009-04-07T20:08:09ZSo would you retract what you said? If so, why not edit it? :)http://stackoverflow.com/questions/623095/path-finding-in-a-java-2d-game/623108#623108Comment by Esteban Brenes on Path finding in a Java 2d Game?Esteban Brenes2009-03-12T19:52:00Z2009-03-12T19:52:00ZYou might be interested in this for a more detailed look at the Pac-Man Ghost logic: <a href="http://home.comcast.net/~jpittman2/pacman/pacmandossier.html" rel="nofollow">home.comcast.net/~jpittman2/pacman/…</a>