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: Flisk
  • Order by date
  1. Flisk

    [delphi] listview+hint

    hello i have a small problem here on my program i have a listview, and when the text is too long to show, a hint will be displayed with the complete text when i hover the mouse on the text, it work only if i set the form to be fsNormal, if i set my form to be fsStayOnTop my hint with show just...
  2. Flisk

    [delphi] day of week issue

    hi there, it's me again :) i found this code on the net how to calculate the current day from a date i write in a maskedit. procedure TForm1.Button1Click(Sender: TObject); var MyDate: TDateTime; begin MyDate:=StrToDateTime(MaskEdit1.Text); case DayOfWeek(MyDate) of 1...
  3. Flisk

    [delphi] Drivecombobox I/O ERROR 21

    i didn't get this code to work, but i find another one when i googled on it, so thanks anyway :) this is the code i use to get it to work like i wanted -------------------------------------------------------- If you use drivecombobox component in your applications, probably you are in doubt...
  4. Flisk

    [delphi] Drivecombobox I/O ERROR 21

    hello, i'm using a drivecombobox (the win3.1 tab) in delphi, and it report a error message if i go to a: or cdrom that doesn't have a media in it. and display 'I/O ERROR 21'. does anyone know how to remove drives like a: cdrom from drivecombobox so you never can select those , or how to skip so...
  5. Flisk

    How to force a form to stay on desktop ?

    thanks, but you mis underestood my question it's 'always on top' and 'always on DESKTOP'
  6. Flisk

    How to force a form to stay on desktop ?

    I Have tried several solutions but it never do as i wanted to do. I have tried to implement this code in the mainform [COLOR=red] protected procedure CreateParams(var Params: TCreateParams); override; //... procedure TForm.CreateParams(var Params: TCreateParams); begin inherited...
  7. Flisk

    (delphi)how to stop a timer on countdown using a FOR-method ?

    Hello, i tried some FOR-methods . but i don’t get it to work. Just so i understand i have 2 listviews, one timer, and one button that enables the timer when the listview contains data. It works nice, it play sound when the both listview matched each other, and it delete the values that doesn’t...
  8. Flisk

    form always visible

    well i have tried your code and it hangs my program big time with some errors. i just have a question about this i wrote earlier this code should make so the program always shows on background, just for a test , how to call this arguments if i want to do that ? i am new with 'functions' this...
  9. Flisk

    form always visible

    this is what i have before i asked the question unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs; type TForm1 = class(TForm) private { Private declarations } protected procedure CreateParams(var Params...
  10. Flisk

    form always visible

    thanks for a fast reply, i'll check this out later :) /Flisk
  11. Flisk

    form always visible

    hello, i have wrote a simple program that shows some systeminfo on the screen, my form is transparent and does'nt shows on taskbar, and i want it to always stay on desktop, but if i click on 'show desktop' that minimize all active windows, it also minimize my program :/ is it any solution for do...

Part and Inventory Search

Back
Top