Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. 23maploosh

    SqlDataSource Caching

    I have been reading a book on ASP.net and at a point where they are talking about caching and the sqldatasource. In the book it says that the enablecaching property of the sqldatasource is by default set to false. To test this out I created a simple form with a dropdownlist populated by a...
  2. 23maploosh

    Reflection - Assembly Question

    I think I may understand why I am getting this error now. First of all thanks BobRodes for the help. I believe what is happening is when I rename the assembly and then click button2: System.Reflection.Assembly assem = System.Reflection.Assembly.Load("ReflectionTesting"); Object c =...
  3. 23maploosh

    Reflection - Assembly Question

    In my question I show the code under button2. Here is the code again: System.Reflection.Assembly assem = System.Reflection.Assembly.Load("ReflectionTesting"); Object c = assem.CreateInstance("reflectionTesting.clsCar"); MessageBox.Show(c.ToString()); All I did was hard code to load assembly...
  4. 23maploosh

    Reflection - Assembly Question

    I am trying to understand the concept of reflection and found a tutorial on the web. I thought I understood it until I started to play with it a little further. I created a winform app named 'reflectiontesting'. I also created a simple class called 'clsCar' that simply overrides the...
  5. 23maploosh

    System.InvalidCastException

    I have a windows application that was built with vs2003. One part of the application uses a xml file to adjust the formatting of questions that are being displayed. The problem here is that the application uses the lines, dim size as integer size = "14.25" (this is actually a string being...

Part and Inventory Search

Back
Top