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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DrumKat

  1. DrumKat

    How can i Copy record of the same file (duplicate record)

    In reading my initial response, I assumed you'd be aliasing and appending a new record.. so to be totally correct, your code would look like this: // Gather ( copy record ) aTemp := ARRAY(YourDBF->( FCOUNT() ) ) AEVAL(aTemp, {|xExpression, nField| aTemp[nField] := YourDBF->( FIELDGET(nField)...
  2. DrumKat

    How can i Copy record of the same file (duplicate record)

    // Gather aTemp := ARRAY(FCOUNT()) AEVAL(aTemp, {|xExpression, nField| aTemp[nField] := FIELDGET(nField)}) // Scatter AEVAL(aTemp, {|xExpression, nField| FIELDPUT(nField, xExpression)})

Part and Inventory Search

Back
Top