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 Chris Miller 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. nbruckelmyer

    Looping through controls

    I think I figured it out. I had to loop through the Page Controls then the child controls of each page control. Check it out. Dim oCurr As Object Dim c As Control Dim childc As Control For Each c In Page.Controls For Each childc In c.Controls If TypeOf childc Is TextBox Then...
  2. nbruckelmyer

    Looping through controls

    I am trying to loop through my controls on my web page, and perform some operation on the textboxes. This don't seem to be working. Thanks. Dim oCurr As Object '-Loop through each of the controls on the form For Each oCurr In Me.Controls() '- Check to see if the control is a text box If...
  3. nbruckelmyer

    Strong Name in Visual Studio.NET

    I have a class library and I want to assign a strong name through Visual Studio. When I select properties from my project, the Strong Name section is not available in my Property Pages. Anyone know why this is happening. Thanks.
  4. nbruckelmyer

    Global Assembly Cache Problem

    I tried your code and here is what I got vbc : error BC30420: 'Sub Main' was not found in 'MyTest'. C:\GAC\test\MyTest.vb(1) : error BC30466: Namespace or type 'HW' for the Imports 'HW' cannot be found. Imports HW ~~ C:\GAC\test\MyTest.vb(4) : error BC30205: End of statement expected...
  5. nbruckelmyer

    Global Assembly Cache Problem

    I cannot get GAC to work. If you see I did anything wrong, please let me know. Here is my file **********hwmod2.vb****************** Imports System Imports System.Reflection <assembly:AssemblyVersionAttribute(&quot;1.0.0.0&quot;)> <assembly:AssemblyKeyFileAttribute(&quot;hwmod2.snk&quot;)>...
  6. nbruckelmyer

    Import my assembly from GAC

    Hi, I have an assembly in my Global Assembly Cache that I would like to access in a ASP.Net code behind page. I am pointing my web.config to the assembly I need to use in GAC. I then want to access the file in my code behind. Is there a way to do this. I would rather not copy the .dll file into...

Part and Inventory Search

Back
Top