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 wOOdy-Soft 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 rtb1

  1. rtb1

    Types and classes

    Hi, I am new to c# and not sure how to do the following. I have to namespaces. Namespace2 is compiled at runtime and always has a different name. The properties and methods are however known. From namespace1 I want to be able to access instances of a class in namespace2. To get a reference...
  2. rtb1

    ShellTreeView disk drive noise

    Hi, I would like to use a ShellTreeView. The problems is that when you click 'My Computer' in the shell TreeView the a: drive is activated. This is rather annoying. Is there a trick to stop this or disable the a: drive in the treeview (since it is not used anyway)? Thanks, Raoul
  3. rtb1

    Toolbar Glyph positioning

    By default the Glyph is positioned on top of the Caption in a toolbar. How can you position the glyph on the left? There seem to be no property that let's you do this. Thanks, Raoul
  4. rtb1

    With XPManifest I can't set colors for Panels

    I had the same problem. I found that it had to do with windows XP using themes. In ms case all panels were painted black. I solved it by putting the ParentColor and ParentBackground properties of all panels to false and defining the color property of all panels in the forms OnCreate Method...
  5. rtb1

    Accessing tabsheet child object properties

    Thanks, it is working now!
  6. rtb1

    Accessing tabsheet child object properties

    Thanks Stretchwickster! For the Name property this works fine. But how to access the properties of for example a TMemo that are not associated with Controls (like WordWrap)? Raoul
  7. rtb1

    Accessing tabsheet child object properties

    Hi, I have tabsheets created in run-time and TMemo's as the child object. On top of the PageControl I have a TEdit. The idea is that the TEdit shows the name of the TMemo that is on the active tabsheet. How can you access the name property of the specific TMemo on the active TabSheet...
  8. rtb1

    renaming tabsheet caption after destroy

    Thanks to all, Using free now instead of destroy and: for i := 0 to (PageControl1.PageCount - 1) do PageControl1.pages[i].Caption := 'Page '+IntToStr(i);
  9. rtb1

    renaming tabsheet caption after destroy

    Hi, I have a PageControl with dynamically added tabsheets. The caption looks like: Page 1, Page 2, Page 3, etc. It is also possible to destroy a tabsheet.This is simply done with: PageControl1.ActivePage.Destroy; The problem now is that the captions need to be renamed so you still see: Page...
  10. rtb1

    TDownloadUrl - Temporary Internet Files

    With IdHttp this is ok
  11. rtb1

    TDownloadUrl - Temporary Internet Files

    Hi, I am using the TDownloadUrl component to load files from the Internet. It turns out that the files are not only saved to the specified location but also to the Temporary Internet Files folder. Does anyone know if this can be avoided? Thanks, Raoul
  12. rtb1

    TMediaPlayer

    Thanks Buho and Lance, Don't understand what went wrong yesterday. I didn't change anything, but the problem of yesterday is gone. It seems that setting the TMediaPlayer's Wait property to false doesn't work, program is still hanging during download. Raoul
  13. rtb1

    TMediaPlayer

    Thanks Lance, I was about to try that but... Actually, now I can't load a file from the Internet at all: "MMSYSTEM264: There is not enough memory available for this task. Quit one or more programs then try again" No problems when loading a file locally. I wonder what is going wrong now...
  14. rtb1

    TMediaPlayer

    Hi, I am trying to load a file from the Internet into a TMediaplayer on the main form. The problem is that the program hangs till downloading is finished. How can you put this process (closing a TMediaPlayer, changing the filename, opening the TMediaplayer and loading the file) into a thread to...
  15. rtb1

    TADOQuery JET SQL (mdb file) problems

    Nice Leslie, And how do you get the values of tblBondTypes.BondTypeDesc when going through the results!? :) Raoul

Part and Inventory Search

Back
Top