Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

State the uses of syspring, sysin, sort fields, sum fields and dummy.

1139


What are the difference between jcl and jes?

1661


What methodology can be adapted to transfer data to a program that is coded using the exec statement?

1271


If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?

1382


WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375

1525


How would you understand error(execution phase)?

1321


Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?

1175


What statement can be used to send data to another mvs jes3 node?

1689


in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?

2799


what is JCL?

1221


How does the jcl specify the job to os?

1218


Explain about LMFREE�free data set from its association with data ID

1678


Mention the types of job control statements?

1225


When The Define Jcl Is Not Available, How Can You Get Information About A Vsam File's Organisation ?

1263


what is the purpose of coding notify parameter in job statement?

1202