Gaurav Taneja

Great dreams... never even get out of the box. It takes an uncommon amount of guts to put your dreams on the line, to hold them up and say, "How good or how bad am I?" That's where courage comes in.

  Home  |   Contact  |   Syndication    |   Login
  90 Posts | 0 Stories | 78 Comments | 7 Trackbacks

News




Google RankGoogle PRâ„¢ - Post your Page Rank with MyGooglePageRank.com



The content on this site represents my own personal opinions and thoughts at the time of posting, and does not reflect those of my employer's in any way.

Disclaimer:- All postings in this blog is provided "AS IS" with no warranties, and confers no rights.

Archives

Post Categories

Image Galleries

Atlas

Error

OutLook

SharePointService

Usefull Site Links

December 2008 Entries

To change the color of Tab control Add this event handler DrawMode property to OwnerDrawFixed. Override the DrawItem event handler definition. tabControl2.DrawItem += new DrawItemEventHandler(OnDraw... step 2 private void OnDrawItem(object sender, DrawItemEventArgs e) { TabPage CurrentTab = tabControl2.TabPages[e.Index]; Rectangle ItemRect = tabControl2.GetTabRect(e.In... SolidBrush FillBrush = new SolidBrush(Color.Red); SolidBrush TextBrush = new SolidBrush(Color.White); StringFormat sf = new...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

CREATING DLL DYNAMICALLY you need to complie this code Public Function CreateResourceAssembly() As Boolean Dim currentpageHashVal As Hashtable = New Hashtable() Dim intArrIndx As Integer Dim strTextVal As String Dim blnIsSuccess As Boolean Dim strAsmFileName As String = FetchTest.resources.dll Dim strPathAssmbly As String = strAppPath + FetchTest.resources.dll" Dim appdomain As AppDomain = Thread.GetDomain() Dim asmName As New AssemblyName() Dim strVersion As String = Nothing Dim strKey As String...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Reading a dll into bytes Dim strPathAssmbly As String ="c:\abc.dll" Dim btByte() As Byte = File.ReadAllBytes(strPathAs...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

Diplaying the controls Public Sub DisplayControlName(ByVal oControl As Control, ByVal strPageName As String) Dim txtBox As TextBox Dim ddlLst As DropDownList Dim rdBtn As RadioButton Dim rdBtnLst As RadioButtonList Dim chkBx As CheckBoxList Dim chkBx1 As CheckBox Dim lblVal As System.Web.UI.WebControls.L... Dim htmTbl As System.Web.UI.HtmlControls.... Dim btnVal As System.Web.UI.WebControls.B... ' Checks for all the WebBased Control in the web page Select Case oControl.GetType.ToString 'Case...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati

How to fetch Page controls of web form Dynamically in vb.net To Find the Page Controls in a Web Page Public Function FindPageControl(ByVal oControlCollection As ControlCollection, ByVal strPageName As String) As ArrayList ' Traverses all the controls in the page For Each oControl As Control In oControlCollection DisplayControlName(oControl, strPageName) FindPageControl(oControl.Co... strPageName) Next Return ArrayLst End Function How to call this function FindPageControl(Page.Controls, strPgName)...
  • Share This Post:
  • Share on Twitter
  • Share on Facebook
  • Share on Technorati