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 SkipVought 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

    HTML component recommendations

    http://sourceforge.net/projects/embeddedwb/ if the site is still down you can download here http://www.torry.net/vcl/internet/browsers/EmbeddedWBD5XE14.70.0.zip Aaron
  2. DelphiAaron

    Rollback for databases that don't support transactions

    have you seen this http://www.connx.com/products/powerflex.html and PFXPlus 5 http://www.pfxcorp.com/sql-info.htm Aaron
  3. DelphiAaron

    Can anyone help me find this .exe i used to have (it was a tutorial)

    delphibasics.co.uk have such a thing, http://www.delphibasics.co.uk/ Aaron
  4. DelphiAaron

    Hide a ttabednotebook tab

    i dont think you can. use a TPageControl and you can set the TTabSheet TabVisible property to false. Aaron
  5. DelphiAaron

    Delphi custom drawing - glowing glass

    this may help. http://rmklever.com/zipfiles/GlassButtonV2.zip Aaron
  6. DelphiAaron

    Delphi 2010 - how can I unembed my forms in IDE? & couple of Qs

    update 4 and 5 is the latest. Q 1. Tools/Options/VCL Designer, untick Embedded Designer. Q 2. View/New Edit Window Aaron
  7. DelphiAaron

    Dynamic grid fields in borland 7

    to add a field to a dbgrid at runtime DBGrid1.Columns.Add; DBGrid1.Columns[0].FieldName:='Id'; DBGrid1.Columns.Add; DBGrid1.Columns[1].FieldName:='Student Names'; DBGrid1.Columns.Add; DBGrid1.Columns[2].FieldName:='English'; DBGrid1.Columns.Add; DBGrid1.Columns[3].FieldName:='Math'; etc.. Aaron
  8. DelphiAaron

    TOpenDialog Select Folder?

    make sure you add ShlObj to your uses Aaron
  9. DelphiAaron

    TOpenDialog Select Folder?

    there’s a few ways all of which are easily found using Google. procedure TForm1.Button1Click(Sender: TObject); var TitleName : string; lpItemID : PItemIDList; BrowseInfo : TBrowseInfo; DisplayName : array[0..MAX_PATH] of char; TempPath : array[0..MAX_PATH] of char; begin...
  10. DelphiAaron

    Delphi math Code challenge

    sounds like a school project. Aaron
  11. DelphiAaron

    High performance code to compare two images

    found this on torry ...compare two images pixel by pixel? procedure TForm1.Button1Click(Sender: TObject); var b1, b2: TBitmap; c1, c2: PByte; x, y, i, different: Integer; // Counter for different pixels begin b1 := Image1.Picture.Bitmap; b2 := Image2.Picture.Bitmap...
  12. DelphiAaron

    How to show a control as a form?

    sptbx does it. in his popupmenu you can put lables, edits, combos etc.. http://www.silverpointdevelopment.com/sptbxlib/index.htm Aaron
  13. DelphiAaron

    TWebBrowser display URL on MouseOver?

    you may have better luck doing it with EmbeddedWebBrowser http://bsalsa.com/downloads.html it has an OnMouseMove event. Aaron
  14. DelphiAaron

    Fast Fourier Transform FFT

    there seems to be plenty on the web. http://www.lohninger.com/fourier.html http://www.programmersheaven.com/download/26393/download.aspx Aaron
  15. DelphiAaron

    Need help to add(sum) cells in dataset

    this is from memory, should be correct. Label1.Text := IntToStr(Table1.FieldByName('30d').AsInteger + Table1.FieldByName('60d').AsInteger + Table1.FieldByName('90d').AsInteger + Table1.FieldByName('120d').AsInteger); Aaron
  16. DelphiAaron

    Saving printer properties

    this is the best 1 i have found. http://bak-o-soft.dk/Delphi/PBPrinterSetupDialog.aspx Aaron
  17. DelphiAaron

    Door access control with delphi

    first question is how are you interfacing the door lock to the pc. usb, rs232 ??? it can be as simple as toggling the dtr line on the rs232 port to trigger a relay. Aaron
  18. DelphiAaron

    How do I find specific text in a TSringList?

    your processing the string list twice Here *** StringListContainsRuntime(StrList); And Here *** if StringListContainsRuntime(StrList)=false then begin remove the first one. why even have the function unless you intend to pass lots of string lists. [code] procedure...
  19. DelphiAaron

    How do I find specific text in a TSringList?

    dont know if you already knew this having the function that way isnt realy being a function it should be... function StringListContainsString(StrList:TStringList;SearchString:String):Boolean; begin Result := AnsiContainsText(StrList.Text, SearchString); end; procedure...
  20. DelphiAaron

    has anyone seen a component that can do this

    so does delphi. Aaron

Part and Inventory Search

Back
Top