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 TouchToneTommy 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: *

  • Users: Fluke026
  • Content: Threads
  • Order by date
  1. Fluke026

    Listview Color by line

    Hello, This problem is probably very easy to solve, but the solution is eluding me. Is there any way to set the background or font color of each item in a listview individually? I have a ListView component on a form displaying data from instances of a class. The only problem is that I want...
  2. Fluke026

    Memory Leaks

    Hello, I have a program using D5 Pro that seems to have at least one memory leak. I just verified the existence of the leaks last night. I will begin extensive searching in the next few days (I am something of a hobby programmer, not a professional, so I code and test in the evenings). I was...
  3. Fluke026

    TUpDown min, max, and position

    I have a form where the min and max of a TUpDown change according to the options selected. A user could set the position and then change the options making his position setting out of the range. I have discovered that Delphi automatically moves the position to the new min or max but the...
  4. Fluke026

    Specified Module not found

    Does anyone know what this error message means? "Win32 error. Specified module not found." The error _sometimes_ pops up when I try to open the most complicated form in the application. The form does exist and has been auto created. When I tried to create the form on the fly, even...
  5. Fluke026

    WIN32 error with Raize Combobox

    Hello, I am using D5 Pro on 95. My program was running well until a few nights ago when it began to give me an error message when starting up. The message came up on three different runs with a slightly different message each time but at the same point in the execution. The first two nights...
  6. Fluke026

    Right to Left entry

    I am trying to write a small word processor where I can type with a Hebrew font (which flows right-to-left), copy to clipboard, and then paste it into a high level Word Processor. The clipboard portion is not a problem. How do I tell the program to display my characters this way? Thank you, Frank
  7. Fluke026

    Pen settings not displaying

    Hello, I have the following code: ImMap.Canvas.Pen.Style:= psDash; i:= LeftBounds + 10; while (i < RightBounds) do begin ImMap.Canvas.MoveTo(i, TopBounds); ImMap.Canvas.LineTo(i, BottomBounds); i:= i + 10; end; {while} The problem is that no matter what I set...
  8. Fluke026

    Okay. I am sure that once again I

    Okay. I am sure that once again I have a simple problem, but the solution escapes me. It seems like the simpler the problem, the harder it is to see the solution. I have a class [MoveMent = class(TPersistent)] that just spontaneously loses its settings between function calls. I call the...
  9. Fluke026

    Class structure

    Hi, I am almost sure this has a simple solution, but I can't seem to find it. I have a set of classes TArena and TPlayer with a dec something like this... PlayerArr = array[1..MaxPlayer] of TAIPlayer; TArena = class(TPersistent) private Players: PlayerArr; {other goodies} public...
  10. Fluke026

    Destructor problem

    Hello, I am working on a small game and have run into the following problem. Sometimes when I call .free on a certain derived class, I get an AV. Other times I do not. Here's the details. I have the following classes: TAI from (TPersistent) TPlayer from (TAI) TMonster from (TAI) TMaze from...
  11. Fluke026

    Quick Reports Master/Detail

    Hello, I am working on a program for my wife to store, organize, and print her recipes (D5 Professional with Paradox tables). The store and organize portion has gone great. Printing is hitting a small snag. The ingredients are assigned as detail records of each recipe while RecipeName and...

Part and Inventory Search

Back
Top