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

  1. Bogdan81

    Make my app "alwais on top" !

    Thx Ronin. I manage to keep my app on top in this way : in the OnCreate event i use SetWindowPos(Form1.Handle, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE OR SWP_NOACTIVATE OR SWP_NOSIZE); and in the OnPaint event SetZOrder(True); and i want to say that it works perfectly. What do you think ?
  2. Bogdan81

    Make my app "alwais on top" !

    I'm creating an app that needs to be always on top, so the user can see some hints. How could I make my app "always on top" ?
  3. Bogdan81

    Could I insert a header into a Word Document in Delphi ?

    Robertio but i found that using OLE is slower than using DDE, so I will use this code : WordDocument1: TWordDocument; WordApplication1: TWordApplication; var NewTemplate, Visible, ItemIndex : OleVariant; begin try WordApplication1.Connect; except MessageDlg('Bla bla bla'...
  4. Bogdan81

    Could I insert a header into a Word Document in Delphi ?

    Ok Robertio, this is how i do it : var WordApplication, WordDocument: Variant; AddToRecent:Boolean; begin WordApplication := CreateOleObject('Word.Application'); WordDocument := WordApplication.Documents.Add; WordApplication.Selection.TypeText('Hello world'); AddToRecent := False...
  5. Bogdan81

    Could I create a Word Document in Delphi ?

    Thx ! I understand, but I observed that using OLE is slower than using type library. Why ?
  6. Bogdan81

    Could I insert a header into a Word Document in Delphi ?

    I understand how to create a new Word Document, how to write in it, but i don't know how to insert a header in the document ?
  7. Bogdan81

    Could I create a Word Document in Delphi ?

    I wanna create a Word Document in delphi. How could I do this ?
  8. Bogdan81

    How can I put a control in a cell of a grid

    The problem occurs at last cell. If the cell isn't displayed fully and you press and hold the mouse button on the arrow of the combobox the cells are scrolled until the last one is displyed and a combobox appears after last cell. Don't know why ?
  9. Bogdan81

    How can I put a control in a cell of a grid

    Thx Svanel ! Good code, but there is a small problem. If you are intrested please tell me !
  10. Bogdan81

    How can I put a control in a cell of a grid

    I wanna put a combobox inside a cell of a TStringgrid and I don't now how ! Can you help me ?

Part and Inventory Search

Back
Top