We have a legacy (delphi 7 pro) application that lists the fonts available from a printer (the industry we serve still use dot matrix printers extensively... not my choice). Works great on XP/2003.
When we run this app on Windows 7, the list no longer includes the device fonts (Roman CPI fonts...
I'm curious as to how some of you folks would handle the following challenge:
I need to create a Body Chart for a medical application. I want the user to be able to click on an image of a body where an injury occurred and have an "X" appear where the user clicked.
I need to record this in a...
Good to know Leslie! Thanks for the input. As soon as I have time I plan on testing my original code in Delphi 7. I have a feeling it will work in version 7.
Also, I ended up using ControlCount. ComponentCount did nothing for me (I'm using Delphi 4)
Kemp.. I hate it when I can figure out "how" but don't understand "why". I'll have to test this in Delphi 7 too. I'm curious if it was just a Delphi 4 bug.
I got it...
I changed my looping structure... instead of:
for x := 0 to (panel1.componentcount -1) do begin
I used:
for x := (panel1.ComponentCount -1) downto 0 do begin
Works great!
I'm actually a little embarrased I have to ask this question. Seems simple enought to accomplish, but I seem to be having a brain fart. I've even searched tek-tips and can't find a solution...
I dynamically create 10 labels on a panel at runtime. At some point I need to remove (free) those...
It's not "my" webform. It's a thirdparty website.
The part that I don't understand (have never done) is paste information from a TQuery into a webform fields....
That is the suggestions I'm looking for.. the exact "how" of pasting into a webform field.
Thanks!
I have an application that I would like to add some additional functionality to for my users. Currenty they have to login to a website and submit information that is already tracked in my application. The website developers will not allow me any conduit to submit them data from my application...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.