User Glenner003 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T05:18:42Z http://stackoverflow.com/feeds/user/27760 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1819180/delphi-call-dll-with-function-pointer-parameter/1819662#1819662 0 Answer by Glenner003 for (Delphi) Call DLL with function pointer parameter Glenner003 2009-11-30T12:53:41Z 2009-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#1667158 1 Answer by Glenner003 for Executing Access SQL Query Between Two Databases Glenner003 2009-11-03T12:51:54Z 2009-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#1476361 2 Answer by Glenner003 for silverlight tcp tunneling / bridging Glenner003 2009-09-25T09:33:46Z 2009-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#1471609 1 Answer by Glenner003 for C# BackgroundWorker Thread Problem Glenner003 2009-09-24T13:11:55Z 2009-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#1471379 14 Answer by Glenner003 for Normalizing from [0.5 - 1] to [0 - 1] Glenner003 2009-09-24T12:29:02Z 2009-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#594829 1 Answer by Glenner003 for SQL Group By question SQL Server 2005 CE Glenner003 2009-02-27T13:50:24Z 2009-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#585467 1 Answer by Glenner003 for When to use Records Vs Objects Glenner003 2009-02-25T10:28:05Z 2009-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#506674 0 Answer by Glenner003 for Simple SQL problem (MySQL) Glenner003 2009-02-03T10:41:11Z 2009-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#483017 1 Answer by Glenner003 for If you could work in any programming-related technology/field of your choice, which would it be? Glenner003 2009-01-27T11:12:43Z 2009-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#416768 0 Answer by Glenner003 for Problem with SQL Join Glenner003 2009-01-06T14:40:23Z 2009-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#415965 10 Answer by Glenner003 for How to automatically free classes/objects? Glenner003 2009-01-06T09:55:03Z 2009-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#295292 0 Answer by Glenner003 for What is the fastest way to get the 4 least significant bits in a byte (C++)? Glenner003 2008-11-17T10:44:52Z 2008-11-17T10:44:52Z <p>x = x &amp; 15</p> http://stackoverflow.com/questions/295280/whats-one-change-in-your-lifestyle-that-positively-affected-your-work-and-health/295283#295283 0 Answer by Glenner003 for What's one change in your lifestyle that positively affected your work and health? Glenner003 2008-11-17T10:42:28Z 2008-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#289750 0 Answer by Glenner003 for Homework: A Logic bug in my C# code, What Should I do ....? Glenner003 2008-11-14T10:46:00Z 2008-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#258347 1 Answer by Glenner003 for Delphi database: Setting up an array of ADT fields at runtime Glenner003 2008-11-03T11:08:54Z 2008-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#247276 1 Answer by Glenner003 for VS2008 C# Exceptions with methods invoked by reflection Glenner003 2008-10-29T15:36:00Z 2008-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 -1 Answer by Glenner003 for Will you use Delphi Prism Glenner003 2008-10-28T10:54:58Z 2008-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#229039 1 Answer by Glenner003 for Delphi component to help model project costs Glenner003 2008-10-23T09:03:24Z 2008-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#221418 1 Answer by Glenner003 for Windows Forms Layout Engines Glenner003 2008-10-21T10:38:53Z 2008-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-base 5 Loading Delphi designtime packages on a project base Glenner003 2008-10-14T08:16:51Z 2008-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#1656777 Comment by Glenner003 on Multithreaded server, bottleneck question Glenner003 2009-11-04T12:56:33Z 2009-11-04T12:56:33Z Hi 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#1656777 Comment by Glenner003 on Multithreaded server, bottleneck question Glenner003 2009-11-04T10:50:49Z 2009-11-04T10:50:49Z reinier, 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#1656777 Comment by Glenner003 on Multithreaded server, bottleneck question Glenner003 2009-11-03T12:47:24Z 2009-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#1656777 Comment by Glenner003 on Multithreaded server, bottleneck question Glenner003 2009-11-02T09:16:39Z 2009-11-02T09:16:39Z Unless 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#1516548 Comment by Glenner003 on Testing a C# sockets based multithreading server Glenner003 2009-10-05T08:08:50Z 2009-10-05T08:08:50Z The 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-wins Comment by Glenner003 on MySQL: How to get user with most wins? Glenner003 2009-09-25T12:58:03Z 2009-09-25T12:58:03Z I suppose it is a preferential voting system http://stackoverflow.com/questions/1471370/normalizing-from-0-5-1-to-0-1/1471379#1471379 Comment by Glenner003 on Normalizing from [0.5 - 1] to [0 - 1] Glenner003 2009-09-24T12:59:00Z 2009-09-24T12:59:00Z It was the math part of the solution I was solving not the language related part http://stackoverflow.com/questions/1471239/encrypting-decrypting-data-to-database Comment by Glenner003 on Encrypting/decrypting data to database Glenner003 2009-09-24T12:19:32Z 2009-09-24T12:19:32Z Why would there be any need to &quot;use&quot; 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#483017 Comment by Glenner003 on If you could work in any programming-related technology/field of your choice, which would it be? Glenner003 2009-01-30T13:01:03Z 2009-01-30T13:01:03Z That's one area of interest. http://stackoverflow.com/questions/346492/why-werent-you-at-coderage-iii/346906#346906 Comment by Glenner003 on Why Weren't You at CodeRage III? Glenner003 2008-12-08T09:50:10Z 2008-12-08T09:50:10Z Or 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#305118 Comment by Glenner003 on Current "hot" topics in parallel programming? Glenner003 2008-11-20T13:35:23Z 2008-11-20T13:35:23Z You 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#295301 Comment by Glenner003 on What's one change in your lifestyle that positively affected your work and health? Glenner003 2008-11-17T15:00:47Z 2008-11-17T15:00:47Z It 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#295292 Comment by Glenner003 on What is the fastest way to get the 4 least significant bits in a byte (C++)? Glenner003 2008-11-17T10:48:12Z 2008-11-17T10:48:12Z May 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#255294 Comment by Glenner003 on How to stop long executing threads gracefully? Glenner003 2008-11-03T09:53:25Z 2008-11-03T09:53:25Z This 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#242870 Comment by Glenner003 on Will you use Delphi Prism Glenner003 2008-11-03T09:00:31Z 2008-11-03T09:00:31Z I 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.