can u execute a proc from another proc?
Answer Posted / kameswari
hello,
Yes we can call 1 procedure from another procedure.
Here is my code.
public void res()
{
MessageBox.Show(res2().ToString());
}
public string res2()
{
str = "phani";
return str;
}
Form1_Load()
{
res();
}
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
Explain the jcl exec statement?
What is Cataloged Procedures?
How does the jcl specify the job to os?
What are the jcl procedures?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
what is the compile process of cobol program expalin with code
List the different jcl statements that are not permitted in the procedures?
I need exexution process for JCL programs
Is it possible to define dd statements as you want?
What is the format of comment statement?
What are steplib and joblib?
what is the use of JCL?
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?