Subversion Repositories DevTools

Rev

Rev 2230 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2230 Rev 2232
Line 4017... Line 4017...
4017
						<< sequence->second->getName() \
4017
						<< sequence->second->getName() \
4018
						<< "\"." );
4018
						<< "\"." );
4019
				}
4019
				}
4020
			}
4020
			}
4021
		}
4021
		}
-
 
4022
		SequenceGeneratorQuery->Refresh();		
4022
	}
4023
	}
4023
	__finally
4024
	__finally
4024
	{
4025
	{
4025
		delete query;
4026
		delete query;
4026
		query = 0;
4027
		query = 0;
Line 5253... Line 5254...
5253
					}
5254
					}
5254
 
5255
 
5255
					m_progressBar->open( count );
5256
					m_progressBar->open( count );
5256
					timeEstimate.start( count );
5257
					timeEstimate.start( count );
5257
 
5258
 
-
 
5259
					generated = true;
5258
					for ( where = scenarios.begin();
5260
					for ( where = scenarios.begin();
5259
						  where != scenarios.end();
5261
						  where != scenarios.end();
5260
						  ++where )
5262
						  ++where )
5261
					{
5263
					{
5262
						iteration.findTestScenario( *where ).generate(
5264
						if ( !iteration.findTestScenario( *where ).generate(
5263
							stream,
5265
								stream,
5264
							generateHeaders,
5266
								generateHeaders,
5265
							context );
5267
								context ) )
-
 
5268
						{
-
 
5269
							generated = false;
-
 
5270
							break;
-
 
5271
						}
5266
					}
5272
					}
5267
				}
5273
				}
5268
 
5274
 
5269
				if ( generated )
5275
				if ( generated )
5270
				{
5276
				{
Line 5330... Line 5336...
5330
	}
5336
	}
5331
	generateTransaction( scenarios );
5337
	generateTransaction( scenarios );
5332
}
5338
}
5333
//---------------------------------------------------------------------------
5339
//---------------------------------------------------------------------------
5334
 
5340
 
5335
void __fastcall TMainForm::TestParametersPageControlChange(TObject *Sender)
-
 
5336
{
-
 
5337
	if ( TestParametersPageControl->ActivePage == SequenceGeneratorsTabSheet )
-
 
5338
	{
-
 
5339
//		TransactionValueGrid->Invalidate();
-
 
5340
		SequenceGeneratorQuery->Refresh();
-
 
5341
	}
-
 
5342
}
-
 
5343
//---------------------------------------------------------------------------
-
 
5344
 
-