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 Mike Lewis 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: nyff2
  • Order by date
  1. nyff2

    Delphi Registry Functions

    look at http://delphi.about.com/gi/dynamic/offsite.htm?site=http://www.geocities.com/SiliconValley/Lakes/1636/registry.htm
  2. nyff2

    Closing any windows automatically

    Hi, papy33 As a Swiss Delph-beginner I hope I understood your question. But please mind OnClose-Events and its close action: << procedure TfFormX.FormClose(Sender: TObject; var Action: TCloseAction); begin Action := caFree;//caHide end; >> // Here you just find and close each Screen's...
  3. nyff2

    Rounding a value to 2dp in RAVE

    if you write &quot;RoundTo(14.345, -2)&quot; then the result will be 14.34, not 14.35 You might give a little offset to adjust the result: &quot;RoundTo(14.345 + 0.0000001, -2)&quot; Result -> 14.35 Does anyone else know how to manage that little detail? // Example-Prog procedure...
  4. nyff2

    Newby Component help!!!!! :(

    Sorry, I can't work it out in a reasonable time. What do you need this component for? Are there better/other components available? Please ask other more experienced programmers. Greetings Stefan
  5. nyff2

    Newby Component help!!!!! :(

    Hi, 1.)In some cases, the dpk-File(s) (Package-File) have to be opened in the Delphi-IDE. 2.)After that you have to copile the package file. 3.)Add the package. 4.)Close all Files open your project you want to work with 5.)Select the menu (in German: Komponente/Packages installieren)...
  6. nyff2

    Determining field in a record type

    procedure TfMain.Button1Click(Sender: TObject); var aChar: AnsiChar; begin aChar := AnsiUpperCase(edtFieldName.Text)[1];//First 'uppercase' of Text/String (*** Not necessariy anymore *** case aChar of 'A': data.vector['A'] := StrToInt(edtValue.Text); 'B': data.vector['A'] :=...

Part and Inventory Search

Back
Top