mj2008
|
Registered User
|
|
1d |
answered | How to protect the source of a delphi app? |
|
2d |
comment |
How do I get the handle for locking a file in Delphi? Okay, I've read the source, and it does end up at a lock call, so it is good. |
|
2d |
comment |
How do I get the handle for locking a file in Delphi? That isn't quite the same as a lock though is it? And is it safe over a network to a shared drive? I have to be able to guarantee it as much as sensibly possible. |
|
2d |
asked | How do I get the handle for locking a file in Delphi? |
|
Dec 14 |
comment |
Closing a secondary delphi form causes the main form to lose focus Try setting the nil parameter to self instead. |
|
Dec 14 |
comment |
Closing a secondary delphi form causes the main form to lose focus Most important, the nil in the parameter sets the parent, so there is no parent, so it isn't a child form... |
|
Dec 10 |
comment |
How to check if application runs from \program files\ @Vegar: The key to giving a choice is to have a sensible default. I read the location from the registry, but default to the My Documents location. The user can then have files here if they don't care, or they can be changed in the UI if someone wants to. |
|
Dec 7 |
accepted | Delphi “EClassNotFound” errors, and corrupted DFM possibility (UPDATED) |
|
Dec 4 |
comment |
InstallAware problem with Delphi 2010 Ken, some people don't know you can turn off packages. But my underlying answer is that you should use a better (full) installer of some kind. |
|
Dec 3 |
awarded | ● Nice Answer |
|
Dec 3 |
accepted | Running down a ‘stack overflow’ bug |
|
Dec 3 |
answered | Running down a ‘stack overflow’ bug |
|
Dec 3 |
answered | InstallAware problem with Delphi 2010 |
|
Dec 3 |
revised |
How do i compile my delphi project on the command line? Added link |
|
Dec 1 |
comment |
Delphi 6 stack trace So just use the part that you want! I do similar, but madExcept has hooks that allow you to get the stack as a string, and then you can do what you want. In my app I handle everything else. madExcept is well worth all the extras that come in handy sometime. |
|
Dec 1 |
accepted | How can I test my applications against the popular virus scanners? |
|
Nov 27 |
comment |
Is it better to use TThread’s “Synchronize” or use Window Messages for IPC between main and child thread? "Create thread-safe data structures" - this is what I do. The threads store their info there, and the UI retrieves it in a timer or similar. This stops any thread being held up by the UI. |
|
Nov 17 |
answered | What are the ways of interchanging string data between clients and a server in Delphi? |
|
Nov 12 |
comment |
How to determine Delphi Application Version If resources are anything like they were in my API days, they aren't already in memory, but are fetched from the file. Also, it would be unusual to be doing a swap underneath the app, so I don't think it worth worrying about for most people. |
|
Nov 10 |
comment |
Printing on citrix server I can't help directly, but when I had a big customer with Citrix, Citrix sent me a set of install CDs for testing against. I think it was a 60 day trial or something, but it allowed me to trial it properly. |
|
Nov 9 |
awarded | ● Enlightened |
|
Nov 9 |
awarded | ● Nice Answer |
|
Nov 9 |
accepted | How to monitor or visualize memory fragmentation of a delphi application |
|
Nov 9 |
answered | How to monitor or visualize memory fragmentation of a delphi application |
|
Nov 9 |
answered | Override default Show behaviour / SetVisible of TForm’s descendant (Delphi VCL) |
|
Nov 6 |
answered | How can I test my applications against the popular virus scanners? |
|
Nov 6 |
comment |
How can I test my applications against the popular virus scanners? Thanks, but that appears to be a single vendor test? I need to check against all the main AV products. |
|
Nov 6 |
comment |
How can I test my applications against the popular virus scanners? The first has a 15Mb limit, and the second a 20Mb limit. The second is what I meant in my text, but I got the name the wrong way round (now corrected). If I could pay to upload loads of files over time and have an email when any one triggers, that would be perfect! Doing one at a time is not too hot as the false trigger may happen after I check. |
|
Nov 6 |
revised |
How can I test my applications against the popular virus scanners? Fixed VirusTotal link |
|
Nov 6 |
asked | How can I test my applications against the popular virus scanners? |
|
Nov 6 |
comment |
Registry access in non-admin mode I agree - hence me not favouring it. But if this is an internal app used by three people, then it may be acceptable. And it would affect only that application. It certainly isn't something to do for a new application, or any mass-distributed app. For them, do it properly. |
|
Nov 5 |
answered | Registry access in non-admin mode |
|
Oct 30 |
comment |
Masking an image with another image "lot of hassle" - welcome to programming! |
|
Oct 26 |
comment |
Cross-platform development - Delphi 2011: How to made a Windows-tied library cross-platform? As I said, I use additional components too - I don't want my apps to suck. But that's probably where you are with vanilla Delphi apps. (Though the more recent Delphi's have made big improvements.) |
|
Oct 23 |
comment |
Why was TDataSource created originally? In the early versions, it was almost impossible to attach components to different databases. You needed to have a version of each component for the different database you wanted to use, and that meant that a new database had a hard time coming in. By separating the link from the source, you can switch easily. The database can also be a run-time only programmed source too. |
|
Oct 22 |
comment |
Save Printer Setup Parameters I think you can do this. Comment with code from my app that does it posted. |
|
Oct 22 |
answered | Save Printer Setup Parameters |
|
Oct 19 |
revised |
Delphi: Access violation after calling function from external DLL (C++) Removed mized language response |
|
Oct 19 |
comment |
Delphi: Access violation after calling function from external DLL (C++) Hmm, yes, you are right. I read that this was trying to get the Delphi side of things working. Will edit. |
|
Oct 19 |
answered | Delphi: Access violation after calling function from external DLL (C++) |
|
Oct 16 |
comment |
How can I work with Chinese characters from a database? James, use the Add comment facility to respond to questions, or edit your original to add more info. Don't answer with a new answer as it is answering your own question. |
|
Oct 9 |
answered | Does it make more sense to upgrade to Delphi 2009/2010 or to buy Software Assurance? |
|
Oct 7 |
accepted | Delphi: How do I stop TAction shortcut keys autorepeating? |
|
Sep 23 |
comment |
cant delete a folder using deletefile command I suspect that the DeleteFile you saw was a custom version which did what this code does. You can do the same - just make sure that your unit is last in the Uses clause. |
|
Sep 23 |
comment |
cant delete a folder using deletefile command I've added code that will delete contents first. You could merge them into one easily. |
|
Sep 23 |
revised |
cant delete a folder using deletefile command Added code to empty directory |
|
Sep 23 |
answered | cant delete a folder using deletefile command |
|
Sep 23 |
answered | Delphi, frames vs forms. What for multi-document interface? |
|
Sep 22 |
answered | Need to open and write a DBASE4 table. Which Delphi route please? |
|
Sep 18 |
comment |
postthreadmessage and peekmessage problem in delphi 2006 Use the "add comment" to reply to a suggestion. Do not use the answer option unless you find the actual answer. |
