Yesterday I wrote a piece of code that gets a list of all form types in a specific assembly. Today I share another piece of code snippet that gets list of all controls in the specific assembly form. /// <summary> /// Get list of all controls on the form. /// </summary> /// <param name="assemblyName">Asse... name.</param> /// <param name="assemblyVersion">A... version.</param> public void GetControlList(string assemblyName, string assemblyVersion) { Assembly ......
Many of the geeks sometime required to get a list of all form type in give assembly or a specific assembly in .Net. I have right a small code snippet that done this job for me, so I thought I must share it with you guys. /// <summary> /// Get list of all Form type in the give assembly. /// </summary> /// <param name="assemblyName">Asse... name.</param> /// <param name="assemblyVersion">A... version.</param> public void GetFormList(string assemblyName, string ......
Today I had a situation in my project were I need a textbox control with custom border property. Microsoft .Net framework doesn’t allow us to render a textbox with custom border color; you can only change the appearance of the textbox control from Fixed3D to flat and from flat to none. Actually I want a control with flat border style but with custom color not in black. I do the following thing to achieve this control. Create a user control -> Add textbox control on it and move into the code. My ......
Mixit Inc, a Wall Street based company, with its development arm in Karachi, is the Diamond sponsor for the Security Traders Association of Chicago’s (STAC) Annual Winter Meeting Jan 10-13, 2008 in Chicago. Mixit Inc. is a world class technology provider to the financial services industry globally providing a high performance suite of products including order management and order routing solutions and networks. Mixit connects brokers, dealers, institutions and exchanges. The Security Traders Association ......