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 function of the steplib dd statement?
How to pass the parameter in parm using linkage section ? (syntax)?
Are there any set of rules for the names of the steps used in a job? What are they?
How to override loadlib?
How can return codes be tested before execution of a job step?
What are the parameter we cannot use in procedure?
how you will the direct the data to spool using sysout option?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
Why block size is multiple of lrecl in jcl?
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
In sms datasets, what is the function of the dd avgrec keyword?
How would you understand error(execution phase)?
What is the function of the dd dcb keyword?
Which statement is used to identify the private libraries in job?
How can the submitting users racf authority be overridden in a job stream?