|
|
Dear experts,
first in short my problem which I want to solve.
I want to check by a tool the adherence to a process. In concrete this means, that I have some type of a model how the process should be followed and I want to check this now.
An simple example:
Let's assume I have 3 process entities: a) Requirements b) Implementation c) Final test. The workflow is now as follows: If Requirements change, the Implementation must be updated and finally the Tests must be made. And much more combinations are possible...
The information on the versions of req, impl. and tests ist stored in some meta-info-files (e.g. xml.files or databases)
Solution:
I don't know how to start here. What I wanted to implement were some rules or workflows. E.g. If the req. have been updated there must be at least some xml-information which references this version of req. and ......
My first approach ended with endless for loops and if-statements; totally unmaintainable.
Questions:
1.
I "feel" that my topic has to do with workflow-programming. Is this right?
2.
Is there any beginners information available?
3.
I read about WWF. Is this the right starting poing?
4.
I also read about some "rule based engines". Is this similiar to workflows?
Kind regards
|
|
|
|
|
Tomerland wrote: I "feel" that my topic has to do with workflow-programming. Is this right?
Interesting question, however it bring up another question. Since you have far more information about your applications requirements than people reading your post in an internet forum, why wouldn't it make more sense for you to study what workflow is[^] to answer that question rather than asking people in an internet forum?
led mike
|
|
|
|
|
hi,
can come one please guide me how to dock the first column in datagridview.so that when the number of columns increases and scroll is there the first column in visible even if we scroll to the last column.
modified on Monday, August 11, 2008 6:59 AM
|
|
|
|
|
sailesh_gupta wrote: treat this as urgent
Be careful what you wish for...
|
|
|
|
|
NO NO NO
This is a Datagrid , you cannot do that. and before you type something make sure its correct(English)
Vuyiswa Maseko,
Sorrow is Better than Laughter, it may Sadden your Face, but It sharpens your Understanding
VB.NET/SQL7/2000/2005
http://vuyiswamb.007ihost.com
http://Ecadre.007ihost.com
vuyiswam@tshwane.gov.za
|
|
|
|
|
|
I have made an Outlook 2003 add-in in VS 2005 using VSTO 2005. Now i want to use the same add in to Outlook 2002. How i can do this i need some hint or u can advice what should i do??????
wasim khan
|
|
|
|
|
Google[^]
Regards,
Thomas Stockwell
Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning.
Visit my Blog
|
|
|
|
|
hi 4 all,
can i handle an exception without using try catch blocks,
becouse i have been asked this qustion in an interview and i answered with NO .
if " yes " i can PLEASE explain it for me!!!!
|
|
|
|
|
mrcooll wrote: can i handle an exception without using try catch blocks,
Yes, there's an event that gets fired at the top level of an app if an uncaught exception hits that level. But, that's not really a great way to handle exceptions, because it's so far from the source, that it's hard to recover.
Christian Graus
No longer a Microsoft MVP, but still happy to answer your questions.
|
|
|
|
|
did u mean the
void Application_Error(object sender, EventArgs e)
{ // Code that runs when an unhandled error occurs Server.Transfer("HandleError.aspx");
}
in web application ?
becouse i dont know what r u talking about in windows app!!
|
|
|
|
|
No, there's an event in a windows app. I forget the details, but I know I implemented it in my windows app for any uncaught exceptions.
Christian Graus
No longer a Microsoft MVP, but still happy to answer your questions.
|
|
|
|
|
In windows application you can hook up to AppDomain.UnhandledException and Application.ThreadException events.
Using this any handled exception can be handled centrally.
|
|
|
|
|
Beat me to it.
Simon
|
|
|
|
|
|
Cool - two people who could be bothered to look it up
Christian Graus
No longer a Microsoft MVP, but still happy to answer your questions.
|
|
|
|
|
|
Look up AppDomain.UnhandledException event.
|
|
|
|
|
yes you can do it at Page level as well as Applcation level with out using try catch.
@PAge: protected override void OnError(EventArgs e)
@Application level: void Application_Error(object sender, EventArgs e)
Imran
[MCTS]
Few have audacity to speak truth
|
|
|
|
|
Thanks for all....
that was helpfull Tips
|
|
|
|
|
Don't use up all the smilies!
Mark Salsbery
Microsoft MVP - Visual C++
|
|
|
|
|
Dear readers,
I'm confused about the interaction between the terms "requirements" and "features".
I read a lot about that but I didn't really get the point.
There are a lot of statements, as:
1.
A feature is built from a group of requirements
2.
Traceability (between requirments and implementation) is possible only for features and not for requirements.
...and a lot more...
Can somebody provide me some information?
Thank's ! !
|
|
|
|
|
Requirements are 'the app needs to do x'
Features are 'we added y to the app, and this deals with requirement x'
It's probably largely semantic, but I'm sure it keeps some consultants in a job.
Christian Graus
No longer a Microsoft MVP, but still happy to answer your questions.
|
|
|
|
|
Thanks's for your answer,
but I still are unable to catch the point probably ))
As I understand you, Requirements are from the user and Features are from the implementation. Am I right?
Let me try an example:
We have 3 user requirements:
R1: Read configdata from file after startup
R2: Store configdata to file at closing
I have the following implementation (-features)
I1: Search file from directory-tree
I2: Read config-file
I3: Interpret config-file
I4: Write config-file
This means:
R1 is implemented by I1 and I2 and I3
R2 is implemented by I1 and I4.
For getting traceability now, I have to check which requirement is implemented by which feature.
Is my thinking right in some way?
With kind regards
|
|
|
|