Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by muntz70

  1. muntz70

    Windows 7 and device fonts

    Forgot to mention that the application uses the normal TFontDialog. But the dialog will not show the device fonts.
  2. muntz70

    Windows 7 and device fonts

    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...
  3. muntz70

    Body Chart

    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...
  4. muntz70

    How to free dynamically created components at runtime?

    That's more good information Steve. Thanks!
  5. muntz70

    How to free dynamically created components at runtime?

    ToTheMetal!!!!! You win the prize. I had not thought of that (obviously). Now it all makes sense! Thanks... and a star to you sir!
  6. muntz70

    How to free dynamically created components at runtime?

    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.
  7. muntz70

    How to free dynamically created components at runtime?

    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.
  8. muntz70

    How to free dynamically created components at runtime?

    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!
  9. muntz70

    How to free dynamically created components at runtime?

    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...
  10. muntz70

    Populate Webform from Delphi Application

    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!
  11. muntz70

    Every form has it's own icon in the taskbar

    Good read here too... http://delphi.about.com/od/formsdialogs/l/aa073101b.htm
  12. muntz70

    Populate Webform from Delphi Application

    Forgot to mention... Delphi 7 pro SQL server by way of BDE(TQuery)
  13. muntz70

    Populate Webform from Delphi Application

    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...
  14. muntz70

    Using WebBrowser and PageProducer?

    How did you finally implement this?
  15. muntz70

    Export MS Access query results to .txt file

    Worked like a charm! Funny thing is... I did it that way once before. I must have missed *something*. Thanks!

Part and Inventory Search

Back
Top