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 Chriss 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. DelphiAaron

    has anyone seen a component that can do this

    im looking for a component or tool to organise non visual controls at design time. maybe a panel or tab control that can hold and organise your non visual controls out of the way. Aaron
  2. DelphiAaron

    setting tab order

    i know about the tab order dialog. but i recall many delphi's ago there was a way to do it by some magic keystroke then clicking the components in the order you want. does anyone know the magic keystroke. Aaron
  3. DelphiAaron

    dpm 2007 delete previously protected data

    i stoped a protection group and selected to keep the data. i now wish to delete the data but cant find how. does anyone have any tips, thanx Aaron
  4. DelphiAaron

    migrate cisco vpn client to pix

    we were given the cisco vpn client to vpn into our mother companys office, can the settings from the client be entered into the pix. my aim is to allow multiple computers on our network to be able to vpn, at the moment we have to install the client on each machine we want to give access. Aaron
  5. DelphiAaron

    scroll a dbgrid

    is there a way to scroll a dbgrid without moving the selected record. Aaron
  6. DelphiAaron

    want to delete all files and folders from a temp folder.

    doen anyone have a snippet of code to delete all files and folders from a temp folder, including folders that have files in them. thanx Aaron
  7. DelphiAaron

    xp group policy problem hiding drive c:

    i have set the group policy to hide drive c:. it hides drive c from the files list when you click my computer in explorer but it still shows drive c in the bottom of the folders tree, after a: and d:. ive performed this on heaps of Dell Optiplex 745 computers and it works fine. this is now an...
  8. DelphiAaron

    find the date of the upcomming tesday

    does anyone know a eay to get thew date on the next tuesday. if today is tuesday then return todays date but if today is any other day return its date. thanx Aaron
  9. DelphiAaron

    show a modal form and process messages.

    is it possible to show a modal form but still allow the locked form underneath to process messages ?. Aaron
  10. DelphiAaron

    how do you free a function result?

    i have this function that takes a jpg and returns a bmp but the result bitmap is not freed unless theres an exception, and of course you cant free it here otherwise the result is not returned. ?? function MakeBmp(Source : TGraphic): TBitmap; begin Result := TBitmap.create; Try with Result...
  11. DelphiAaron

    storing an image in a TObject

    the EasyListView component avaliable here http://www.mustangpeak.net has a property 'item.data' of type TObject your meant to be able to use this for storage within the item. i wish to store the items image in there, but i cant get it to work, and cant make heads or tails of the help the author...
  12. DelphiAaron

    component required, can someone make this ?

    wanted a smart cookie that can make a TMemo and TDBMemo that can link to a seperate TScrollbox Aaron Taylor John Mutch Electronics www.jme.com.au
  13. DelphiAaron

    create another component at runtime

    i know how to create panels at runtime and set its properties. but if i place a panel on the form and set its properties at design time. how do i create more of that same panel at runtime ? Aaron Taylor John Mutch Electronics www.jme.com.au
  14. DelphiAaron

    dbgrid select records by code

    can you select multiple records on a dbgrid by code not by clicking the grid ? Aaron Taylor John Mutch Electronics www.jme.com.au
  15. DelphiAaron

    free components at runtime

    something so simple i cant do. how do i free all components created at runtime ? this gives a list index out of bounds error if theres more than 1 control. var i:integer; begin for i:= 0 to ScrollBox1.ControlCount -1 do ScrollBox1.Controls[i].free; end; Aaron Taylor John Mutch...
  16. DelphiAaron

    autowrap controls @ runtime

    does anyone have a code snippet or tip on how to autowrap controls runtime. i with to display thumbnails made up of a series of panels or speedbuttons and have them wrap to the next line when the window is resized. Aaron Taylor John Mutch Electronics www.jme.com.au
  17. DelphiAaron

    database thumbnail viewer (advise please)

    i wish to display thumbnails from images stored in blobs in a database. i can get the images and put them into an imagelist. i can create the items in a listview. my only snag is the timagelist will only store 670 images. does anyone have a solution to this or an alternative .. Thanx Aaron...
  18. DelphiAaron

    change a propery of all or some items in an array at once

    i have an array of buttons i wish to change many or all of the buttons visible property at once. i can do a loop and change them 1 at a time but wish to do it all at once if possible. thanx Aaron Taylor John Mutch Electronics www.jme.com.au
  19. DelphiAaron

    detect shift/enter TLabel

    i have made a label that attaches itself to an edit box and changes color with the edit box focus. the label monitors the editboxes messages and can respond to them. i want to detect enter and shift/enter to move focus from the editbox. i can detect enter with something like if msg.msg =...
  20. DelphiAaron

    dbgrid row color solution

    i found code to color odd and even rows of a dbgrid, but the code relies on the dataset record number to get its odd and even. the problem is that if you set a filter on the dataset to show only odd or even records then the grid wont apply the different colors to the rows. anyone know a way...

Part and Inventory Search

Back
Top