Rob Kennedy
|
Registered User
|
|
|
16h |
accepted | Perl puzzle: unexpected behavior w.r.t. m/$./m |
|
21h |
revised |
Setting up background images for forms in Delphi Jon Benedicto suggested loading directly into the image. |
|
21h |
comment |
Setting up background images for forms in Delphi Because I can't remember whether the Picture property is nil at first, and I can't remember whether TPicture knows how to load images by itself. Neither are problems, apparently. Thanks for the ideas. |
|
21h |
comment |
Setting up background images for forms in Delphi I would love some feedback explaining what wasn't useful about this answer. Were there factual errors that I can correct, or is it fundamentally an unworkable solution? |
|
21h |
comment |
Setting up background images for forms in Delphi No, Tiger, it's not a duplicate. Look at the other question and you'll see that the person asking it already had a background image and was really asking how to resolve some cosmetic issues, and that's what the answers to that question addressed. |
|
21h |
answered | Setting up background images for forms in Delphi |
|
21h |
comment |
Does Visual Studio 2008 have something like Delphi’s structure view? Does it also provide an outline for the layout of the form's controls, like the picture in the question? Can you change the declaration order of methods and fields by moving things around in the outline? |
|
23h |
comment |
Does Visual Studio 2008 have something like Delphi’s structure view? It's not a question of whether controls can have child controls. Does VS have a design-time view that shows the parent-child hierarchy? And if it does, can you use that to change the parent-child hierarchy like you can in Delphi? (In the image above, you can drag the items in the tree view to change controls' parents rather than moving them around in the Form Designer.) |
|
23h |
comment |
Does Visual Studio 2008 have something like Delphi’s structure view? DOK, it has nothing to do with organizing source files in folders. Notice how the structure pane on the left displays the parent-child relationships of the controls on the right: Two buttons in the group box, six controls in the panel. |
|
23h |
revised |
Does Visual Studio 2008 have something like Delphi’s structure view? punctuation, grammar, vocabulary |
|
23h |
comment |
Delphi + Transparent forms with parent. I have no idea what this is talking about. What question did you answer? |
|
1d |
comment |
Delphi + Transparent forms with parent. The penultimate paragraph does not parse as English. Please rephrase it. |
|
1d |
revised |
Perl puzzle: unexpected behavior w.r.t. m/$./m fixed html character entities |
|
1d |
answered | Perl puzzle: unexpected behavior w.r.t. m/$./m |
|
1d |
comment |
What is the reason for not allowing in C++ a default value for a variable to be a non-static method or member of a class ? Why isn't it available? It's going to be available a moment later in order to call the method anyway, right? |
|
1d |
revised |
Creating hidden processes (window not visible) fix code formatting and indentation |
|
2d |
accepted | Is an update to D2010 really meaningful |
|
2d |
comment |
How can I compile 64-bit Postgres bindings for Perl on Solaris? Setting POSTGRES_HOME=/usr/local/pgsql worked great. No need to remove 32-bit Postgres. Thanks. |
|
2d |
comment |
problem subclassing TTreeNode in delphi TTreeNode has no DestroyWnd method. That's a method of the TTreeView control that contains all the nodes. |
|
2d |
comment |
passing Temporary variables to reference arg in Cons works. but not for functions in general. Why? Yes, C++ does allow it. Obviously, since you just did. It's a declaration inside a function because it's a declaration everywhere else. Put that line inside a class declaration, and it's a member-function declaration. Put it outside anything else, and it's a function declaration. It's a function declaration no matter where you put it. |
|
2d |
answered | passing Temporary variables to reference arg in Cons works. but not for functions in general. Why? |
|
2d |
comment |
problem subclassing TTreeNode in delphi That class has no Tag property. Maybe you're thinking of the Data property instead. |
|
2d |
comment |
How can I easily bulk rename files with Perl? In what environment are those valid commands? |
|
2d |
asked | How can I compile 64-bit Postgres bindings for Perl on Solaris? |
|
Dec 2 |
answered | Is an update to D2010 really meaningful |
|
Dec 1 |
comment |
How to put a relative path for a DLL statically loaded? Note that passing Delphi objects as DLL parameters is generally a bad idea. Use packages instead. All the same advice regarding load-time dynamic linking will still apply. |
|
Dec 1 |
comment |
How to put a relative path for a DLL statically loaded? Gee, I figured the system directory is added to the path so you can run programs in that directory without needing the full path. Please see the linked documentation. I suppose it would be easy to test: Edit your path to remove that directory and see what breaks. |
|
Dec 1 |
answered | How to put a relative path for a DLL statically loaded? |
|
Dec 1 |
comment |
How to send a HTTP POST Request in Delphi using WinInet api. I found the source of your code for you so you can cite the original author. I changed the code to remove the ill-conceived Boolean case statements, and I changed the referrer so it doesn't lie and claim to be Firefox 3.0.10. |
|
Dec 1 |
revised |
How to send a HTTP POST Request in Delphi using WinInet api. cite original source. format code. remove Boolean case statements. use try-finally normally. don't lie in referrer. |
|
Dec 1 |
comment |
Encoding cp1252 Possibly related information is at stackoverflow.com/questions/1336930/… |
|
Dec 1 |
accepted | (Delphi) Call DLL with function pointer parameter |
|
Dec 1 |
comment |
Create Process doesn’t work Didn't the compiler warn you about the uninitialized si variable? Never ignore compiler warnings. |
|
Dec 1 |
comment |
Delphi, Copy string to Byte array That doesn't copy anything, and it makes a point to something that isn't what its type says it is. |
|
Dec 1 |
comment |
What does it mean by C++ runtime? Are you asking us or telling us, Benny? |
|
Dec 1 |
answered | How to send a HTTP POST Request in Delphi using WinInet api. |
|
Dec 1 |
comment |
Is there any tools/utility to convert “string” to “AnsiString” in pascal source files? Then the first thing you should try is to not change anything at all. Test your program with the new compiler. Find out what actual problems you have. |
|
Dec 1 |
accepted | Is there any tools/utility to convert “string” to “AnsiString” in pascal source files? |
|
Nov 30 |
revised |
C++ static virtual members? format code; main always returns int |
|
Nov 30 |
answered | (Delphi) Call DLL with function pointer parameter |
|
Nov 30 |
answered | Is there any tools/utility to convert “string” to “AnsiString” in pascal source files? |
|
Nov 30 |
comment |
ShLwApi.StrFormatByteSize and Delphi 2010 Unicode The call to FillChar isn't very useful anyway. Avoid the risk of calling it incorrectly (as Bill did) by not calling it at all. |
|
Nov 30 |
revised |
ShLwApi.StrFormatByteSize and Delphi 2010 Unicode list formatting; fix buffer-size param; spelling; buffer shortening; deleted 41 characters in body |
|
Nov 30 |
comment |
ShLwApi.StrFormatByteSize and Delphi 2010 Unicode Fix it? What makes you think there's something wrong with it? Did you do anything to attempt to debug it? Do you understand how it's supposed to work? Have you read the documentation for the functions you're calling? What Web site did you copy this code from, anyway? |
|
Nov 28 |
comment |
which is the correct text comparison method for an international application…AnsiCompareText or CompareText? The Ansi functions are Unicode as of Delphi 2009. (Didn't the readme mention that?) Compatibility of function names was deemed more important than strictly logical function names. Also see the new AnsiStrings unit, which has the old MBCS functions. |
|
Nov 27 |
comment |
How to use std::transform with templates And the reason it works is that bind1st doesn't accept ordinary function pointers. It requires functor objects. The mem_fun and ptr_fun functions turn function pointers into functors suitable for use with the binders. |
|
Nov 25 |
comment |
Delphi call a DLL The parameters should be passed by value or by reference according to how they're declared in the C++, C#, and Delphi declarations shown above. You don't get much leeway there. If you have documentation for this function, then I urge you to post a new question about how to call the function; include a link to the documentation, or at least tell everyone what product this function belongs to. "API.dll" isn't helpful at all. |
|
Nov 25 |
comment |
Delphi call a DLL Are you the one who asked the question? Please remember to log in with the same credentials you used before. Regardless, how is anyone supposed to demonstrate how to call this function? We have no idea where it's from or what it's supposed to do. If you know, then go check the documentation. |
|
Nov 25 |
comment |
Delphi call a DLL Mason, char** also means "a simple char buffer to be allocated by the called function and returned to the caller." The C# declaration is especially telling in that regard. |
|
Nov 25 |
comment |
Delphi call a DLL If it holds an image, then Byte is almost certainly a better choice, as reflected by the C# declaration. The C++ code should have used unsigned char. |
