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 Rhinorhino 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: *

  • Users: BlueBlade
  • Content: Threads
  • Order by date
  1. BlueBlade

    Please help me with loading my usercontrol into a PlaceHolder

    Hi, using VB.NET, I am trying to load a UserControl into a PlaceHolder dynamically. In the WebForm I added the following directive: <%@ Reference Control="../UserControls/SquareRoot.ascx"%> In PageLoad I have this piece of code: Dim uc As SquareRoot...
  2. BlueBlade

    How do I close a form in vb.net?

    Hi everyone, I opened a form using a java script. There is a button on the form that I want to use to close the form. I tried putting this in the Button_Click event: Me.close() when I do this, I get an error that says that close is not a member of my application. Then I tried me.unload()...
  3. BlueBlade

    How can I use a button control to show a JavaScript window?

    Is it possible to call a javascript new window using a Button control like you would use a Hyperlink control? I have a list of buttons on my form and I would like for the control that opens the window to be a button as well rather than a HyperLink control. Please let me know how this can be done...
  4. BlueBlade

    How can I increment a number in a Public Shared sub?

    Hi, I’m trying to increment a number each time the user click on a button. My code happens to be in a button that is a Public Shared sub. Because it is a public shared, I can’t access the query string in the usual manner like this: Response.Redirect("default.aspx?question=1") Dim num As...
  5. BlueBlade

    How do I force a page or control to be refreshed?

    Hi I am trying to get my program to respond to changes in the parameters in the URL, specifically a label on the form. The form is my default.aspx form and I have a label on it that I would like to be updated after I change the URL. This is what I have in the Form Load routine: Dim...
  6. BlueBlade

    How Can I Put Text in a Label Control Using a Hyperlink?

    Hi, I am trying to change the contents of a label control using a hyperlink. The hyperlink and the label controls are on different UserControls. Please help, Thanks.
  7. BlueBlade

    How do I access a single row in an SqlReader object?

    Hi, I'm calling a stored procedure which return a sqlReader object. I would like to know how to retrieve a specific row or record from the reader and store it in a textbox. Can anyone help me with this or show me a link that may be able to help? Thank you so much, BlueBlade

Part and Inventory Search

Back
Top