The following is the Requirement. The end User will define the Flow of the Process using UI.Based on that Flow result i need to create one Action. E.g LEt us consider REcruitment Process I have to provide UI to create Recruitment Process as a flow diagram. I need to execute this flow diagram once defined Based on the Result of flow Execution, i need to provide a grade to the candidate. I dont know how i can give UI provison to the user to define a Workflow dynamically. If anyone knows kindly let me know.
swethasri
Posts
-
Work Flow Diagram in C#2.0 -
Work Flow Diagram in C#2.0Hi, I want to create Workflow using C# 2.0. I need to provide UI to allow the user to define a Workflow runtime.Kindly provide me the solution for this.
-
Reg:Output from Exe Method callHi all, I want to call an exe from my .net application using form's Showdialog() method.The control is moving to the caller successfully. but while closing that application i want to get the the result of database operation [The Result is like 1 for success and any other string for failure]. How can i achieve? thanks in advance Sri
-
Reg:email domain Verification -
Reg:email domain VerificationHi all, I want to check the email address against SMTP domain verification. I have used the following code.but it's not getting the response from the domains gmail.com,yahoo.com,google .com. so it shows that domain is not valid. try { string[] host = (textBox1.Text.Trim().Split('@')); string hostname = host[1]; IPHostEntry IPhst = Dns.GetHostByName (hostname); IPEndPoint endPt = new IPEndPoint(IPhst.AddressList[0], 25); Socket s = new Socket(endPt.AddressFamily, SocketType.Stream, ProtocolType.Tcp); s.Connect(endPt); MessageBox.Show("Exists"); } catch (Exception ex) { MessageBox.Show(ex.Message.ToString ()); } Can anyone tell me the solution for this. Thanks in advance swethasri