User Jozz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:13:32Z http://stackoverflow.com/feeds/user/12351 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1241358/how-do-i-declare-a-tfield-as-nullable/1242774#1242774 0 Answer by Jozz for How do I declare a TField as nullable? Jozz 2009-08-07T03:40:52Z 2009-08-07T03:40:52Z <p>i don't know if this will help but it sounds familiar. check the properties on the fields of the ado dataset that feeds the cds. i know in d7 the cds internally takes on the readonly property of the provider's dataset regardless of its own readonly setting. the same problem may apply to the required property.</p> http://stackoverflow.com/questions/872907/delphi-how-to-programmatically-eject-a-cd-using-the-drive-letter/875104#875104 0 Answer by Jozz for Delphi: How to programmatically eject a CD using the drive letter Jozz 2009-05-17T18:00:30Z 2009-05-17T18:00:30Z <pre><code> uses ComObj; function EjectDrive(const ADriveLetter: string): Boolean; var WMP: Variant; CDROMs: Variant; Drive: Variant; begin WMP := CreateOleObject('WMPlayer.OCX.7'); CDROMs := WMP.CDROMCollection; Drive := CDROMs.GetByDriveSpecifier(ADriveLetter + ':'); Drive.Eject; end; procedure TForm1.FormCreate(Sender: TObject); begin EjectDrive('Q'); end; </code></pre> <p>Edit: As you can see, I didn't write any error handling code. This code will raise an exception if an invalid drive is specified.</p> http://stackoverflow.com/questions/761144/where-can-i-find-sample-delphi-code-or-component-for-accessing-exchange-outlook-c/761404#761404 0 Answer by Jozz for Where can I find sample Delphi code or component for accessing exchange/outlook contacts and appointments? Jozz 2009-04-17T17:31:06Z 2009-04-17T17:31:06Z <p>I'm not sure if TurboPower OfficePartner supports the features you're looking for, but it's free (as in open source) and might be worth a look:</p> <p><a href="http://sourceforge.net/projects/tpofficepartner/" rel="nofollow">http://sourceforge.net/projects/tpofficepartner/</a></p> http://stackoverflow.com/questions/655009/delphi-help-need-with-a-clientdataset/655176#655176 1 Answer by Jozz for DELPHI - help need with a ClientDataSet Jozz 2009-03-17T17:08:31Z 2009-03-17T17:08:31Z <p>I can't think of a slick way to do this, but you could index on BRANCH_ID, add an fkInternalCalc boolean field to your dataset, then initialize that field to True on the first row of each branch (using group state or manually) and then filter the clone on the value of the field. You'd have to update the field on data changes though.</p> <p>I have a feeling that a better solution would be to have a master dataset with a row for each branch.</p> http://stackoverflow.com/questions/517699/registering-a-form-in-object-repository-automated-by-code-or-any-other-means/518516#518516 1 Answer by Jozz for Registering a form in Object Repository (automated, by code or any other means) Jozz 2009-02-05T23:46:03Z 2009-02-05T23:46:03Z <p>Since nobody else is giving answers, let me tell you would I would try.</p> <p>I would go to the registry and export a copy of the Delphi branch before registering the form in the repository, then register and save another copy, and compare them in a difference viewer. If you're lucky, the information is stored there and you can deduce what registry entries you need to add to register... you may be able to just ship a .reg file.</p> <p>BTW, that is how we configure our Delphi installations at the company I work at. Keeps everything the same...</p> <p>If it doesn't work, the config is probably stored somewhere in the file system. You could employ similar forensic methods to attempt to reverse engineer how the registration is encoded there...</p> http://stackoverflow.com/questions/491246/how-can-i-check-that-properties-linking-to-components-is-not-lost/494493#494493 1 Answer by Jozz for How can I check that Properties linking to components is not "lost"? Jozz 2009-01-30T04:34:42Z 2009-01-30T04:34:42Z <p>When you add a form, data module or frame to a project, the IDE inserts a little comment "tag" after the unit name in the dpr file. It has been my experience that if for any reason this tag is not present, the IDE is more prone to losing cross-module component references.</p> <p>I wholeheartedly support the idea of always viewing differences before each commit to version control, if you are using such as thing.</p> http://stackoverflow.com/questions/465647/filtering-a-tclientdataset-on-a-nesteddataset-field/466894#466894 1 Answer by Jozz for Filtering A TClientDataSet On A NestedDataSet Field Jozz 2009-01-21T20:43:04Z 2009-01-21T20:43:04Z <p>Try adding an OnFilterRecord handler to the master dataset and use Locate on the nested dataset inside the handler to see if the record exists.</p> http://stackoverflow.com/questions/462676/switching-control-types-but-not-names-for-lots-of-controls-on-a-form-in-delphi/462796#462796 8 Answer by Jozz for Switching Control Types (but not names) for Lots of Controls on a Form in Delphi Jozz 2009-01-20T19:45:02Z 2009-01-20T19:45:02Z <p>If you don't feel like using any external tools, you could always try switching to view the form as text, then search and replace TEdit to TSpinEdit. When you switch back and save the form, the IDE should tell you that the declarations in the .pas file are incorrect and offer to correct them automatically. Property mappings shouldn't be a problem unless there are properties that are named differently that you want to map from one class to the other. Properties that don't exist on the new class will be deleted. This is how it works in Delphi 7 anyway...</p> <p>If you're not happy with the results, you might try GExperts as recommended by Craig, which are a great addition to the IDE for many reasons.</p> http://stackoverflow.com/questions/457363/how-to-make-delphi-dunit-test-fail-when-tsqlconnection-connected-true/458269#458269 2 Answer by Jozz for How to make Delphi DUnit test fail when TSQLConnection.Connected = true Jozz 2009-01-19T16:45:53Z 2009-01-19T16:45:53Z <p>GExperts has a "Set Component Properties" expert that we configure to close database connections on every compile. Since doing that, we have not had the problem.</p> http://stackoverflow.com/questions/455811/can-a-tclientdataset-nested-one-to-many-datasets-be-created-at-runtime/456324#456324 3 Answer by Jozz for Can a TClientDataSet Nested (one-to-many) DataSets be created at runtime Jozz 2009-01-19T01:52:34Z 2009-01-19T01:52:34Z <p><a href="http://dn.codegear.com/article/29825" rel="nofollow">Nesting DataSets in ClientDataSets</a> by Cary Jensen should answer your question. Also look for other articles on this site by Cary for more information on ClientDataSets.</p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow/263092#263092 1 Answer by Jozz for What Delphi coding standards document(s) do you follow? Jozz 2008-11-04T19:32:36Z 2008-11-04T19:32:36Z <p>It really doesn't matter as long as you pick one and stick to it. A coding standard is like a dialect, and as long as everyone on the team speaks the same dialect, you're fine.</p> <p>That said, why not pick the same standard as your runtime library (VCL) and documentation use? Then you will all be speaking the same dialect and you will have an easier time reading the runtime library code. And there are plenty of code examples to illustrate coding conventions.</p> http://stackoverflow.com/questions/251594/serial-port-writefile-freeze/252048#252048 2 Answer by Jozz for Serial port WriteFile() freeze Jozz 2008-10-30T22:54:16Z 2008-10-30T22:54:16Z <p>If you google for the words <em>writefile hangs</em>, you'll find a number of discussions on this problem. Some leads are buffer overruns, sizing your buffer correctly, a defective COM port, clearing the status on error... Seems like there are plenty of things to try.</p> <p>Another thing I would suggest is to use a communications library instead of calling the API directly, something like Async Professional (<a href="http://sourceforge.net/projects/tpapro/" rel="nofollow">http://sourceforge.net/projects/tpapro/</a>). Even if they add some overhead to your application, they might simplify your work and avoid a number of potential pitfalls...</p> http://stackoverflow.com/questions/247909/what-is-the-simplest-way-to-work-with-associative-strings-key-values/247935#247935 8 Answer by Jozz for What is the simplest way to work with associative strings (key/values)? Jozz 2008-10-29T18:42:58Z 2008-10-29T18:42:58Z <p>Yes, assignment can be done this way instead, avoiding manual string concatenation:</p> <pre><code>MyStringList.Values[Key1] := Value1; </code></pre> http://stackoverflow.com/questions/244536/multiselect-listbox-binded-to-database-in-delphi-6/244746#244746 0 Answer by Jozz for Multiselect listbox binded to database in Delphi 6. Jozz 2008-10-28T20:31:49Z 2008-10-28T20:31:49Z <p>In a TDbLookupListBox you have the option to bind two different things to data; first you can bind the list to a dataset (ListSource/ListField/KeyField), second you can bind the selected item to a field in another dataset (DataSource, DataField). There is nothing conceptually wrong with wanting to bind the list of items to a dataset, and then manually manage multiple selections, however I don't think it is possible with the current implementation without subclassing and enabling the required control styles.</p> http://stackoverflow.com/questions/242584/will-you-use-delphi-prism/244044#244044 4 Answer by Jozz for Will you use Delphi Prism Jozz 2008-10-28T16:58:15Z 2008-10-28T16:58:15Z <p>At our company we already have C# developers on board, and they have no interest in switching to an obscure third party language.</p> <p>Management and auditors are worried about the future of Delphi, right or wrong as they may be, but it is a fact that they are worried and would like to eliminate that perceived risk by moving away from everything that has Delphi in its name. I won't even try to sell Prism for .NET development because it's a religious battle against higher powers.</p> <p>The only part of Prism that I might use is the DataSnap interop for integrating our massive native Delphi codebase with our new .NET development, but for that I would use C# on the .NET side if at all possible.</p> http://stackoverflow.com/questions/237106/get-string-return-value-from-c-dll-in-delphi/237656#237656 4 Answer by Jozz for Get string return value from C DLL in Delphi Jozz 2008-10-26T06:24:13Z 2008-10-26T06:24:13Z <p>p2 isn't initialized. StrPCopy copies the string to a random memory location. And most likely the calling convention is stdcall.</p> http://stackoverflow.com/questions/230940/what-features-would-you-like-to-see-in-the-win32-delphi-compiler/234306#234306 2 Answer by Jozz for What features would you like to see in the win32 Delphi Compiler? Jozz 2008-10-24T16:39:47Z 2008-10-24T16:39:47Z <ul> <li>Set operations that work on strings, object references etc.</li> <li>Remove limit on the number of items in sets (even if performance suffers)</li> <li>Attributes and reflection in the native compiler</li> </ul> http://stackoverflow.com/questions/217793/get-application-exe-size-easily/220384#220384 3 Answer by Jozz for Get Application exe size easily Jozz 2008-10-21T00:14:07Z 2008-10-21T00:14:07Z <p>For the sake of future compatibility, you should choose an implementation that does not require pointers or Windows API functions when possible. The TFileStream based solution provided by skamradt looks good to me.</p> <p>But... You shouldn't worry too much whether the routine is 1 or 10 lines of code, because you're going to encapsulate it anyway in a function that takes a filename as a parameter and returns an Int64, and put it in your personal library of reusable code. Then you can call it like so:</p> <p>GetMyFileSize(Application.ExeName);</p> http://stackoverflow.com/questions/191493/avoiding-dialog-boilerplate-in-delphi-and-or-c/192265#192265 0 Answer by Jozz for Avoiding Dialog Boilerplate in Delphi and /or C++ Jozz 2008-10-10T17:03:32Z 2008-10-10T17:03:32Z <p>Binding controls to data works well in Delphi, but unfortunately only when that data resides in a TDataSet descendant. You could write a TDataSet descendant that uses an object for data storage, and it turns out that one such thing already exists. See link below... This implementation appears to only work with collections of objects (TCollection or TObjectList), not single objects.</p> <p><a href="http://www.torry.net/pages.php?id=563" rel="nofollow">http://www.torry.net/pages.php?id=563</a> - search the page for for "Snap Object DataSet"</p> <p>I have no personal experience with this, but it would be very useful if it works and especially if it would also work with single object instances, such as a property on a data module...</p> http://stackoverflow.com/questions/262892/what-delphi-coding-standards-documents-do-you-follow/263092#263092 Comment by Jozz on What Delphi coding standards document(s) do you follow? Jozz 2008-11-04T20:04:35Z 2008-11-04T20:04:35Z My personal persuasion is that less is more, and at the end of the day, the rules you can capture in a standards document are vastly less important for maintainability than the attitude and experience of the programmer. http://stackoverflow.com/questions/251594/serial-port-writefile-freeze/251615#251615 Comment by Jozz on Serial port WriteFile() freeze Jozz 2008-10-30T23:36:30Z 2008-10-30T23:36:30Z ComDrv32.pas doesn't appear to have a whole lot of thought put into error handling. It may work fine as long as things are going great, but there is no error checking on API calls. I wouldn't trust this library to be very robust. http://stackoverflow.com/questions/247909/what-is-the-simplest-way-to-work-with-associative-strings-key-values/247935#247935 Comment by Jozz on What is the simplest way to work with associative strings (key/values)? Jozz 2008-10-29T21:59:42Z 2008-10-29T21:59:42Z Yes, THashedStringList invalidates the hash array every time the list changes. http://stackoverflow.com/questions/247909/what-is-the-simplest-way-to-work-with-associative-strings-key-values/247935#247935 Comment by Jozz on What is the simplest way to work with associative strings (key/values)? Jozz 2008-10-29T18:57:47Z 2008-10-29T18:57:47Z Wow, I had never seen THashedStringList before. Good to know! Thanks, Jeff. http://stackoverflow.com/questions/242584/will-you-use-delphi-prism/244044#244044 Comment by Jozz on Will you use Delphi Prism Jozz 2008-10-29T18:33:12Z 2008-10-29T18:33:12Z Actually, C# was never a third party language because the language, platform and IDE all come from the same vendor. Obscure, maybe, although it was designed to look inviting to C++ and Java developers...