User Vegar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:29:12Z http://stackoverflow.com/feeds/user/11956 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1873110/how-to-check-if-application-runs-from-program-files 2 How to check if application runs from \program files\ Vegar 2009-12-09T10:56:16Z 2009-12-10T13:34:22Z <p>Is there a reliable method to check if an application is run from somewhere beneath program files?</p> <p>If the user installs the application to program files on local machine, we need to put writable files somewhere else to avoid virtualization on Vista and Win7. When installed to a network disk, though, we want to keep these files with the installation for shared access among users.</p> <p>Today we do an string comparison between startup path and <code>CSIDL_PROGRAM_FILES</code>, but something tells me this is a very unreliable method. </p> <p>Any smart solution out there? Is there a 'IsRunningFromProtectedFolder( )'-api that I do not know about? Are there any other folders giving the same problems as program files do?</p> <p>regards, -Vegar</p> http://stackoverflow.com/questions/1808730/how-to-use-tcontrol-align-alcustom/1810584#1810584 1 Answer by Vegar for How to use TControl.Align := alCustom ? Vegar 2009-11-27T20:48:50Z 2009-12-02T08:09:52Z <p>You don't reveal much of the problem at hand, but I would have taken a look at the flowpanel instead. </p> <p>When dropping controls on a flowpanel, a new order-property 'automagically' appear. You can set which way your controls should flow, and if you want space between the controls, you set the margins on each control.</p> <p>A little clearification: The new 'order-property' is actually called 'ControlIndex', and will appear at the bottom of the object inspector.</p> http://stackoverflow.com/questions/1603427/delphi-2010-new-rtti-setting-propertyvalue-to-arbitary-value 1 Delphi 2010: New RTTI, setting propertyvalue to arbitary value Vegar 2009-10-21T20:31:59Z 2009-11-25T15:03:19Z <p>TRTTIProperty.SetValue( ) takes an TValue instance, but if the provided TValue instance is based on a different type then the property, things blow up.</p> <p>E.g.</p> <pre><code>TMyObject = class published property StringValue: string read FStringValue write FStringValue; end; procedure SetProperty(obj: TMyObject); var context: TRTTIContext; rtti: TRTTIType; prop: TRTTIProperty; value: TValue; begin context := TRTTIContext.Create; rtti := context.GetType(TMyObject); prop := rtti.GetProperty('StringValue'); value := 1000; prop.SetValue(obj, value); end; </code></pre> <p>Trying to cast the value to a string wont work either. </p> <pre><code>prop.SetValue(obj, value.AsString); prop.SetValue(obj, value.Cast(prop.PropertyType.Handle)); </code></pre> <p>Any ideas on how solve this?</p> <p>UPDATE:</p> <p>Some of you wonder why I want to assign an integer to an string, and I will try to explain. (Actually, it's more likely that I want to assign a string to an integer, but that's not that relevant...)</p> <p>What I'm trying to accomplish, is to make a general 'middle-man' between gui and model. I want to somehow hook a textedit field to an property. Instead of making such an middle man for each model that I have, I hoped that the new RTTI/TValue thing would work some magic for me.</p> <p>I'm also new to generics, so I'm not sure how generics could have helped. Is it possible to instantiate a generic at runtime with a dynamically decided type, or do the compile need to know?</p> <p>E.g.</p> <pre><code>TMyGeneric&lt;T&gt; = class end; procedure DoSomething( ); begin prop := rtti.getProperty('StringValue'); mygen := TMyGeneric&lt;prop.PropertyType&gt;.Create; //or mygen := TMyGeneric&lt;someModel.Class&gt;.Create; end; </code></pre> <p>Maybe the age of magic has yet to come... I guess I can manage with a couple of big case structures...</p> http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1781690#1781690 3 Answer by Vegar for Fluid Form Layout in Delphi Vegar 2009-11-23T07:59:20Z 2009-11-23T07:59:20Z <p>Now, I'm not sure how complex layout you have, but I guess you can use TFlowPanel and/or TGridPanel for this. Flowpanel has a nice handling of components that change visiblity. I'm not sure how well gridpanel handles the same...</p> http://stackoverflow.com/questions/1763168/xcode-missing-inline-test-results 0 XCode missing inline test results Vegar 2009-11-19T13:07:02Z 2009-11-19T16:49:11Z <p>Everywhere there are pretty pictures of failing tests shown inline in the code editor, like in <a href="http://peepcode.com/products/objective-c-for-rubyists" rel="nofollow">Peepcodes Objective-C for Rubyist screencast</a> and in apples own <a href="http://developer.apple.com/mac/articles/tools/unittestingwithxcode3.html" rel="nofollow">technical documentation</a>: </p> <p><img src="http://devimages.apple.com/images/articles/unittestingwithxcode3/figure07.jpg" alt="Test result shown inline"></p> <p>When I build my test-target, all I get is a little red icon down in the right corner, stating something went wrong. When clicking on it, I get the Build Results, where I can start to hunt for test results.</p> <p>Do anyone have a clue on what´s wrong?</p> http://stackoverflow.com/questions/1684061/delphi-2010-package-problem-file-not-found-error 1 Delphi 2010 - package problem, File not found error Vegar 2009-11-05T22:22:40Z 2009-11-05T23:08:56Z <p>I have a problem with a application with plugins. Originally, everything was compiled into a single exe, but now, I want to take out some of the code into a bpl on its own. The code that is shared by both the exe and the new bpl is put into a third bpl. </p> <p>application.exe is compiled with package api.bpl api.bpl contains only one file, api.pas plugin.bpl requires api.bpl.</p> <p>I have the following structure on disk:</p> <p>.\ - final output for exe and bpls<br> .\src - sourcefiles for application.exe and api.bpl, including shared api.pas<br> .\dcu - dcu output for all projects<br> .\plugin - plugin source</p> <p>I can compile application.exe without a problem.<br> I can compile api.bpl without a problem.<br> But when I try to compile plugin.bpl, it tries to build api.bpl first, an then it complains that it can't find api.pas.</p> <p>Why is that?</p> http://stackoverflow.com/questions/806534/delphi-f2084-internal-error-t2575 1 Delphi: F2084 Internal Error T2575 Vegar 2009-04-30T11:54:44Z 2009-11-03T13:01:03Z <p>Do anybody know what this error means?</p> <p>It comes and goes in one of my units. Adding a space or a lineshift will sometime solve it, sometime not...</p> <p>I'm using Delphi 2007.</p> http://stackoverflow.com/questions/1632884/delphi-a-generic-list-of-generic-descendants-and-taking-a-generic-as-a-parameter 1 Delphi: A generic list of generic-descendants and taking a generic as a parameter Vegar 2009-10-27T18:49:03Z 2009-10-27T18:53:16Z <p>I struggle a little with the understanding of generics and how they can and can not be used.</p> <p>I have a generic class TControlMediator like this:</p> <pre><code>TControlMediator&lt;C, T&gt; = class private FMediatedComponent: C; public constructor Create(ComponentToMediate: C); function GetValue: T; virtual; abstract; procedure SetValue(Value: T); virtual; abstract; property MediatedControl: C read FMediatedComponent; end; </code></pre> <p>I then make 'concret' subclasses for each control type that I want to mediate:</p> <pre><code>TEditMediator = class(TControlMediator&lt;TEdit, string&gt;) public function GetValue: string; override; procedure SetValue(Value: string); override; end; </code></pre> <p>So far, everything seems to work OK. Problems arise, though, when I want a list of TControlMediator descendants, or taking a TControlMediator as an parameter to a method:</p> <pre><code>TViewMediator = class private FControlMediators: TList&lt;TControlMEdiator&lt;C, T&gt;&gt;; public procedure registerMediator(AControlMediator: TControlMediator&lt;C, T&gt;); procedure unregisterMediator(AControlMediator: TControlMediator&lt;C, T&gt;); end; </code></pre> <p>The compiler stops with fatal errors:</p> <pre><code>[DCC Error] mediator.pas(23): E2003 Undeclared identifier: 'C' [DCC Error] mediator.pas(28): E2007 Constant or type identifier expected </code></pre> <p>Do anybody have any clues on how this is supposed to be done?</p> http://stackoverflow.com/questions/1591256/delphi-ttcpserver-connection-reset-when-reading 0 Delphi: TTcpServer, connection reset when reading Vegar 2009-10-19T21:25:32Z 2009-10-19T21:25:32Z <p>Hi,</p> <p>I'm trying to implement a <a href="http://fitnesse.org/FitNesse.UserGuide.SliM.SlimProtocol" rel="nofollow">Fitnesse Slim server</a> for delphi, but have some problems with the communication.</p> <p>Fitnesse will start my process, and give me a portnumber as a commandline argument.</p> <p>Then I'm supposed to create a socket at the given portnumber, and Fitnesse will connect to that port. </p> <p>I'm using a TTcpServer for the job:</p> <pre><code>TcpServer1.LocalPort := ParamStr(ParamCount); TcpServer1.Active := true; </code></pre> <p>In the OnAccepted( )-event, I send the protocol version to use, as specified in the spec. </p> <pre><code>procedure TForm1.TcpServer1Accept(Sender: TObject; ClientSocket: TCustomIpClient); var s: ansistring; begin ClientSocket.Sendln('Slim -- V0.0', #10); setLength(s, 6); ClientSocket.ReceiveBuf(s, 6); end; </code></pre> <p>When I call ReceiveBuf( ), the process ends, and fitnesse throws an exception:</p> <pre><code>java.net.SocketException: Connection reset </code></pre> <p>I have used <a href="http://code.google.com/p/ospy/" rel="nofollow">oSpy</a> to see what get sent and received. It shows that after my code sends the protocol version, fitnesse sends a message back, and that the connection is reset when I try to receive this message.</p> <p>Does anybody know what the reason for this can be? Am I doing something completely wrong?</p> <p>Btw, everything works ok when I use the java slim server that comes with fitnesse. oSpy then shows the same communication, up to the first read. While my attempt to read fails, this one works as expected.</p> http://stackoverflow.com/questions/1563161/delphi-good-pattern-strategy-for-view-model-synchronization 5 Delphi: Good pattern/strategy for view <-> model synchronization Vegar 2009-10-13T21:57:26Z 2009-10-14T19:41:37Z <p>There's a lot of talk about model-view-controller, model-view-viewmodel, model-view-presenter and so on these days.</p> <p>What do you see as the best pattern for use with delphi and non-data aware components?</p> <p>How do you usually implement it?</p> http://stackoverflow.com/questions/1533888/delphi-2010-dehl-file-not-found 0 Delphi 2010, DeHL, file not found Vegar 2009-10-07T20:09:12Z 2009-10-12T18:29:44Z <p>Hi,</p> <p>Have installed trial version of Delphi 2010, and hoped to get a look at <a href="http://alex.ciobanu.org/?page%5Fid=162" rel="nofollow">DeHL</a>. </p> <p>There must be something that I have missed out on, though, cause I can't find out how to include any of the units without getting a 'file not found'-error at compile time...</p> <p>What I have done, is to include the path to the pas-files in the projects 'Include file search path'. I also tried to build with packages, but it couldn't find the DeHL-package. I also tried to include the bin-path where all of DeHLs dcu-files are, but no result.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1552565/implementing-a-tag-panel-control-in-delphi/1553869#1553869 1 Answer by Vegar for Implementing a 'tag panel' control in Delphi? Vegar 2009-10-12T10:44:51Z 2009-10-12T10:44:51Z <p>There are two possible solutions to custom alignment in Delphi 7. You can make your own flowpanel by deriving from TCustomPanel and override the AlignControls( )-method, or you can set alignment to alCustom and handle the OnAlignPosition-event.</p> <p>I guess I would have gone for the TCustomPanel-derivative option. TFlowPanel in form Delphi 2007 uses that option- I have to admit, though, that I have never tried either my self...</p> http://stackoverflow.com/questions/679389/elementflow-exception-in-measureoverride 0 ElementFlow: Exception in MeasureOverride Vegar 2009-03-24T21:46:08Z 2009-10-07T05:00:02Z <p>I'm trying to use FluidKits ElementFlow-control in my application, but get an exception in the MeasureOverride method of ElementFlow.</p> <blockquote> <p>Layout measurement override of element 'FluidKit.Controls.ElementFlow' should not return PositiveInfinity as its DesiredSize, even if Infinity is passed in as available size.</p> </blockquote> <p>In the sample application following FluidKit everything goes alright. When MeasureOverride gets called, the availableSize-struct is initialized with the bounds of the control, but in my application it comes with INF for both width and height.</p> <p>I have tried to find whats different between the sample and my app, but both is a window with a grid with a listbox who uses the ElementFlow for ItemsPanel.</p> <p>I have found others struggling with the same exception, but I have not found any solution to it, other than giving the listbox an explicit size. But I don't want to give it a size, I want the grid to manage its layout. </p> <p>Any suggestions?</p> http://stackoverflow.com/questions/1525429/cloning-a-tstringgrid-component/1525769#1525769 2 Answer by Vegar for Cloning a TStringGrid Component Vegar 2009-10-06T13:58:06Z 2009-10-06T13:58:06Z <p>I would use an tabcontrol instead of an pagecontrol. That way, you would end up with multiple tabs but only one page and grid. I would then make some kind of data structure to keep all my cell information in, and render this structure to the grid. This way, I can have multiple structures, and let the active tab decide which structure to render. You will also end up with a looser coupling between your gui and your logic, making it easier change things later. E.g. if you need to bring in some values form a different spreadsheet into a cell in the current spreadsheet, you can load up a structure and pick out the wanted values. No need to make any gui for the second spreadsheet at all.</p> <p>For a 3.party component, I will recommend TMS FlexCell and <a href="http://www.tmssoftware.com/site/aspgrid2.asp" rel="nofollow">TAdvSpreadGrid</a>. That will give you most of what you need.</p> http://stackoverflow.com/questions/464754/ado-adonis-update-criteria 0 ADO, Adonis, Update Criteria Vegar 2009-01-21T10:33:05Z 2009-09-25T04:00:02Z <p>On a form, I have a Quantum Grid and some db-aware editcomponents. When appending a new record in the grid, typing some editvalues both in the grid and the separate editcompoennts, I get an error: </p> <blockquote> <p>EOleException: Row cannot be located for updating. Some values may have been chenged since it was last read</p> </blockquote> <p>After some googling, I think changing the 'Update Criteria'-property from adCriteriaAllCols to adCriteriaKey may be the right solution. But how, and when, do I do that on a Adonis query?</p> http://stackoverflow.com/questions/1460101/delphi-2009-how-to-fix-undeclared-identifiers-that-are-identified/1460137#1460137 4 Answer by Vegar for Delphi 2009 - How to fix 'undeclared identifiers' that are identified Vegar 2009-09-22T13:34:38Z 2009-09-22T13:34:38Z <p>I think this is something the <a href="http://www.delphifeeds.com/go/f/60696" rel="nofollow">IDE Fix Pack 2009/2010</a> can help you with.</p> <pre><code>RAD Studio 2009 fixes: &lt;snip&gt; QC #22880: Cannot resolve unit name </code></pre> http://stackoverflow.com/questions/1443306/delphi-codecompletion-to-override-basemethods 0 Delphi: Codecompletion to override basemethods Vegar 2009-09-18T08:50:14Z 2009-09-18T09:55:07Z <p>In a class declaration, you can press Ctrl+Space to get a list of virtual methods in the baseclass that you can override.</p> <p>This list seems to be very limited, though. Ex. </p> <pre><code> TMyBaseClass = class(TInterfacedObject) protected procedure mymethod; virtual; end; TMyClass = class(TMyBaseClass) protected {Ctrl+Space here...} end; </code></pre> <p>In TMyClass, I get methods from TInterfacedObject and TObject, but not from TMyBaseClass. Why is that?</p> <p>-Vegar</p> <p>EDIT: Forgot my delphi version... I'm using 2007.</p> http://stackoverflow.com/questions/760057/traceable-documented-calculations 1 Traceable/documented calculations Vegar 2009-04-17T11:25:48Z 2009-09-14T11:33:43Z <p>We are about to redesign our calculation engine, and want each step in the calculation to be traceable/documented so that the user can get a complete report on what amounts make up each total.</p> <p>Are there any patterns or good examples on how to implement 'traceable' or 'self-documenting' calculations?</p> http://stackoverflow.com/questions/1391051/delphi-7-xml-handling-with-unicode-support/1392406#1392406 1 Answer by Vegar for Delphi 7, XML handling with Unicode support. Vegar 2009-09-08T07:04:46Z 2009-09-08T07:04:46Z <p>Checkout <a href="http://www.omnixml.com/" rel="nofollow">OmniXML</a>. I have started using it instead of msxml. It also gives you the '<a href="http://17slon.com/blogs/gabr/2009/04/fluent-xml-2.html" rel="nofollow">FluentXMLBuilder</a>' which is very slick.</p> http://stackoverflow.com/questions/923350/delphi-prompt-for-uac-elevation-when-needed 8 Delphi: Prompt for UAC elevation when needed Vegar 2009-05-28T21:40:54Z 2009-09-04T14:18:19Z <p>We need to change some settings to the HKEY_LOCAL_MACHINE at runtime.</p> <p>Is it possible to prompt for uac elevation if needed at runtime, or do I have to launch a second elevated process to do 'the dirty work'?</p> http://stackoverflow.com/questions/1327142/how-to-put-a-transparent-color-on-a-form/1330988#1330988 1 Answer by Vegar for How to put a transparent color on a form? Vegar 2009-08-25T21:05:16Z 2009-08-25T21:05:16Z <p>Is the background image and the darker areas the only thing that you want on your form, or do you have other components that should be blended too?</p> <p>If it's only the background image and the dark areas, I would recommend that you check out <a href="http://www.graphics32.org/wiki/" rel="nofollow">Graphics32</a>. It's an image control supporting layers. It should be fairly easy to archive what you want (or what I assume that you want...) from that. </p> http://stackoverflow.com/questions/1326333/delphi-evaluate-formula-string/1327318#1327318 2 Answer by Vegar for Delphi, evaluate formula string Vegar 2009-08-25T10:15:56Z 2009-08-25T10:15:56Z <p>You can also check out <a href="http://jcl.delphi-jedi.org/" rel="nofollow">JCL</a>, which comes with an expression evaluator in the file <a href="http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclExprEval.pas?view=markup" rel="nofollow">JclExprEval.pas</a>. It's free and open source.</p> http://stackoverflow.com/questions/1299540/any-good-new-delphi-books/1321649#1321649 2 Answer by Vegar for Any good, new Delphi books? Vegar 2009-08-24T10:45:26Z 2009-08-24T10:45:26Z <p>I guess there is not much need for new delphi books any more. If you compare all the big, old books on delphi (e.g. mastering delphi) there ain't much new to learn between versions besides new language features and components. Cantu's handbooks and <a href="http://stores.lulu.com/DrBob42" rel="nofollow">drBob's Delphi 200x Development Essentials</a> will give you this update.</p> <p>I find that after doing delphi for ten years, there is much more to learn from non-delphi specific books. There is so much universal thinking that has nothing to do with what language is used. Like patterns, like clean/solid code, like testing etc. </p> http://stackoverflow.com/questions/1316974/wizard-how-to-check-previous-tabsheet-when-moving-from-page-to-page-in-a-pageco/1317008#1317008 4 Answer by Vegar for [Wizard] How to check previous tabsheet when moving from page to page in a pagecontrol? Vegar 2009-08-22T20:46:22Z 2009-08-22T20:46:22Z <p>TPageControl has an event called OnChanging that is called before the change, and allows you to cancel the change by setting a parameter to false.</p> <p>You can also use this event to record what page was active before the change.</p> <p>I would encourage you to make something not as strongly coupled to a gui-component, though. Try to make some kind of class responsible for holding frames and checking if changing from one to another should be allowed and so on. This would make it easier to switch what type of gui control you would use to visualize the wizard. And it would for sure make it much more easier to test to see if your wizard gives the step-by-step progression that you want, if validation rules is enforced and so on.</p> http://stackoverflow.com/questions/1302414/delphi-and-fitnesse-fit4delphi-examples 0 Delphi and Fitnesse/fit4delphi examples? Vegar 2009-08-19T20:21:05Z 2009-08-20T11:32:42Z <p>Is there any opensource or example projects showing the use of fitnesse with delphi? </p> <p>It's sad how hard it is to find resources and information for delphi... :-/</p> <p><strong>UPDATE:</strong><br /> Ok. I realize that my question was a little short. Searching SO and google was kind of obvious for me, so I didn't mention that I already did. So to clarify a little:<br /> * I know about fit4delphi (thereof the use of fit4delphi both in the title and the taglist)<br /> * I know fit4delphi is somewhat maintained (both from fit4delphi site and other SO-thread)<br /> * I know the most basic examples from fitnesse is ported to delphi and comes with fit4delphi<br /> * I know it is possible to use delphi together with fit/fitnesse (comes from the knowledge of fit4delphi and basic google search giving lots of results stating that it is possible)</p> <p>What I want, is examples of use, not a google query showing that it is possible to use.<br /> I want stories by people with experience from fit4delphi, not from people with experiences from basic google querying. </p> http://stackoverflow.com/questions/1274518/make-a-delphi-tpanel-caption-wrap/1274589#1274589 7 Answer by Vegar for make a Delphi TPanel caption wrap Vegar 2009-08-13T21:11:07Z 2009-08-13T21:11:07Z <p>Not by default, I'm afraid. As you can see from the sourcecode for TPanel, the text is drawn by the DrawText( )-windows api:</p> <pre><code>procedure TCustomPanel.Paint; {snip} begin {snip} Flags := DT_EXPANDTABS or DT_SINGLELINE or VerticalAlignments[FVerticalAlignment] or Alignments[FAlignment]; Flags := DrawTextBiDiModeFlags(Flags); DrawText(Handle, PChar(Caption), -1, Rect, Flags); end; </code></pre> <p>You can either derive and override the Paint-method, or you could just use a label instead.</p> http://stackoverflow.com/questions/1268459/delphi-unit-testing-include-tested-source-in-project-or-just-use-it 1 Delphi & unit testing: Include tested source in project, or just use it? Vegar 2009-08-12T20:13:10Z 2009-08-13T17:18:11Z <p>I have a project group with the main project and a test project.</p> <p>When writing unit tests for a class in the main project, do you include the source file in the test project, or do you put the path to it in the search path?</p> <p>Why do you do one over the other?</p> <p>Are there any best practices on this?</p> <p>UPDATE: It looks like including is the preferred option, much because of the disadvantages of 'getting access' to all units in the search path vs only getting access to the units that you intend to use. What bugs me, though, is the need to include a file in two projects all the time. I usually keep the test project as the active project, so when I need a new class, I create a new unit, that becomes a part of the test project, but store it under the main projects path. Now, I need to remember to also include it in the main project. There should be a 'create new unit, and add it to all open projects'-action....</p> http://stackoverflow.com/questions/1270913/delphi-memoryleak-in-idstack-but-who-uses-idstack 3 Delphi: memoryleak in IdStack, but who uses IdStack? Vegar 2009-08-13T09:10:28Z 2009-08-13T16:26:00Z <p>FAstMM reports a memoryleak from a TIdCriticalSection in IdStack.pas. I understand this is a intentional leak, that is documented in the code.</p> <p>What I do not understand, is why IdStack is included in my project. How can I find out what unit pulls it in?</p> <p>Is there a way of excluding this leak from the report, using the version of fastmm that comes with delphi 2007?</p> <p>UPDATE: Is there a way of finding all the pas-files included in a build?</p> http://stackoverflow.com/questions/1260261/delphi-interfaces-and-properties 5 [Delphi] Interfaces and properties Vegar 2009-08-11T13:12:57Z 2009-08-11T16:46:24Z <p>Is it possible to declare a property in an interface without declaring the get- and set-methods for it? Something like:</p> <pre><code>IValue = interface property value: double; end; </code></pre> <p>I want to state that the implementor should have a property called value, returning a double, but I really don't care if it returns a private field or the result from a function. </p> <p>If it is possible, is it possible to declare it read/write or read-only?</p> http://stackoverflow.com/questions/1176782/opengl-help-with-camera-transformation 1 OpenGL: Help with camera transformation Vegar 2009-07-24T10:08:18Z 2009-07-29T05:37:26Z <p>I'm trying to implement a camera-model in Delphi/OpenGL after the description given in OpenGL SuperBible. The camera has a position, a forward vector and a up vector. Translating the camera seems to work OK, but when I try to rotate the camera according to the forward vector, I loose sight of my object.</p> <pre><code>function TCamera.GetCameraOrientation: TMatrix4f; var x, z: T3DVector; begin z := T3DVector.Create(-FForward.X, -FForward.y, -FForward.z); x := T3DVector.Cross(z, FUp); result[0, 0] := x.X; result[1, 0] := x.Y; result[2, 0] := x.Z; result[3, 0] := 0; result[0, 1] := FUp.X; result[1, 1] := FUp.Y; result[2, 1] := FUp.Z; result[3, 1] := 0; result[0, 2] := z.x; result[1, 2] := z.y; result[2, 2] := z.z; result[3, 2] := 0; result[0, 3] := 0; result[1, 3] := 0; result[2, 3] := 0; result[3, 3] := 1; end; procedure TCamera.ApplyTransformation; var cameraOrient: TMatrix4f; a, b, c: TMatrix4f; begin cameraOrient := getcameraOrientation; glMultMatrixf(@cameraOrient); glTranslatef(-FPosition.x, -FPosition.y, -FPosition.z); end; </code></pre> <p>Given the position (0, 0, -15), forward vector (0 0 1) and up vector (0 1 0), I expected to get a identity-matrix from the getCameraOrientation-method, but instead I get</p> <pre><code>(1, 0, 0, 0) (0, 1, 0, 0) (0, 0, -1, 0) (0, 0, 0, 1) </code></pre> <p>If I change the forward vector to (0 0 -1) I get the following matrix:</p> <pre><code>(-1, 0, 0, 0) ( 0, 1, 0, 0) ( 0, 0, 1, 0) ( 0, 0, 0, 1) </code></pre> <p>After the call to glMultMatrix( ) and glTranslate( ), glGet( ) gives me the following GL_MODELVIEW_MATRIX: </p> <pre><code>( 1, 0, 0, 0) ( 0, 1, 0, 0) ( 0, 0, -1, 0) ( 0, 0, 15, 1) </code></pre> <p>I would have expected the 15 to be in column 4, row 3, not column 3, row 4. </p> <p>Can anyone see where I get this wrong?</p> <p>EDIT: The original code from OpenGL SuperBible:</p> <pre><code> inline void GetCameraOrientation(M3DMatrix44f m) { M3DVector3f x, z; // Make rotation matrix // Z vector is reversed z[0] = -vForward[0]; z[1] = -vForward[1]; z[2] = -vForward[2]; // X vector = Y cross Z m3dCrossProduct(x, vUp, z); // Matrix has no translation information and is // transposed.... (rows instead of columns) #define M(row,col) m[col*4+row] M(0, 0) = x[0]; M(0, 1) = x[1]; M(0, 2) = x[2]; M(0, 3) = 0.0; M(1, 0) = vUp[0]; M(1, 1) = vUp[1]; M(1, 2) = vUp[2]; M(1, 3) = 0.0; M(2, 0) = z[0]; M(2, 1) = z[1]; M(2, 2) = z[2]; M(2, 3) = 0.0; M(3, 0) = 0.0; M(3, 1) = 0.0; M(3, 2) = 0.0; M(3, 3) = 1.0; #undef M } inline void ApplyCameraTransform(bool bRotOnly = false) { M3DMatrix44f m; GetCameraOrientation(m); // Camera Transform glMultMatrixf(m); // If Rotation only, then do not do the translation if(!bRotOnly) glTranslatef(-vOrigin[0], -vOrigin[1], -vOrigin[2]); } </code></pre> http://stackoverflow.com/questions/1873110/how-to-check-if-application-runs-from-program-files/1879588#1879588 Comment by Vegar on How to check if application runs from \program files\ Vegar 2009-12-10T11:19:23Z 2009-12-10T11:19:23Z We have to deal with terminal serivces too, which makes the case a little more complex... http://stackoverflow.com/questions/1873110/how-to-check-if-application-runs-from-program-files Comment by Vegar on How to check if application runs from \program files\ Vegar 2009-12-10T11:18:05Z 2009-12-10T11:18:05Z @mghie: The problem with giving choices, is that most of our users don't have the knowledge to make a choice. But I can't see any other good solution, though, and I have nearly convinced the other decision takers that it is impossible to detect what's right. For know, we have settled on asking the user during installation if it is a local, one-user installation, a shared intallation on server, or an installation for terminal services. We are unsure about the last one though. Any way, we have documented tweaks for knowledged sys.admins. @robsoft: enjoy your coffee ;-) http://stackoverflow.com/questions/1873110/how-to-check-if-application-runs-from-program-files Comment by Vegar on How to check if application runs from \program files\ Vegar 2009-12-09T12:40:36Z 2009-12-09T12:40:36Z I don't care which language. This is a windows problem not an language problem. The problem should be the same what ever language you use. http://stackoverflow.com/questions/1808730/how-to-use-tcontrol-align-alcustom/1810584#1810584 Comment by Vegar on How to use TControl.Align := alCustom ? Vegar 2009-12-02T08:01:25Z 2009-12-02T08:01:25Z I guess I was a little unclear. The 'order'-property is named 'ControlIndex' and will appear at the bottom of the object inspector. http://stackoverflow.com/questions/1809339/what-do-you-use-as-wpf-alternative-for-win32-delphi Comment by Vegar on What do you use as WPF alternative for Win32 Delphi? Vegar 2009-11-27T21:08:08Z 2009-11-27T21:08:08Z Have you considered a blend of win32 an wpf? It is possible to mix in some wpf in a win32 application. Take a look at tms interop-component (<a href="http://www.tmssoftware.com/site/xv.asp" rel="nofollow">tmssoftware.com/site/xv.asp</a>) or even more flexible, RemObjects Hydra (<a href="http://www.remobjects.com/hydra.aspx" rel="nofollow">remobjects.com/hydra.aspx</a>). http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1781690#1781690 Comment by Vegar on Fluid Form Layout in Delphi Vegar 2009-11-23T12:27:27Z 2009-11-23T12:27:27Z I would go for the flow panel. Try to group related components in panels, or frames, and place this panel in a flow panel together with the other panels. When you now hide one panel, other panel will use the available space. GridPanel may be to limited for this use. http://stackoverflow.com/questions/1781263/fluid-form-layout-in-delphi/1781665#1781665 Comment by Vegar on Fluid Form Layout in Delphi Vegar 2009-11-23T08:00:30Z 2009-11-23T08:00:30Z This is what flowpanel handles better than a regular panel with topaligned childs. ;-) http://stackoverflow.com/questions/1763168/xcode-missing-inline-test-results/1764761#1764761 Comment by Vegar on XCode missing inline test results Vegar 2009-11-19T20:45:45Z 2009-11-19T20:45:45Z &quot;Cmd =&quot; and &quot;Cmd +&quot; was a good tip, but I would prefer the red bubbles, though :-) http://stackoverflow.com/questions/1763168/xcode-missing-inline-test-results/1763515#1763515 Comment by Vegar on XCode missing inline test results Vegar 2009-11-19T20:36:46Z 2009-11-19T20:36:46Z I have Xcode 3.2.1. The screenshot is taken from apples site. Does that mean there is no inline results for me? http://stackoverflow.com/questions/1760620/how-do-i-add-a-tlabel-to-the-menu-bar-in-delphi Comment by Vegar on How Do I Add A TLabel To The Menu Bar in Delphi? Vegar 2009-11-19T09:30:50Z 2009-11-19T09:30:50Z If it&#180;s made with delphi, it should be failrly easy to find what component is used by inspecting the resources. http://stackoverflow.com/questions/1684061/delphi-2010-package-problem-file-not-found-error/1684307#1684307 Comment by Vegar on Delphi 2010 - package problem, File not found error Vegar 2009-11-07T20:43:38Z 2009-11-07T20:43:38Z @Heinz: Plugin has the ..\src\ in it's search path, which gives access to the api.pas-file. The answer suggests that the problem comes from the fact that api.bpl is build with the rules of plugin.pbl, and suggest that I add the source paths from api.bpl to plugin.bpl. Api.bpl has no search path, as it contains and use no more then one file, api.pas. Plugin.bpl also uses this file, and already has it in it's source path. So, '.., and that should work, ..., shouldn't it?' means that I have already tried what he suggests, and it doesn't work, but it should... I have no answer... http://stackoverflow.com/questions/1684061/delphi-2010-package-problem-file-not-found-error/1684307#1684307 Comment by Vegar on Delphi 2010 - package problem, File not found error Vegar 2009-11-06T07:44:54Z 2009-11-06T07:44:54Z Anyway, plugin.bpl has ..\src\ in it's search path, and that should work for api.bpl to, shouldn't it? http://stackoverflow.com/questions/1684061/delphi-2010-package-problem-file-not-found-error/1684307#1684307 Comment by Vegar on Delphi 2010 - package problem, File not found error Vegar 2009-11-06T07:43:37Z 2009-11-06T07:43:37Z but api.pbl doesn't have any paths, since the only file it uses is the one it contains, and that file is in the same folder as the package source... Maybe I should try to move it into it's own folder? http://stackoverflow.com/questions/1632884/delphi-a-generic-list-of-generic-descendants-and-taking-a-generic-as-a-parameter/1632912#1632912 Comment by Vegar on Delphi: A generic list of generic-descendants and taking a generic as a parameter Vegar 2009-10-30T11:27:21Z 2009-10-30T11:27:21Z Yes, that's the solution that I have come to. Maybe even an interface. http://stackoverflow.com/questions/1632884/delphi-a-generic-list-of-generic-descendants-and-taking-a-generic-as-a-parameter/1632912#1632912 Comment by Vegar on Delphi: A generic list of generic-descendants and taking a generic as a parameter Vegar 2009-10-27T21:52:45Z 2009-10-27T21:52:45Z I want to register mediators of different kind like: MyViewMediator.RegisterMediator(TEditMediator.create(someEdit)); MyViewMediator.RegisterMediator(TComboMediator.create(someCombo)); Later, I want to loop all registered mediators and call a method on them.