User Glenner003 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T05:18:42Zhttp://stackoverflow.com/feeds/user/27760http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1819180/delphi-call-dll-with-function-pointer-parameter/1819662#18196620Answer by Glenner003 for (Delphi) Call DLL with function pointer parameterGlenner0032009-11-30T12:53:41Z2009-11-30T12:53:41Z<p>As shunty already pointed out, both Allocate and Deallocate should be procedures in delphi. Furthermore, the psize parameter should be a pointer like the c declaration states.
And remember you must implement both functions to get this working properly or one memory manager will allocate while the other will deallocate the same memory, so the implementation shown in your example will keep failing even when the implementation of Allocate is correct.</p>
http://stackoverflow.com/questions/1667129/executing-access-sql-query-between-two-databases/1667158#16671581Answer by Glenner003 for Executing Access SQL Query Between Two DatabasesGlenner0032009-11-03T12:51:54Z2009-11-03T12:51:54Z<p>You can link the table, if I remember correctly, you will have to give password once when creating the link.</p>
http://stackoverflow.com/questions/1476313/silverlight-tcp-tunneling-bridging/1476361#14763612Answer by Glenner003 for silverlight tcp tunneling / bridgingGlenner0032009-09-25T09:33:46Z2009-09-25T09:33:46Z<p>If traffics passes trough a firewall or NAT router, it probably can be configured to do that.</p>
<p>Otherwise you can always write a service that listens to the port you want and forwards it to the 3005 port. But this can cause issues when the server is using the IP addresses of the client in some way.</p>
<p>Some firewall software on the server should be able to do this to.</p>
http://stackoverflow.com/questions/1471563/c-backgroundworker-thread-problem/1471609#14716091Answer by Glenner003 for C# BackgroundWorker Thread ProblemGlenner0032009-09-24T13:11:55Z2009-09-24T13:52:26Z<p>It's up to the workerthreads code to check the CancellationPending property.
The code that is executed in between these checks will always be executed, causing a delay.</p>
<p>In your remark you git a nice isssue.</p>
<p>One way to solve this is building a specific subclass for multi threading, to leave the unavoidable nasty bits out of the logic.</p>
<p>The main class should provide a template method for LongOperation that calls to other methods, the threading subclass can then override the methods called in longoperation, and before letting the mainclass methods do the actual work perform the check of the CancellationPending property.</p>
<p>This way you can stop more arbitrary than at the end of longoperation.</p>
<p>Multithreading in a nonfunctional way will always affect your code, hold on for when you will be needing locks ;-)</p>
http://stackoverflow.com/questions/1471370/normalizing-from-0-5-1-to-0-1/1471379#147137914Answer by Glenner003 for Normalizing from [0.5 - 1] to [0 - 1]Glenner0032009-09-24T12:29:02Z2009-09-24T12:31:27Z<blockquote>
<p>× 2 − 1</p>
</blockquote>
<p>should do the trick</p>
http://stackoverflow.com/questions/594804/sql-group-by-question-sql-server-2005-ce/594829#5948291Answer by Glenner003 for SQL Group By question SQL Server 2005 CEGlenner0032009-02-27T13:50:24Z2009-02-27T15:10:25Z<p>I suppose what you meant to do was </p>
<pre><code>SELECT TP.ID_TASK_MASTER, TP.ID_PROBLEM, TP.ID_TASK_PROBLE, P.DS_PROBLEM,
TP.SW_HASOK, TP.SW_HASNOK, TP.SW_HASTOK, TP.SW_HASVALUE,
TP.NO_VALUE1, TP.NO_VALUE2
FROM TASK_PROBLEMS TP
INNER JOIN PROBLEMS P
ON TP.ID_PROBLEM = P.ID_PROBLEM
WHERE TP.ID_TASK_MASTER = @P_IDTASKMASTER
ORDER BY P.DS_PROBLEM,TP.ID_TASK_MASTER, TP.ID_PROBLEM,TP.ID_TASK_PROBLE
</code></pre>
http://stackoverflow.com/questions/585321/when-to-use-records-vs-objects/585467#5854671Answer by Glenner003 for When to use Records Vs ObjectsGlenner0032009-02-25T10:28:05Z2009-02-27T03:03:17Z<ol>
<li><p>When there are no methods to act upon your data, it is useless most of the time. So you are right here.</p></li>
<li><p>One of the biggest differences between objects and records is the fact that records are default on the stack and objects on the heap. To get a record on the heap, you get all the hassle you were referring to, but when you can leave them on the stack it's a whole lot easier then managing objects lifetime. But lets face reality, there is little use for short lived records.</p></li>
<li><p>When objects are instantiated, something more than merely reserving memory happens, there is a VMT to be managed, something a record hasn't. So it a little more expensive to allocate objects than records, but I suppose it is neglectable when your not talking about thousends of items.</p></li>
</ol>
<p>To make your choice you need to consider how you will be using these objects or records. If you are going to read large binary files, records are the way to go (reading an entire buffer into an array of records maybe converting them to objects to work with). If you are handling structured data our runtime generated data objects seems to be a lot easier to work with.</p>
http://stackoverflow.com/questions/506607/simple-sql-problem-mysql/506674#5066740Answer by Glenner003 for Simple SQL problem (MySQL)Glenner0032009-02-03T10:41:11Z2009-02-03T10:41:11Z<p>If this is a query you will run many times, I would consider to make a view which selects the most recent revision per pageid:</p>
<pre><code>create view LatestRevision
as
Select pageid, max(number) from revision
</code></pre>
<p>then the query would be </p>
<pre><code>SELECT page.id, revision.title, revision.number
FROM page
INNER JOIN revision ON page.id = revision.pageId
INNER JOIN LatestRevision on revision.pageid = LatestRevision.pageid and revision.Number = LatestRevision.number
</code></pre>
http://stackoverflow.com/questions/482966/if-you-could-work-in-any-programming-related-technology-field-of-your-choice-whi/483017#4830171Answer by Glenner003 for If you could work in any programming-related technology/field of your choice, which would it be?Glenner0032009-01-27T11:12:43Z2009-01-27T11:12:43Z<p>Industrial and home automation with embedded computer and the proper UI for it.</p>
http://stackoverflow.com/questions/416740/problem-with-sql-join/416768#4167680Answer by Glenner003 for Problem with SQL JoinGlenner0032009-01-06T14:40:23Z2009-01-06T14:40:23Z<p>It's your conditions in the where clause:
(tblScheduling.SchedulingYearID = @SchedulingYearID) </p>
<p>when there is no tblScheduling info this wil always fail. Add </p>
<p>(((tblScheduling.SchedulingYearID = @SchedulingYearID) OR (tblScheduling.SchedulingYearID is null) )</p>
<p>or wathever null condition checking your DB uses.</p>
http://stackoverflow.com/questions/415958/how-to-automatically-free-classes-objects/415965#41596510Answer by Glenner003 for How to automatically free classes/objects?Glenner0032009-01-06T09:55:03Z2009-01-06T09:55:03Z<p>Use interfaces instead of objects. They are reference counted and freed automatically when the reference count reaches 0.</p>
http://stackoverflow.com/questions/295279/what-is-the-fastest-way-to-get-the-4-least-significant-bits-in-a-byte-c/295292#2952920Answer by Glenner003 for What is the fastest way to get the 4 least significant bits in a byte (C++)?Glenner0032008-11-17T10:44:52Z2008-11-17T10:44:52Z<p>x = x & 15</p>
http://stackoverflow.com/questions/295280/whats-one-change-in-your-lifestyle-that-positively-affected-your-work-and-health/295283#2952830Answer by Glenner003 for What's one change in your lifestyle that positively affected your work and health?Glenner0032008-11-17T10:42:28Z2008-11-17T10:42:28Z<p>Becoming a father reduced my productivity a lot. I hope this effect fades away over time.</p>
http://stackoverflow.com/questions/289733/homework-a-logic-bug-in-my-c-code-what-should-i-do/289750#2897500Answer by Glenner003 for Homework: A Logic bug in my C# code, What Should I do ....?Glenner0032008-11-14T10:46:00Z2008-11-14T10:46:00Z<p>Another problem seems to lie in the fact that you don't initialize familybonus when you say familybonus += 300. So everytime you call GetFamilybonus it's added to the previous result. You call it twice in the PrintEmployee function, once directly and once indirectly by calling getNet;</p>
http://stackoverflow.com/questions/256367/delphi-database-setting-up-an-array-of-adt-fields-at-runtime/258347#2583471Answer by Glenner003 for Delphi database: Setting up an array of ADT fields at runtimeGlenner0032008-11-03T11:08:54Z2008-11-03T11:08:54Z<p>You could split it up into a master and detail dataset. The points go in the detail dataset with a record per point.</p>
http://stackoverflow.com/questions/247269/vs2008-c-exceptions-with-methods-invoked-by-reflection/247276#2472761Answer by Glenner003 for VS2008 C# Exceptions with methods invoked by reflectionGlenner0032008-10-29T15:36:00Z2008-10-29T15:36:00Z<p>Are you using a debug version of the assembly?
If not, the debugger cannot locate the source of the exception.</p>
http://stackoverflow.com/questions/242584/will-you-use-delphi-prism/242870#242870-1Answer by Glenner003 for Will you use Delphi PrismGlenner0032008-10-28T10:54:58Z2008-10-28T10:54:58Z<p>Since Delphi is always catching up on .Net, I don't see any valid reason for using it, besides not being a MS product.</p>
<p>There is already a good language for .Net that has everything in it that delphi has and much more.</p>
<p>As much as I love delphi, using some logic tells me to stay away from it for .Net.</p>
http://stackoverflow.com/questions/228829/delphi-component-to-help-model-project-costs/229039#2290391Answer by Glenner003 for Delphi component to help model project costsGlenner0032008-10-23T09:03:24Z2008-10-23T09:03:24Z<p>On the risk of seeming to be affiliated with DevExpress* take a look here : <a href="http://www.devexpress.com/Downloads/VCL/ExScheduler/" rel="nofollow">ExpressScheduler</a></p>
<p>You can have a regular scheduler (like outlook) and you can have a Gant chart (like MSProject and other project management tools).</p>
<ul>
<li>I'm not affiliated with DevExpress in any way but I had a lot of very good experiences with there tools, for Delphi as well as for .Net.</li>
</ul>
http://stackoverflow.com/questions/202669/windows-forms-layout-engines/221418#2214181Answer by Glenner003 for Windows Forms Layout EnginesGlenner0032008-10-21T10:38:53Z2008-10-21T10:38:53Z<p>You can always check out <a href="http://www.devexpress.com/Products/NET/Controls/WinForms/Layout/" rel="nofollow">DevExpress Layout Control</a>. It's not free but it is an eye opener.</p>
http://stackoverflow.com/questions/200358/loading-delphi-designtime-packages-on-a-project-base5Loading Delphi designtime packages on a project baseGlenner0032008-10-14T08:16:51Z2008-10-14T16:00:23Z
<p>Is there a way to select designtime packages on a project bases?</p>
<p>Packages are very useful in large project to keep the build time acceptable, but they are a real pita in those large projects too. When one developer adds a new package, it breaks to build for all other until they install the new package on their machine. And then there is versioning of the packages ...</p>
<p>So has anyone a proper solution for this? (it has been bothering me for years now)</p>
http://stackoverflow.com/questions/1656650/multithreaded-server-bottleneck-question/1656777#1656777Comment by Glenner003 on Multithreaded server, bottleneck questionGlenner0032009-11-04T12:56:33Z2009-11-04T12:56:33ZHi Rennier,
I'm sorry your right. It used to say that there were threads created in the .Net documentation, but it actually is relying on the OS async IO calls, which are interrupt steered.http://stackoverflow.com/questions/1656650/multithreaded-server-bottleneck-question/1656777#1656777Comment by Glenner003 on Multithreaded server, bottleneck questionGlenner0032009-11-04T10:50:49Z2009-11-04T10:50:49Zreinier, by using Asynchronous calls you just are creating or using threads allowing yours to do something else.
In a lot of cases there is nothing useful to do in the context of that thread anyway. Using asynchronous calls is perfect when you will have one worker thread (per CPU) to do it all and thats not always the most performant or manageable way to do things. You have to look at the whole picture before deciding what is the best strategy to follow. In this case it is pretty clear that the OP has chosen to create task specific threads instead of generic worker threads. http://stackoverflow.com/questions/1656650/multithreaded-server-bottleneck-question/1656777#1656777Comment by Glenner003 on Multithreaded server, bottleneck questionGlenner0032009-11-03T12:47:24Z2009-11-03T12:47:24Z@DotNetWill: The advice to not have more threads than CPU's is only valid when you have cpu intensive threads, when there are other limiting elements such as IO it practical to have more threads as some threads will be waiting for input. But to have a thread per session can become dangerous when lots of clients connect and the cost of switching threads becomes just too much to cope with.http://stackoverflow.com/questions/1656650/multithreaded-server-bottleneck-question/1656777#1656777Comment by Glenner003 on Multithreaded server, bottleneck questionGlenner0032009-11-02T09:16:39Z2009-11-02T09:16:39ZUnless you have to do some IO which will block all other sockets from doing something useful. In this case it actually is better to have some threads, but probably not one per connection.
http://stackoverflow.com/questions/1516179/testing-a-c-sockets-based-multithreading-server/1516548#1516548Comment by Glenner003 on Testing a C# sockets based multithreading serverGlenner0032009-10-05T08:08:50Z2009-10-05T08:08:50ZThe test-scenario you provide tests only a fraction of the possible issues with a multi threaded server.
All possible actions should be tested simultaneously.
But I do agree that a making your own load testing system, spread over multiple machines if possible is the way to go for a propriety protocol.http://stackoverflow.com/questions/1477123/mysql-how-to-get-user-with-most-winsComment by Glenner003 on MySQL: How to get user with most wins?Glenner0032009-09-25T12:58:03Z2009-09-25T12:58:03ZI suppose it is a preferential voting systemhttp://stackoverflow.com/questions/1471370/normalizing-from-0-5-1-to-0-1/1471379#1471379Comment by Glenner003 on Normalizing from [0.5 - 1] to [0 - 1]Glenner0032009-09-24T12:59:00Z2009-09-24T12:59:00ZIt was the math part of the solution I was solving not the language related parthttp://stackoverflow.com/questions/1471239/encrypting-decrypting-data-to-databaseComment by Glenner003 on Encrypting/decrypting data to databaseGlenner0032009-09-24T12:19:32Z2009-09-24T12:19:32ZWhy would there be any need to "use" the users password? This seems a weird way to work with useraccounts.http://stackoverflow.com/questions/482966/if-you-could-work-in-any-programming-related-technology-field-of-your-choice-whi/483017#483017Comment by Glenner003 on If you could work in any programming-related technology/field of your choice, which would it be?Glenner0032009-01-30T13:01:03Z2009-01-30T13:01:03ZThat's one area of interest.http://stackoverflow.com/questions/346492/why-werent-you-at-coderage-iii/346906#346906Comment by Glenner003 on Why Weren't You at CodeRage III?Glenner0032008-12-08T09:50:10Z2008-12-08T09:50:10ZOr compare Delphi 4 with 2005 or 2006, you would be crying to go back to 4, the new features and possibilities don't cover for the buggy IDE.http://stackoverflow.com/questions/305046/current-hot-topics-in-parallel-programming/305118#305118Comment by Glenner003 on Current "hot" topics in parallel programming?Glenner0032008-11-20T13:35:23Z2008-11-20T13:35:23ZYou will almost always end up with more steps, but performed in parallel thus faster in a multi processor environment.
But indeed a very interesting subject. http://stackoverflow.com/questions/295280/whats-one-change-in-your-lifestyle-that-positively-affected-your-work-and-health/295301#295301Comment by Glenner003 on What's one change in your lifestyle that positively affected your work and health?Glenner0032008-11-17T15:00:47Z2008-11-17T15:00:47ZIt often provides a different point of view to and it can boost your professional alertness due to the new environment.http://stackoverflow.com/questions/295279/what-is-the-fastest-way-to-get-the-4-least-significant-bits-in-a-byte-c/295292#295292Comment by Glenner003 on What is the fastest way to get the 4 least significant bits in a byte (C++)?Glenner0032008-11-17T10:48:12Z2008-11-17T10:48:12ZMay I should have, but Terje's answer beats mine in brevity as in clarity.http://stackoverflow.com/questions/255276/how-to-stop-long-executing-threads-gracefully/255294#255294Comment by Glenner003 on How to stop long executing threads gracefully?Glenner0032008-11-03T09:53:25Z2008-11-03T09:53:25ZThis sounds as a good advice. Making this call in another process will leave no trails after forfeiting it.http://stackoverflow.com/questions/242584/will-you-use-delphi-prism/242870#242870Comment by Glenner003 on Will you use Delphi PrismGlenner0032008-11-03T09:00:31Z2008-11-03T09:00:31ZI heard you all and yes it has some nice features c# doesn't have. But what is the big advance of 'staying' with Delphi, if it isn't compatible with delphi?
What if you have to maintain both Win32 and .Net applications? The only thing it will accomplish is confusion. It could be me off course.