# Proficiency Tester

Today I got my EXE program, which I wrote in Visual Basic 6.0 for SITRA (South India Textile Research Association) Coimbatore, way back in 2002, running on my Windows 11 machine which I thought would never happen.

Download the relevant OCX files from :

* [https://www.ocxme.com/files/MSCOMCTL](https://www.ocxme.com/files/MSCOMCTL)
    
* [https://www.ocxme.com/files/comdlg32](https://www.ocxme.com/files/comdlg32)
    
* [https://www.ocxme.com/files/msflexgrid](https://www.ocxme.com/files/msflexgrid)
    

and move them to this folder : C:\\Windows\\SysWOW64\\

Now run this in command prompt (cmd.exe) as an Administrator :

```plaintext
cd C:\Windows\System32
C:\Windows\System32>regsvr32.exe C:\Windows\SysWOW64\MSCOMCTL.OCX
C:\Windows\System32>regsvr32.exe C:\Windows\SysWOW64\comdlg32.ocx
C:\Windows\System32>regsvr32.exe C:\Windows\SysWOW64\msflexgrid.ocx
```

Now run ProficiencyTest.exe - this uses text files as a database - this was at a time when I didn't know about SQL / RDMS (even though we had a subject on it !) and has no requirement to an internet connection - used books to learn - no StackOverflow, no YouTube, no ChatGPT and lastly, hardly any Google because Internet was not available (most of the time) until 2003 ! - I used Yahoo! in college but I don't recollect searching for programming solutions from the Internet - all I had was a VB6 book. And of course, my college's lab assistants helped me a lot in troubleshooting setup and configuration issues.

PS: Their site, [https://www.sitraindia.org/](https://www.sitraindia.org/) which was active in 2002 is no longer valid - the current site is [sitra.org.in](http://sitra.org.in)

Most of the functions / menus don't work because of the UI being very outdated.

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1706269234927/640e85ae-4ac8-4a46-bc7a-5d711e28a940.png align="center")

Source : [https://github.com/anjanesh/sitra](https://github.com/anjanesh/sitra)
