Urgently need Help
-
I want to create an MFC application in it I want to use perl. Suppose there's a Dialog Box on it there r few buttons when we click on them the perl code associated with that button should be executed. For eg. there's a button when we click on that button it asks for the name of the project to be created in Visual Source Safe Database. Or simply u can tell me this eg. For eg. when we click on a button it asks for the ur name & then prints Hello ur name. Then i'll try to embed this code myself in VC++. Now, if we click on the create new project button the following code should get executed chomp ($proj = ); system ("ss Create $proj"); print("$proj Project has been Created Successfully.\n\n"); Above code first asks for the name of the project that has to be created. Then second line executes the system cmd & creates a project that the name u specified. ss Create is an system cmd for executing system cmd we use system keyword. And finally prints the msg Project_Name Project has been Created Successfully. This cmd creates a project in VSS. This script I created for CLI I.e cmd prompt. Now I want the same application to be executed using VC++. Plz. let me know as soon as possible.:):):):):):):)
-
I want to create an MFC application in it I want to use perl. Suppose there's a Dialog Box on it there r few buttons when we click on them the perl code associated with that button should be executed. For eg. there's a button when we click on that button it asks for the name of the project to be created in Visual Source Safe Database. Or simply u can tell me this eg. For eg. when we click on a button it asks for the ur name & then prints Hello ur name. Then i'll try to embed this code myself in VC++. Now, if we click on the create new project button the following code should get executed chomp ($proj = ); system ("ss Create $proj"); print("$proj Project has been Created Successfully.\n\n"); Above code first asks for the name of the project that has to be created. Then second line executes the system cmd & creates a project that the name u specified. ss Create is an system cmd for executing system cmd we use system keyword. And finally prints the msg Project_Name Project has been Created Successfully. This cmd creates a project in VSS. This script I created for CLI I.e cmd prompt. Now I want the same application to be executed using VC++. Plz. let me know as soon as possible.:):):):):):):)
NityaKakkar wrote: u can tell me this eg. For eg. when we click on a button it asks for the ur name & then prints Hello ur name. Read Chapter 1 And 2 of Teach yourself Visual C++ in 21 days.
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta