active questions tagged delphi+win32 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T19:27:40Z http://stackoverflow.com/feeds/tag/delphi+win32 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1897181/closing-a-secondary-delphi-form-causes-the-main-form-to-lose-focus 0 Closing a secondary delphi form causes the main form to lose focus Y Low 2009-12-13T17:54:56Z 2009-12-14T20:41:06Z <p>When showing a secondary form from the main form and from the second form showing a third form and then closing both forms will cause the main form to lose focus.</p> <p>Using Delphi 2009 with XP SP3</p> <p>Here are my steps for reproducing the problem:</p> <ol> <li>Create a new VCL forms applications</li> <li>Drag a button onto the created form</li> <li>In the click handler create a new TForm1 and show it</li> </ol> <p>Run the program. Click the button to show a second form. Click the button on the second form to create a third form. When closing both new forms the main form will lose its focus.</p> <p>This is my code in the button click event handler:</p> <pre> // Using Self does not change the results with TForm1.Create(nil) do show; </pre> <p>Is there any way to stop my main form from losing focus?</p> http://stackoverflow.com/questions/1850194/open-process-as-different-user 0 open process as different user Remus Rigo 2009-12-04T22:54:24Z 2009-12-05T16:37:32Z <p>hi all</p> <p>I want to get the privileges of a selected user on a local machine. I know how to get them from the current user, so my problem is how to open a process as as a different user.</p> <p>I'm currently looking for more info about <a href="http://msdn.microsoft.com/en-us/library/ms682429%28VS.85%29.aspx" rel="nofollow">CreateProcessAsUser()</a></p> <p>thanks</p> http://stackoverflow.com/questions/1832330/reading-unicode-data-from-db2-via-ado-and-odbc 0 Reading Unicode data from DB2 via ADO and ODBC kaeff 2009-12-02T11:24:50Z 2009-12-02T11:24:50Z <p>From my application written with Delphi 2009, I am reading from and writing to an IBM DB2 database using ADO, the ODBC Provider for ADO, and ODBC:</p> <p>Application -> ADO (Win32) -> ODBC-Provider for ADO -> ODBC -> (net) -> DB2 (Windows)</p> <p>Now, my application need to store unicode data. So I set my database codepage to UTF-8. Delphi handles strings in UTF-16 internally and passes them as multi-byte-characters to COM. So I should be fine on encoding on the application's side. </p> <p>Inserting non-ansi-chars in a VARCHAR db field works fine, they are displayed correctly by the DB2 management console (which is a Java application using, I figured, JDBC). In my application (or any other test application I wrote that uses ADO queries), I get only a sequence of #$1A bytes for VARCHAR fields with unicode characters in them.</p> <p>Strangely, the same application works fine if the backend is a Microsoft SQL database. Retrieving ANSI-compliant character strings also isn't a problem for DB2.</p> <p>In the DB2 documentation it says that the DB2 ODBC drivers responds with unicode characters if an application calls the suffix-W ODBC APIs. Is it possible that under certain circumstances the ODBC Provider for ADO doen't trigger those functions but instead uses the ANSI functions? I tried setting a client codepage in the ADO connection string and the ODBC driver settings without success, although I could've done that the wrong wav.</p> http://stackoverflow.com/questions/1800485/atch-the-start-applications 1 Сatch the start applications benasio 2009-11-25T22:48:31Z 2009-11-26T13:16:55Z <p>How to catch the start and completion of applications (processes) in Win. How to measure the time of each application?</p> http://stackoverflow.com/questions/1393006/how-to-get-the-cpu-usage-per-thread-on-windows-win32 6 How to get the cpu usage per thread on windows (win32) Dirk Paessler 2009-09-08T09:40:23Z 2009-11-19T12:49:10Z <p>Looking for Win32 API functions, C++ or Delphi sample code that tells me the CPU usage (percent and/or total CPU time) of a thread (not the total for a process). I have the thread ID.</p> <p>I know that Sysinternals Process Explorer can display this information, but I need this information inside my program.</p> http://stackoverflow.com/questions/1590997/what-is-a-good-free-solution-for-richtext-editor-and-convertion-to-html 0 What is a good, free solution for Richtext editor and convertion to HTML? Workshop Alex 2009-10-19T20:37:52Z 2009-11-04T22:33:23Z <p>Simple situation. I'm trying to write my own blog with a minor twist. Part of the blog will be controlled from a client application instead of a web interface. Basically, I'm still in the design phase and haven't written a single line of code. <em>But I'm trying to combine several techniques into an interesting exercise in software development.</em> Thus I want a client application which I can use to write articles in, which can then upload the article through a web service to the server. (The client would be Delphi 2007/WIN32 and the service is ASP.NET/C# with SQL Server.)</p> <p>The article itself would be stored in RTF format, including images. This would be in a local database on the client, which would also keep track of the article's status. Once uploaded, it will keep the article synchronised with the version on the server. Technical details are just boring and as said before, still in a design phase...</p> <p>But I do need a good solution to convert the article from RTF in the database to HTML to be displayed in the blog. I have two options:</p> <ol> <li>Upload both the RTF and HTML from the client, with the client doing the convertion from RTF to HTML.</li> <li>Upload just the RTF and let it convert on demand on the server. (Or convert on the server when the RTF is uploaded.)</li> </ol> <p>Option 1 would need a Delphi/WIN32 solution to convert it while option 2 would need a .NET solution for the conversion. I don't want an RTF editor for .NET but need a good option to use in Delphi 2007. And I need something to convert an RTF to HTML, which would keep (almost) all formatting and which would include all images from the text. This could be both in .NET or Delphi.</p> <p>So, the following questions:</p> <ul> <li>Is there a good, free RTF editor for Delphi which can handle images?</li> <li>Is there a good RTF-to-HTML converter for Delphi or C# which can keep as much of it's formatting intact as possible, including images?</li> </ul> http://stackoverflow.com/questions/1585453/detect-windows-explorer-copy-operation 1 detect Windows Explorer copy operation Attilah 2009-10-18T17:11:07Z 2009-10-21T09:46:20Z <p>Is there any way to detect whenever a copy operation starts in Windows Explorer.</p> <p>kind of like in SuperCopier : <a href="https://sourceforge.net/projects/supercopier/" rel="nofollow">SuperCopier Website</a> ?</p> <p>and log files involved in the operation ? and such ?</p> <p>I've browsed through Supercopier code and I can't find the part which deals with detecting the copy operation, as I'm not fluid in Delphi.</p> <p>P.S : it seems they are using a Shell Extension ...not sure though.</p> http://stackoverflow.com/questions/1562324/detecting-windows-shell-changes 0 detecting windows shell changes megatr0n 2009-10-13T19:12:23Z 2009-10-14T00:02:38Z <p>I have very limited knowledge of using C Builder, could you give me an example or point me to tutorial showing how to use FindNextChangeNotification in Delphi or ,if it is possible, how to use the C component in delphi?</p> http://stackoverflow.com/questions/1538850/magnification-for-pdas-and-smartphones-using-rdesktop 0 Magnification for PDAs and Smartphones using RDesktop Peter Turner 2009-10-08T16:14:31Z 2009-10-08T18:35:41Z <p>If I've got some Native Windows App (i.e. Delphi) and I'm having a lot of end users running it on things like the Nokia N800 connected to a windows terminal server using RDesktop. </p> <p>Some of the things on the screen are very hard to see, but I don't want to have some weird magnification of the whole screen because the resolution on those Nokia devices is really pretty adequate. </p> <p>Anyway, what I'm wondering is how you would approach a problem like this, I see in my list of related questions that there is Windows Magnification API, is that good for Win32 or just .NET? Is it too clunky to just increase the relative size of the button or label nearest to the stylus or finger or mouse on the screen. Are there 3rd party API's for this kind of Hi-jinx?</p> http://stackoverflow.com/questions/1453679/best-way-of-validating-modal-dialog-fields 1 Best way of validating modal dialog fields? Roddy 2009-09-21T09:47:45Z 2009-09-21T22:05:52Z <p>I often need to have modal dialogs for editing properties or application configuration settings, but I'm never really happy about how to validate these, and present the validation results to the user.</p> <p>Choices and tools are typically:-</p> <ol> <li><p>Design UI so that invalid choices are simply impossible - i.e. use "mask edits", range limits on spin-edits, </p></li> <li><p>Try and trap errors as they're found - immediate dialogs or feedback when a user has an invalid value entered somewhere (although, because this may be due to an incomplete entry, this can be visually distracting)</p></li> <li><p>Detect errors on change of control focus</p></li> <li><p>Validate entire dialog when OK is pressed, and present message box(es) showing what's wrong.</p></li> </ol> <p>No.4 is typically the easiest and quickest to code, but I'm never really happy with it. </p> <p>What good techniques have you found to handle this?</p> <p>While this question is fairly generic, an ideal answer would be easily implementable in Delphi for Win32...</p> http://stackoverflow.com/questions/1407537/cardspace-and-delphi-2007-win32 0 CardSpace and Delphi 2007/WIN32 Workshop Alex 2009-09-10T20:28:10Z 2009-09-14T11:37:12Z <p>Very simple problem. I have a Delphi application and I want to restrict access to this by requiring users to log on using <a href="http://en.wikipedia.org/wiki/Windows%5FCardSpace" rel="nofollow">CardSpace</a>. Basically, I need to extract the ID, name and address information from the cardspace card.</p> <p>The use of CardSpace is a requirement from a customer and I just want to know if:</p> <ol> <li>Can CardSpace be easily used from Delphi? </li> <li>Is there already a Delphi component for CardSpace?</li> </ol> <p>The biggest problem? The application needs to be a WIN32 application, although CardSpace is .NET based.</p> http://stackoverflow.com/questions/1408898/retrieving-delphi-window-handles 2 Retrieving Delphi Window Handles Jon Tackabury 2009-09-11T03:56:53Z 2009-09-11T06:31:04Z <p>I am trying to get the window handles to a Delphi application from an external application. I can see that there are a few windows created (TApplication, TFrmMain and a few others), and I know that TApplication is the "controller", but never visible. However, can I read what the value for the real window is? I know that it is TFrmMain (for this specific application), but is it possible to actually figure this out somehow? Is the information stored in the window properties,or somewhere else? Thanks!</p>