Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I determine which forms are using a particular VB6 user control?

I have a VB6.0 application in which I have forms and user controls. I need to know in which form a particular user control is being used. Can anyone tell me how to do this?

like image 370
ASD Avatar asked Dec 17 '25 22:12

ASD


1 Answers

frm files are text files. Use an editor like Notepad++, which is free, to search across all the files for the user control. You might want to add the user control to a form, and then view the frm file in Notepad++, so that you know what to search for.

Here is the manual topic on frm format

like image 97
MarkJ Avatar answered Dec 19 '25 17:12

MarkJ