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. binbyte

    help, how to install kylix?

    Thanks. I installed kylix in my fedora but it'had too problems. I tried with debian but now I'm going to try to install lazarus.
  2. binbyte

    help, how to install kylix?

    I want to install kylix 3, I use fedora core 4 since two weeks. I tried to extract kylix from tar file from a command line but I got an error, then I uncompressed to a folder and tried to install from there, it seemed be all ok but I can't find kylix anywhere. sorry for my bad english, it's not...
  3. binbyte

    CopyFile?

    Help friends I am writing a delphi program from visual basic and have a problem with visual basic filecopy: CMDialog.Filename <> "" Then FileCopy "outfile.txt", CMDialog.Filename where CMdialog is from commondialog it`s posible use CopyFile and how?
  4. binbyte

    delete rows and cols of a matrix

    I want to delete rows and columns of a matrix where the sum is 0 or where all elements are 0. I, in visual basic, can make it using empty but in delphi, is there any equivalent statement? thanks
  5. binbyte

    error when translating from visual basic to delphi

    to whosrdaddy: I think it's a infinite loop. can i use the following? i := 1; repeat if Vect1[i] = Vect1[i + 1] then Begin For j := 1 to n do Begin Inc(a[i + 1 , j], a[i , j]); a[i , j] := 0; end; end; Inc(i); Until (i>= n); to...
  6. binbyte

    error when translating from visual basic to delphi

    Vect1 and a definition are the following: UNIT Util; INTERFACE TYPE Float = Double; CONST TNArraySize = 500; { Maximum size of matrix } TYPE PTNV = ^TNvector; PTNM = ^TNmatrix; PTSV = ^TSVector; PTSM = ^TNSmatrix; TSvector = ARRAY[1..TNArraySize] OF string...
  7. binbyte

    error when translating from visual basic to delphi

    Hi everybody! I have a problem when translating a piece of code from a visual basic program to another in delphi: I have in vb the following: i = 1 do while (i < n) if Vect1(i) = Vect1(i + 1) then For j = 1 to n a(i + 1 , j) = a(i + 1 , j) + a(i , j) a(i , j) = 0...
  8. binbyte

    How Float to Widestring?

    I have a problem when trying to write in Delphi a program that I wrote a time ago in Visual Basic. I, instead of using Stringrid, want to use Msflexgrid, for which I concerned it using import ActiveX from Delphi but the problem is that when trying to put the values of an array in the grid, for...
  9. binbyte

    difference betwwn dates

    thanks for your help
  10. binbyte

    difference betwwn dates

    I have got a textbox in a form where I put the number of days between two different dates but I don't know how update the field in the table to show the number of days in the table too. I hope anyone help me. Thanks
  11. binbyte

    bios upgrade

    I want to know if pchips motherboard m825 support sempron microprocessors or need bios upgrade. I don't know how to flash bios. If you can give me an idea ... thanks

Part and Inventory Search

Back
Top