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

  • Users: HitokiriBattousai
  • Order by date
  1. HitokiriBattousai

    Help... how to use CaseInsensitive with setkey

    I think this code could help you in your problem... Function StrToUpper(str1 : string) : string; var ctr : integer; ResultStr : string; begin ResultStr := ''; for ctr := 1 to length(str1) do begin ResultStr := ResultStr + Upcase(str1[ctr]); end; Result :=...
  2. HitokiriBattousai

    storing .jpeg in database

    you can store the path and the filename of your bitmaps to a string and saved it it your table... its more convenient since the filesize of your wud be smaller.
  3. HitokiriBattousai

    writing a licensed app. for home PCs

    well u can write a small textfile with the Hardisk serialno on it and u have to encrypt it to be more secure. so when ur program starts it automatically finds the file then decrypt it and check the serialno on it... if someone copies ur exefile, the system would be useless!!! if he knows the...
  4. HitokiriBattousai

    How to copy a Tquery's dataset?

    just drop down a tbatchmove object ten just configure te following properties set the mode to append the source and the destination. on your onclick event(or oter event) just do this... batchmove1.execute dats ol.....
  5. HitokiriBattousai

    Application Running Detection ...

    thanks guys it elps me a lot
  6. HitokiriBattousai

    How to change the shade of a color?

    thanks it helps me a lot !!!
  7. HitokiriBattousai

    Showing Version Info Number in About Box

    thanks it also elp me a lot...
  8. HitokiriBattousai

    What code do i need to open another form from the original

    remove your about box form from the autocreate list but be sure that u have added the unit of your aboutbox and then do this.... procedure TForm1.Button1Click(Sender: TObject); begin form2 := TForm2.create(self); form2.showmodal; form2.free; end;
  9. HitokiriBattousai

    How Convert old DBFs into Interbase

    i agree with SVANELS... interbase has a reserved words so be sure that the fieldnames of your olddatas would not be on interbase reserved words list or else you'll end up like me!!!
  10. HitokiriBattousai

    How can i know how many day passed betwen 2 dates

    var currentdate, pastdate : Tdate; result : variant; begin result := strtodate(currentdate) - strtodate(pastdate); formatDateTime('d', result); end;
  11. HitokiriBattousai

    SQL + SAVE

    hi, pls try this code.... with query1 do begin close; sql.clear; sql.add('insert into bidata'); sql.add('values :id, :address'); params[0].asstring := id.text; params[1].asstring := address.text; execSql; end; ... you can also use parameter by name instead...
  12. HitokiriBattousai

    How do I bypass Interbase password ?

    hi, the diffult username and password is username = SYSDBA Password = MasterKey if you badly need to access it try reinstalling interbase then use the above username and password. or else interbase cannot let you access... gud luck !!! Battousai
  13. HitokiriBattousai

    FieldValue and FieldByName problems

    hi, i think i have a solution for you my friend... pls try this code... assuming you declare MyOrderNo as Type REAL MyOrderNo := QueryName.Fieldbyname('OrderNo').asFloat; thats all !!! notify me wat happend... i'll be glad to find another solution
  14. HitokiriBattousai

    how to choose between Delphi and VB

    i've always been a pascal baby therefore Delphi is the Best!!! VB are for losers..... oppssss......
  15. HitokiriBattousai

    how can I put the records in table

    var t: textfile; l: string; begin AssignFile(T, 'd:\log.txt'); Reset(T); while not eof(t) do begin readln(t,l); table1.appendrecord([l]); end; closefile(t); end;

Part and Inventory Search

Back
Top