[2005] Is there any option to record application events in vb.net
hi,
i have a query that in excel we can start record macros and what ever we do in excel book it will write macro automatically until we stop record macro. is there any option in vb.net to record form events at runtime as like excel.
for example i have three buttons and two textboxes.one is record and another stop and another one is submit in my vb.net form.
so after running my application if i click the record button and i will fill some values in the textboxes and i click the submit button i need to record what ever i did after clicking the record button.is this possible? if means please show me some sample if there.. please
Re: [2005] Is there any option to record application events in vb.net
Tools > Macros > Record Temporary Macros
Re: [2005] Is there any option to record application events in vb.net
dear RobDog,
thanks for the reply. i don't want to use inbuild option. i just want to code for this. is this possible to do? is there any example for this how to code for the starter please
Re: [2005] Is there any option to record application events in vb.net
You want to write the code so go ahead and write the code. You already know how to handle events in WinForms. You simply do that and then save some information somewhere for each one. What information you save, where you save it and in what format is completely up to you. There's nothing inherent in the language that's going to do it for you. The language will notify you when an event occurs and offers you numerous ways to save data. How you put them together is up to you.