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

    Activating SQL Server in Visual C#.NET

    msde is a sqlserver engine and should show up in server explorer. visual studio.net sets up an instance of msde at servername/vsdotnet by default. try adding that server.
  2. syntax926

    Problem sith shared variables and WhileReadingRecords

    I needed the value for a grouping criteria, so it had to be done WhileReadingRecords;
  3. syntax926

    Problem sith shared variables and WhileReadingRecords

    I think I figurred it out, changing evaluation time to use for formula 2 to EvaluateAfter (formula1) rather than WhileReadingRecords seem to do the trick.
  4. syntax926

    Problem sith shared variables and WhileReadingRecords

    sorry about that. I meant that it is a global variable (no subreports are involved and they are explicity declared global.. crystal v.9) I have two formulas in 2 detail sections. --------------------------------------------------------- Formula 1: {@CalcSeqNo}: sitting in detail section A...
  5. syntax926

    Problem sith shared variables and WhileReadingRecords

    I have a dataset in which I am trying to add a simulated sequence number by adding a formula which is evaluated WhileReadingRecords. In it, I am using a shared variable in which I am incrementing if it belongs to the same parent and resetting if they are different. The problem is on the first...
  6. syntax926

    How can I translate this VB in DELPHI

    this might work uses comobj; function delphi_function() var cmc, mes, qrs:OleVariant; begin cmc = CreateOleObject('Commence.DB'); mes = cmc.getcursor(0, 'Message', 0); mes.SetSort ('[ViewSort,''somefilter'', ascending)]', 0); If (mes.rowcount() > 0) Then begin...

Part and Inventory Search

Back
Top