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 Chris Miller 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. dredfern

    TKeyboardState under Windows XP

    Giovanni, Thank you, you're piece of code did the trick. Dave
  2. dredfern

    TKeyboardState under Windows XP

    Sorry the previous message should have read:- The following code to turn on the NumKey works under previous Windows versions but not under Windows XP. Any suggestions? procedure TfrmMain.FormCreate(Sender: TObject); var numkey: TKeyboardState; begin //set Num Lock on...
  3. dredfern

    How do I put bitmap icons on a StatusBar?

    Andrew, Thanks, that did the trick.
  4. dredfern

    How do I put bitmap icons on a StatusBar?

    I want to put a couple of bitmap icons on a status bar to show when certain options have been selected by the user. Any ideas?
  5. dredfern

    Press a Button by code

    You could try using the following WindowMessage routines:- speedbutton1.Perform(WM_LBUTTONDOWN, 0, 0); speedbutton1.Perform(WM_LBUTTONUP, 0, 0); which will perform a virtual keypress.
  6. dredfern

    Changing the font colour in a cell in a StringGrid

    Thanks for that, I did a search using 'StringGrid' but it didn't come with that thread.
  7. dredfern

    Changing the font colour in a cell in a StringGrid

    How do I change the font colour in an individual cell in a StringGrid? Any ideas anyone?
  8. dredfern

    Printing right aligned columns

    Forget that request. Have just found: SetTextAlign(printer.canvas.handle,TA_RIGHT);
  9. dredfern

    Printing right aligned columns

    I am working on a program that has an option to print a hard copy of lists of currency. The columns are printed left aligned but I need them printed right aligned. Any ideas would be welcome.
  10. dredfern

    Printing multiple ListBoxes

    Thanks, Vintage Wine & Buho for your trouble between you you've solved my problem. Thanks again - Dave
  11. dredfern

    Printing multiple ListBoxes

    Part of a program I'm developing works out the tax from an amount input by the user. The results are then placed in 3 ListBoxes, Amount, Tax and Amount+Tax. I would like to print out the results of these ListBoxes on one page in 3 adjacent columns, preferably with their corresponding 3 headings...
  12. dredfern

    ListBox Print

    Is it possible to print out the contents of a ListBox
  13. dredfern

    ListBox Totals

    Eric, Thanks a lot for that. I'll give it a try.
  14. dredfern

    ListBox Totals

    Is it possible to get the total of a list of numbers in a ListBox and then update the total as new numbers are added?

Part and Inventory Search

Back
Top