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
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
What does a disposition of (MOD,DELETE,DELETE) mean ?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
Where & How Do You Code Identifier In Jcl?
what is use of disp parameter in dd statement?
Can an individual step be restricted from using all the jobs allowed cpu time?
how can the same proc be re-used and called by many jobs?
How to run cobol program using jcl?
What do you understand by the term notcat 2 – gs?
List the different components of jcl statement?
How does the jcl specify the job to os?
What is the function of the dd dcb keyword?
What is concatenating?
Is it possible to left uncode disp?
how do you code a null statement?