User Blorgbeard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T13:21:01Zhttp://stackoverflow.com/feeds/user/369http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1097333/how-do-i-add-items-to-all-windows-window-menus1How do I add items to all windows' window menus?Blorgbeard2009-07-08T10:48:46Z2009-12-03T18:26:23Z
<p>I'd like to write a utility in the vein of <a href="http://www.abstractpath.com/powermenu/" rel="nofollow">PowerMenu</a> - it adds some extra stuff into all applications' window menus (alt-space, that menu).</p>
<p>How does one go about doing this?</p>
http://stackoverflow.com/questions/1817836/what-is-meant-by-house-keeping-in-context-of-a-database/1817845#18178452Answer by Blorgbeard for What is meant by 'House Keeping' in context of a database ?Blorgbeard2009-11-30T04:25:08Z2009-11-30T04:25:08Z<p>Probably he means clean-up of old records, either moving them to some kind of archive, or just deleting them.</p>
<p>But to be sure, you should ask him to clarify what he means.</p>
http://stackoverflow.com/questions/1811883/database-records-lost-when-debugging/1811893#18118931Answer by Blorgbeard for Database records lost when debuggingBlorgbeard2009-11-28T07:37:47Z2009-11-28T21:11:40Z<p>Are you sure the database is actually being updated? Have you checked with something other than the program you're debugging?</p>
<p>Is there perhaps a transaction that you are not committing?</p>
<p><strong>Edit in reply to your comment</strong></p>
<p>It sounds like maybe you need to change the properties of your database file in your Visual Studio solution - turn off "Copy to output folder".</p>
http://stackoverflow.com/questions/1811885/syntax-error-unexpected/1811887#18118874Answer by Blorgbeard for syntax error, unexpected '<' Blorgbeard2009-11-28T07:33:50Z2009-11-28T07:52:00Z<p>Only PHP code should be between <code><?php</code> and <code>?></code>. </p>
<p>Remove the outer PHP tags:</p>
<pre><code><!-- Submitting to ourselves via POST -->
<form method="post" action="<?php echo $PHP_SELF; ?>"/>
</code></pre>
<p><strong>Update:</strong></p>
<p>I also changed the comment to an HTML comment. You don't want it showing up on the page. You could also just remove the comment, or do this:</p>
<pre><code><?php // Submitting to ourselves via POST ?>
<form method="post" action="<?php echo $PHP_SELF; ?>"/>
</code></pre>
<p>If you have HTML where PHP is expecting PHP code, you will get unexpected '<' errors, and if you have PHP where there should be HTML, it will show up on the webpage, unexecuted.</p>
http://stackoverflow.com/questions/1806587/need-a-help-with-tedit/1806606#18066066Answer by Blorgbeard for need a help with TEditBlorgbeard2009-11-27T03:28:24Z2009-11-27T03:28:24Z<p>Set your edit box's PasswordChar property to <code>*</code>.</p>
<p>This will make it display only asterisks, but the real text is still available to you in the <code>Text</code> property.</p>
http://stackoverflow.com/questions/1633673/does-keywow6464key-have-any-effect-on-32-bit-windows0Does KEY_WOW64_64KEY have any effect on 32 bit Windows?Blorgbeard2009-10-27T21:05:04Z2009-11-25T15:00:04Z
<p>It <em>appears</em> that specifying the <code>KEY_WOW64_64KEY</code> flag (<a href="http://msdn.microsoft.com/en-us/library/aa384129%28VS.85%29.aspx" rel="nofollow">reference</a>) when accessing a registry key under 32-bit Windows XP has no effect - that is, no error is thrown, and the key is opened as if you hadn't had the flag set.</p>
<p>I know Windows 2000 throws an error when it encounters this flag.</p>
<p>I want to make sure my app is compatible with as many versions of windows (2k and later) as possible. </p>
<p>Is there a Microsoft reference that specifies each version of Windows' behaviour for this flag? In particular, I'd like something that validates my assumption that it has no effect at all on post-2k 32-bit Windows.</p>
http://stackoverflow.com/questions/1767653/c-button-text-condition/1767668#17676680Answer by Blorgbeard for C# Button Text Condition.Blorgbeard2009-11-20T00:55:21Z2009-11-20T00:55:21Z<p>Do you want something like this?</p>
<pre><code>foreach (var btn in this.Controls.OfType<Button>()) {
btn.BackColor = (string.IsNullOrEmpty(btn.Text))
? SystemColors.ButtonFace : Color.AliceBlue;
}
</code></pre>
<p>I would put it in a method, and call it on form load, or whenever the buttons' texts changes.</p>
http://stackoverflow.com/questions/1754934/program-c-for-105-3-without-using-operator/1754983#17549839Answer by Blorgbeard for program c# for 10+(5/3) without using '/' operatorBlorgbeard2009-11-18T10:18:27Z2009-11-18T10:18:27Z<p><code>System.Diagnostics.Process.Start("http://google.com/search?q=10%2B(5%2F3)");</code></p>
<p>Hur hur hur.</p>
http://stackoverflow.com/questions/1089889/how-do-i-set-up-a-datagridview-comboboxcolumn-with-a-different-datasource-in-each1How do I set up a DataGridView ComboBoxColumn with a different DataSource in each cell?Blorgbeard2009-07-07T00:51:54Z2009-11-18T05:43:40Z
<p>I am setting up a <code>DataGridViewComboBoxColumn</code> like this:</p>
<pre><code>var newColumn = new DataGridViewComboBoxColumn() {
Name = "abc"
};
newColumn.DataSource = new string[] { "a", "b", "c" };
dgv.Columns.Add(newColumn);
</code></pre>
<p>This works: each row has a dropdown box in that column, populated with a, b, c.</p>
<p>However, now I would like to trim the list for certain rows. I'm trying to set the list per row like this:</p>
<pre><code>foreach (DataGridViewRow row in dgv.Rows) {
var cell = (DataGridViewComboBoxCell)(row.Cells["abc"]);
cell.DataSource = new string[] { "a", "c" };
}
</code></pre>
<p>However, this code has no effect - every row still shows "a", "b", "c".</p>
<p>I have tried replacing <code>new string[]</code> with <code>new List<string></code> and <code>new BindingList<string></code>, both to no avail.</p>
<p>I also have tried removing the code that sets <code>newColumn.DataSource</code>, but then the lists are empty.</p>
<p>How should I go about doing this properly?</p>
http://stackoverflow.com/questions/1740266/getstacktrace-in-delphi-74GetStackTrace in Delphi 7?Blorgbeard2009-11-16T05:33:16Z2009-11-17T23:05:53Z
<p>Using Delphi 7, how can I get a string representing the stack-trace from an <code>Exception</code>?</p>
<pre><code>try
SomethingDodgy();
except
on E:Exception do begin
// print stack trace
Log.Write(/* ??? */);
end;
end;
</code></pre>
<p>I hear there's a GetStackTrace function in the latest delphi, but I can't find anything for delphi 7. No, upgrading is not an option :)</p>
http://stackoverflow.com/questions/1751189/sqlite3-is-chopping-cutting-truncating-my-text-columns/1751239#17512391Answer by Blorgbeard for sqlite3 is chopping/cutting/truncating my text columnsBlorgbeard2009-11-17T19:38:41Z2009-11-17T19:38:41Z<p>There doesn't appear to be a way to make it automatic, but you can use the <code>.width</code> command to manually specific the column widths.</p>
<p>See <a href="http://www.sqlite.org/sqlite.html" rel="nofollow">here</a> and search for <code>.width</code>.</p>
http://stackoverflow.com/questions/1747055/c-finding-which-prefix-applies/1747076#17470764Answer by Blorgbeard for C# - Finding which prefix appliesBlorgbeard2009-11-17T07:01:18Z2009-11-17T07:01:18Z<p>I guess you could sort your prefixes by length (longest first).</p>
<p>Then when you need to process a number, you can run through the prefixes in order, and stop when <code>yourNumber.startsWith(prefix)</code> is true.</p>
http://stackoverflow.com/questions/1746964/hi-cmdlog-paramerters-addnew-sqlparameterrr-button2-text/1746974#17469741Answer by Blorgbeard for hi! cmdLog.Paramerters.Add(new SqlParameter("@rr",button2.text);Blorgbeard2009-11-17T06:29:28Z2009-11-17T06:29:28Z<p>Try this instead:</p>
<pre><code>cmdLog.Parameters.AddWithValue("@rr", button2.text);
</code></pre>
http://stackoverflow.com/questions/1746880/is-it-proper-a-way-to-select-count-from-two-different-tables/1746970#17469701Answer by Blorgbeard for Is it Proper a way to select count(*) from two different tablesBlorgbeard2009-11-17T06:27:53Z2009-11-17T06:27:53Z<p>To my knowledge, that's totally fine. </p>
<p>The subqueries won't add any appreciable overhead.</p>
http://stackoverflow.com/questions/1744725/system-testing-a-desktop-application/1746933#17469330Answer by Blorgbeard for System Testing a desktop applicationBlorgbeard2009-11-17T06:17:24Z2009-11-17T06:17:24Z<p>If you're willing to put money down, you could look at something like <a href="http://www.automatedqa.com/products/testcomplete/" rel="nofollow">TestComplete</a>. </p>
<p>Although I haven't really used it yet (our company just bought it), it <em>seems</em> quite nice. You can record clicks and keypresses and stuff, define success criteria, and it will replay the test for you later. It appears to be quite smart about UI changes - it remembers which button you clicked, not just the (x,y) of each click. </p>
<p>It's scriptable, or drag-and-drop programmable.</p>
<p>I'm not affiliated in any way, and this is not an endorsement, because I haven't really formed an opinion of it yet.</p>
http://stackoverflow.com/questions/1712963/how-often-should-a-programmer-commit-to-svn/1712968#171296815Answer by Blorgbeard for How often should a programmer commit to SVN?Blorgbeard2009-11-11T04:16:06Z2009-11-11T04:16:06Z<p>I try to commit whenever I complete a 'piece' of work - as long as the code compiles, of course.</p>
http://stackoverflow.com/questions/1704762/how-should-i-call-this-native-dll-function-from-c0How should I call this native dll function from C#?Blorgbeard2009-11-09T23:56:35Z2009-11-10T12:43:26Z
<p>Here's the native (Delphi 7) function:</p>
<pre><code>function Foo(const PAnsiChar input) : PAnsiChar; stdcall; export;
var
s : string;
begin
s := SomeInternalMethod(input);
Result := PAnsiChar(s);
end;
</code></pre>
<p>I need to call this from C#, but the name of the dll is not known at compile time - so I must use LoadLibrary to get to it.</p>
<p>This is what my C# code looks like so far:</p>
<pre><code>[DllImport("kernel32.dll")]
public extern static IntPtr LoadLibrary(String lpFileName);
[DllImport("kernel32.dll")]
public extern static IntPtr GetProcAddress(IntPtr handle, string funcName);
[UnmanagedFunctionPointer(CallingConvention.StdCall)]
private delegate string FooFunction(string input);
...
IntPtr dllHandle = LoadLibrary(dllName);
IntPtr fooProcAddr = GetProcAddress(dllHandle, "Foo");
FooFunction foo = (FooFunction)Marshal.GetDelegateForFunctionPointer(
fooProcAddr, typeof(FooFuncion)
);
string output = foo(myInputString);
</code></pre>
<p>Now, this actually works - at least, the delphi code receives the string correctly, and the C# code receives the output string.</p>
<p>However, I've noticed some weirdness when debugging the delphi code when it's called from the C# code - the debugger skips lines when it shouldn't.. </p>
<p>And I'm concerned that I'm leaking memory - is anyone cleaning up those PChars?</p>
<p>Can anyone give me some feedback / advice on how this should be done?</p>
http://stackoverflow.com/questions/1659725/what-else-can-i-do-in-forms/1659741#16597412Answer by Blorgbeard for what else can i do in forms..Blorgbeard2009-11-02T06:37:18Z2009-11-02T06:37:18Z<p>If you're looking for suggestions for things to try to implement in order to learn:</p>
<ul>
<li>Client-side validation with javascript</li>
<li>as-you-type validation with javascript (turn a border red when there's an error, or something)</li>
<li>Suggest-as-you type fields, like google suggest (with a client-side list since you don't want AJAX). Eg. You could do this with a list of countries, instead of using a dropdown.</li>
</ul>
http://stackoverflow.com/questions/1659297/inheritanceunderstanding/1659322#16593220Answer by Blorgbeard for inheritance:understandingBlorgbeard2009-11-02T03:37:58Z2009-11-02T03:43:29Z<p>A complex number is a combination of two real numbers, x + <em>i</em> * y, where <em>i</em> is sqrt(-1).</p>
<p>Your Complex class would need to handle the extra logic needed around how to add/subtract/multiply/divide/etc two complex numbers together.</p>
<p>Eg. (a + <em>i</em> b) * (c + <em>i</em> d) = (ac − bd) + <em>i</em> (bc + ad).</p>
<p>This is the code that would go in your Complex class.</p>
<p>It would work the other way though - if you already had a Complex class and no Real class (however unlikely that is), you could define a Real class as a subclass of Complex, and just lock the imaginary component to 0.</p>
<p>So Complex inheriting from Real wouldn't work. A better approach would involve not inheritence, but composition - a Complex number is <em>composed</em> of two real numbers.</p>
http://stackoverflow.com/questions/601089/detect-whether-current-windows-version-is-32-bit-or-64-bit/1634007#16340071Answer by Blorgbeard for Detect whether current Windows version is 32 bit or 64 bitBlorgbeard2009-10-27T22:25:39Z2009-10-27T22:25:39Z<p>This has been answered pretty well already, but since the question and current answers helped me come up with my own solution, I'll post it here in the hope that someone else will save some time.</p>
<p>Delphi 7 code to check whether your 32 bit program is running on a 64 bit operating system:</p>
<pre><code>function Is64BitOS: Boolean;
type
TIsWow64Process = function(Handle:THandle; var IsWow64 : BOOL) : BOOL; stdcall;
var
hKernel32 : Integer;
IsWow64Process : TIsWow64Process;
IsWow64 : BOOL;
begin
// we can check if the operating system is 64-bit by checking whether
// we are running under Wow64 (we are 32-bit code). We must check if this
// function is implemented before we call it, because some older versions
// of kernel32.dll (eg. Windows 2000) don't know about it.
// see http://msdn.microsoft.com/en-us/library/ms684139%28VS.85%29.aspx
Result := False;
hKernel32 := LoadLibrary('kernel32.dll');
if (hKernel32 = 0) then RaiseLastOSError;
@IsWow64Process := GetProcAddress(hkernel32, 'IsWow64Process');
if Assigned(IsWow64Process) then begin
IsWow64 := False;
if (IsWow64Process(GetCurrentProcess, IsWow64)) then begin
Result := IsWow64;
end
else RaiseLastOSError;
end;
FreeLibrary(hKernel32);
end;
</code></pre>
http://stackoverflow.com/questions/151403/what-is-a-good-free-utility-to-create-a-self-extracting-executable-with-an-embedd2What is a good free utility to create a self-extracting executable with an embedded file version?Blorgbeard2008-09-30T01:20:50Z2009-10-27T12:12:58Z
<p>According to the answers to <a href="http://stackoverflow.com/questions/151250/how-do-i-embed-a-file-version-in-an-msi-file-with-visual-studio">this</a> question, I cannot embed a file version in my .msi file. </p>
<p>The installer that I give the client needs to have a file version. </p>
<p>So, what I want to do is create a self-extracting executable containing the msi file and the setup.exe generated by Visual Studio, and put the file version on this self-extracting executable instead.</p>
<p>Therefore, I need a utility to create self-extracting executables which supports embedding a file version in its output. It also needs to support automatically running a file after extraction, so I can start the real installer automatically. It would be nice if it was scriptable.</p>
<p>All I could find was <a href="http://www.gdgsoft.com/pb/customize-package.aspx" rel="nofollow">this</a>, which looks great, but I would much prefer a free alternative.</p>
<p>Does anyone have any suggestions?</p>
<p><strong>Edit:</strong> To clarify, I'm not really looking to create an installer - I already have a VS setup project. I just want a self-extractor (like WinZip can create). So, the user mouses over Setup-Blorgbeard2008.exe, sees "Version: 1.0.0.0". User doubleclicks it, it silently extracts setup.exe and setup.msi to a temp folder, then runs setup.exe. User then sees normal installer screen and proceeds as normal.</p>
<p><strong>Another Edit:</strong> Yay, I don't need a self-extractor anymore, since my other question has now been answered. That makes this whole question pretty much irrelevant. It <em>would</em> still be nice to be able to distribute only one file, rather than setup.exe and setup.msi.</p>
http://stackoverflow.com/questions/758389/why-are-application-settings-read-only-in-app-config2Why are application settings read only in app.config?Blorgbeard2009-04-16T23:04:48Z2009-10-20T01:04:58Z
<p>I have some settings in my app.config which I intend to be 'global' - ie. any user can change them, and all users get the same setting.</p>
<p>But unless I change them to be user settings, they are read only.</p>
<p>Why is this?</p>
<p>And how should I go about persisting my app's global settings?</p>
<p><strong>Edit:</strong></p>
<p>This is actually a windows service application which runs as a service as LocalSystem. It can also be run manually by a local admin with argument "/config", which launches a windows form to edit configuration values.</p>
<p>So it will have write access to <code>%PROGRAMFILES%</code> in both situations.</p>
<p>The way I am accessing my settings is thusly:</p>
<pre><code>Settings.Default.MySetting = MyNewValue;
</code></pre>
<p>And when MySetting is set to Application (in my project properties, Settings.settings), I get a compile-time error "MySetting is read only".</p>
<p>I am new to this stuff, and have not yet found a very good explanation of how it is supposed to be done. For example, why do I need to say 'Default', and what does that actually mean? I have no idea. If anyone can point me to an app.config usage tutorial, that would be really helpful.</p>
http://stackoverflow.com/questions/4393/ms-sql-drop-all-tables-whose-names-begin-with-a-certain-string5MS-SQL: Drop all tables whose names begin with a certain stringBlorgbeard2008-08-07T04:41:37Z2009-10-07T20:04:14Z
<p>I'd like a script to drop all tables whose name begins with a given string. I'm sure this can be done with some dynamic sql and the INFORMATION_SCHEMA tables.</p>
<p>If anyone has a script, or can knock one up quickly, please post it.</p>
<p>If no-one posts an answer before I figure it out myself, I'll post my solution.</p>
http://stackoverflow.com/questions/24847/whats-a-good-linux-c-c-ide-for-a-low-res-screen6What's a good linux C/C++ IDE for a low-res screen?Blorgbeard2008-08-24T05:00:45Z2009-10-01T15:24:29Z
<p>I recently bought an Asus Eee PC 901, on which I am running Ubuntu linux. </p>
<p>I was mucking around in C on my old (larger) laptop, and I want to continue to do so on the Eee. However, Anjuta - the IDE that I was using - is not very usable with the Eee's resolution of 1024x600.</p>
<p>What with the status pane at the bottom, and the giant toolbar buttons, there's not much free real-estate for code.</p>
<p>Can anyone recommend an IDE which is (or can be configured to be) suitable for low resolutions? I would much prefer something that supports modern IDE features like code folding and auto-completion.</p>
<p><strong>Update:</strong> GVim seems pretty neat, and KDevelop looks like it'd be good except that I'm running Gnome, and would rather not install the kde libs. I'm really impressed with Code::Blocks though, can't believe I'd never heard of it before, so I'm calling that The Answer. Thanks guys.</p>
http://stackoverflow.com/questions/1450603/sql-server-select-top-5-rows-for-each-fk/1450627#14506271Answer by Blorgbeard for SQL Server - SELECT TOP 5 rows for each FKBlorgbeard2009-09-20T09:00:52Z2009-09-20T09:00:52Z<p>Try this:</p>
<pre><code>select * from (
select *, rn = row_number() over (partition by s.ShopId order by p.ProductName)
from Products p, Shops s
where p.ShopId = s.ShopId AND p.ProductName LIKE '%christmas%'
) a where a.rn <= 5
</code></pre>
http://stackoverflow.com/questions/544075/how-should-i-free-an-array-of-objects-in-a-delphi-7-destructor3How should I free an array of objects in a Delphi 7 destructor?Blorgbeard2009-02-12T23:44:34Z2009-09-15T13:19:34Z
<p>Suppose my Delphi classes look like this:</p>
<pre><code>interface
type
TMySubInfo = class
public
Name : string;
Date : TDateTime;
Age : Integer;
end;
TMyInfo = class
public
Name : string;
SubInfo : array of TMySubInfo;
destructor Destroy; override;
end;
implementation
destructor TMyInfo.Destroy;
begin
// hmmm..
end;
end.
</code></pre>
<p>To properly clean up, what should go in the destructor? Is it enough to do <code>SetLength(SubInfo,0)</code>, or do I need to loop through and free each <code>TMySubInfo</code>? Do I need to do anything at all?</p>
http://stackoverflow.com/questions/1371228/weird-python-behaviour-on-machine-with-arm-cpu9Weird python behaviour on machine with ARM CPUBlorgbeard2009-09-03T02:59:57Z2009-09-04T05:41:56Z
<p>What could possibly cause this weird python behaviour?</p>
<pre><code>Python 2.6.2 (r262:71600, May 31 2009, 03:55:41)
[GCC 3.3.4] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> .1
1251938906.2350719
>>> .1
0.23507189750671387
>>> .1
0.0
>>> .1
-1073741823.0
>>> .1
-1073741823.0
>>> .1
-1073741823.0
>>>
</code></pre>
<p>It gives the same output for <code>0.1</code>, <code>0.5</code>, <code>5.1</code>, <code>0.0</code>, etc.. Integers are echoed back at me correctly, but anything with a decimal point gives me the crazy numbers.</p>
<p>This is a python binary compiled for ARM, installed via <a href="http://www.nslu2-linux.org/wiki/Optware/HomePage" rel="nofollow">Optware</a> on a Synology DiskStation 101j.</p>
<p>Has anyone seen anything like this before?</p>
http://stackoverflow.com/questions/1339788/sql-how-to-concatenate-results/1339805#13398052Answer by Blorgbeard for SQL, How to Concatenate results?Blorgbeard2009-08-27T09:01:11Z2009-08-27T09:01:11Z<p>With MSSQL you can do something like this:</p>
<pre><code>declare @result varchar(500)
set @result = ''
select @result = @result + ModuleValue + ', '
from TableX where ModuleId = @ModuleId
</code></pre>
http://stackoverflow.com/questions/1339763/help-with-a-sql-query/1339790#13397902Answer by Blorgbeard for Help with a SQL queryBlorgbeard2009-08-27T08:57:38Z2009-08-27T08:57:38Z<p>Something like:</p>
<pre><code>select top 10 song_album
from songs
group by song_album
order by sum(song_views) desc
</code></pre>
http://stackoverflow.com/questions/1310862/what-is-your-entry-for-songsincode/1311021#13110215Answer by Blorgbeard for What is your entry for #songsincode?Blorgbeard2009-08-21T09:49:28Z2009-08-21T09:49:28Z<pre><code>public object Satisfaction {
get { throw new InvalidOperationException(); }
}
</code></pre>
http://stackoverflow.com/questions/1908494/c-combine-2-statements-in-a-catch-block-into-one/1909053#1909053Comment by Blorgbeard on c# - combine 2 statements in a catch block into oneBlorgbeard2009-12-15T17:32:17Z2009-12-15T17:32:17Z<code>throw e</code> is not equivalent to <code>throw</code>http://stackoverflow.com/questions/1097333/how-do-i-add-items-to-all-windows-window-menusComment by Blorgbeard on How do I add items to all windows' window menus?Blorgbeard2009-12-03T23:38:45Z2009-12-03T23:38:45ZDon't worry, that drives me crazy too.http://stackoverflow.com/questions/352543/delphi-win-api-createtimerqueuetimer-threads-and-thread-safe-formatdatetime-crash/354847#354847Comment by Blorgbeard on Delphi Win API CreateTimerQueueTimer threads and thread safe FormatDateTime crashesBlorgbeard2009-11-30T02:24:35Z2009-11-30T02:24:35ZHelped me, cheers!http://stackoverflow.com/questions/1806587/need-a-help-with-tedit/1806606#1806606Comment by Blorgbeard on need a help with TEditBlorgbeard2009-11-27T09:25:01Z2009-11-27T09:25:01ZNot sure what you mean by that - can you explain more? Edit your question and add more detail - or post a new one..http://stackoverflow.com/questions/1767648/how-to-uniquely-identify-a-computer-based-on-gmail-skype-and-apple-updatesComment by Blorgbeard on How to uniquely identify a computer based on Gmail, Skype and Apple updatesBlorgbeard2009-11-20T00:50:10Z2009-11-20T00:50:10ZIf you know who took it, can't you just go to the police, right now?http://stackoverflow.com/questions/1740266/getstacktrace-in-delphi-7/1740313#1740313Comment by Blorgbeard on GetStackTrace in Delphi 7?Blorgbeard2009-11-17T22:15:59Z2009-11-17T22:15:59ZThe sooner SO kills them, the better.http://stackoverflow.com/questions/1740266/getstacktrace-in-delphi-7/1740313#1740313Comment by Blorgbeard on GetStackTrace in Delphi 7?Blorgbeard2009-11-17T22:15:28Z2009-11-17T22:15:28ZExEx is sneaky. If you google for the URL, and then click the link from google, your referer will be google, and they will show you the solutions.http://stackoverflow.com/questions/1746855/sql-select-no-resultComment by Blorgbeard on SQL select no resultBlorgbeard2009-11-17T05:52:29Z2009-11-17T05:52:29ZWhat do you want the first query to return? Sounds like you need a WHERE to join the tables up, or some JOINs. More details please?http://stackoverflow.com/questions/1740266/getstacktrace-in-delphi-7/1740376#1740376Comment by Blorgbeard on GetStackTrace in Delphi 7?Blorgbeard2009-11-16T06:27:17Z2009-11-16T06:27:17ZYeah - but the stack trace is a nice-to-have in this project, so I won't spend much time trying to work around it.http://stackoverflow.com/questions/1740266/getstacktrace-in-delphi-7/1740376#1740376Comment by Blorgbeard on GetStackTrace in Delphi 7?Blorgbeard2009-11-16T06:18:53Z2009-11-16T06:18:53ZYeah, madExcept is awesome - but this is commercial code I'm writing, and I don't think I can get the company to buy madExcept right now. JCL sounds good too though, I will take a look..http://stackoverflow.com/questions/1740079/need-help-with-visual-basic-net-programComment by Blorgbeard on Need Help with Visual Basic.NET ProgramBlorgbeard2009-11-16T04:45:01Z2009-11-16T04:45:01ZDo <i>not</i> paste your homework assignment here. You wouldn't learn anything if we did it for you. Try to figure out how to do it yourself. If you run into problems (<i>specific</i> problems), then come back and ask for help.http://stackoverflow.com/questions/1642028/what-is-the-name-of-this-operatorComment by Blorgbeard on What is the name of this operator: "-->"?Blorgbeard2009-11-13T00:32:09Z2009-11-13T00:32:09Z<a href="http://twitter.com/spolsky/status/5663855845" rel="nofollow">twitter.com/spolsky/status/5663855845</a>http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1713417#1713417Comment by Blorgbeard on What's your take on the programming language Go?Blorgbeard2009-11-11T18:58:00Z2009-11-11T18:58:00ZMy delphi IDE is set to auto-correct ';=' to ':=' - I never type ':=' manually. It still annoys me, though.http://stackoverflow.com/questions/1704762/how-should-i-call-this-native-dll-function-from-c/1705766#1705766Comment by Blorgbeard on How should I call this native dll function from C#?Blorgbeard2009-11-10T21:17:30Z2009-11-10T21:17:30ZOK, I'm trying this approach: <a href="http://stackoverflow.com/questions/1699736/how-can-i-return-a-pchar-from-a-dll-function-to-a-vb6-application-without-risking/1699889#1699889" rel="nofollow" title="how can i return a pchar from a dll function to a vb6 application without risking">stackoverflow.com/questions/1699736/…</a>http://stackoverflow.com/questions/1704762/how-should-i-call-this-native-dll-function-from-c/1707691#1707691Comment by Blorgbeard on How should I call this native dll function from C#?Blorgbeard2009-11-10T20:17:49Z2009-11-10T20:17:49ZCheers, I'll take a look at that