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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. GoldenEye4ever

    Web server requirements

    Thanks a lot fugtruck. I was thinking of going with Dell, now I'm feeling even better about it. I'm glad to hear that the RAID array is basically managed for you, as I don't want a lot of headaches once we implement.
  2. GoldenEye4ever

    Web server requirements

    Thanks a lot for your very fast response. You gave me some good points to think about. The way I wrote my DB accessors is that I created a common connection class that is used by all code in my application when connecting to the DB, so migrating the DB later would be really easy. I have very...
  3. GoldenEye4ever

    Web server requirements

    A friend an myself are developing a software solution in the form of a web application (JSP) and using PostgreSQL as the database solution. I don't have a lot of experience with server hardware and don't have a great understanding of what hardware required for specific load expectations. We...
  4. GoldenEye4ever

    Trigger to archive deleted rows

    Thank you so much, it works now.
  5. GoldenEye4ever

    Trigger to archive deleted rows

    Hi, I'm new to PostgreSQL. I've been programming in PL/SQL for quite some time now and would really appreciate some help on this. I have 2 tables: - test - test_history Whenever a row is updated or deleted from the test table, I need to insert its OLD value (the value prior to making the...
  6. GoldenEye4ever

    TCoolTrayIcon - Help

    I couldn't wait. I installed Turbo Delphi on an old PC at my parents house, and roo0047's solution worked. Trayicon := TCoolTrayIcon.create(self); with trayicon do begin IconList := ImageList; CycleInterval := 100; CycleIcons := true...
  7. GoldenEye4ever

    TCoolTrayIcon - Help

    Thanks roo0047, I think I'll try JvTrayIcon, if your suggestion doesn't work. I just found this component via Google, "Delphi minimize TrayIcon". Since I'm using Turbo Delphi, I cannot install any 3rd party visual components, thus I just include the .pas files in my applications directory, add...
  8. GoldenEye4ever

    TCoolTrayIcon - Help

    Yes, Turbo Delphi comes with a TTrayIcon. However, it does not have some of the features that I want :( - minimize entire application to TrayIcon - ...that's pretty much it I tried doing this manually using TTrayIcon, but I wasn't able to get it working perfectly (WinXP, Vista, Win7) Depending...
  9. GoldenEye4ever

    TCoolTrayIcon - Help

    That's what I thought, but it doesn't seem to work :( I wish you could install 3rd party visual components in Turbo Delphi, is there any way? At any rate, this isn't a make-or-break feature for me, but I'd still like to get it working :)
  10. GoldenEye4ever

    TCoolTrayIcon - Help

    I just found: TCoolTrayIcon. I like quite-a-few of it's features; hide app from taskbar when minimized, etc... However, I can't seem to get the icon animation to work. I have a series of *.ico files that I'd like it to rotate through. Since I'm using Turbo Delphi, I cannot install the visual...
  11. GoldenEye4ever

    ShowMessage issues (chaning window focus)

    Thanks a lot for your efforts, I appreciate the help. I really don't wanna re-write everything in Delphi 2007 from scratch as my app is roughly 12,000 - 16,000 lines of code now :( I sorta lost count :S Well, I'm away from my PC for the weekend. I guess when I get home on Monday, I'll try...
  12. GoldenEye4ever

    ShowMessage issues (chaning window focus)

    I'm not saying that this makes any sense :( I've used ShowMessage(...) and MessageDlg(...) before many times with no issues. But this time it's acting strange. I initially developed the app in XP using Turbo Delphi (Delphi 2006), then moved it to my VISTA install using Delphi 2007. It only...
  13. GoldenEye4ever

    ShowMessage issues (chaning window focus)

    I'll try "Form2.Focus();" when I get home tonight. I'm calling all the forms with "FormName.ShowModal();". Also, I've noticed that this issue is not occurring in VISTA, sorry about that, it only happends in XP :(
  14. GoldenEye4ever

    ShowMessage issues (chaning window focus)

    I'v written a "Windows VLC Forms" app consisting of roughly 10 separate Windows Forms. I'm having a strange issue with using both the: "ShowMessage(...)" and "MessageDlg(...)" functions. If I call either function from any Form, other than Form1 (the initial form in the VLC application), Form1...
  15. GoldenEye4ever

    OpenGL in Delphi (texture mapping)???

    Hi, I'm trying to develop a delphi app using OpenGL. I've created my scene, but cannot apply an image to the 2D polygons that exist in the scene. I can apply colors to them, but that's not what I want as a final result. Sample Code: ... glBegin(GL_POLYGON); // back - back label...
  16. GoldenEye4ever

    ShowMessage not working via TThread Class

    Hi, I've developed an app which uses 2 custom TThread classes to perform common tasks (Search, Load). If I call "ShowMessage(...);", from within the TThread class, the message dialog is usually drawn way too large. It either expands off the screen horizontally, vertically or both horizontally...
  17. GoldenEye4ever

    How to send HTML formatted Emails using Outlook XP

    Thanks a lot JockMullin. You have been a great help, GoldenEye4ever
  18. GoldenEye4ever

    How to send HTML formatted Emails using Outlook XP

    Sorry, I forgot to ask. If I want to add images into my html formatted email, do I need to be hosting them on a server and use absolute addressing? Or is there a way to add the images as attachments and reference them that way? Thanks a lot, GoldenEye4ever
  19. GoldenEye4ever

    How to send HTML formatted Emails using Outlook XP

    OMG!!! Thank you so much. I can't believe I didn't see that You rule!!! GoldenEye4ever
  20. GoldenEye4ever

    How to send HTML formatted Emails using Outlook XP

    Hi, I am using Office XP and I would like to send out HTML emails. I cannot get Outlook to acknowledge the html formatting. It keeps escaping my <, > symbols as &lt; &gt;. Please help. I would Idealy be able to make a HTML page in notepad and then just put in in Outlook and email it out...

Part and Inventory Search

Back
Top