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 strongm 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: drew10
  • Order by date
  1. drew10

    DataBind to a Textbox

    try using a datareader... dim dr as datareader = DA.SelectCommand.ExecuteReader() while dr.read() textbox1.text = dr.item(0) textbox2.text = dr.item(1) end while hth, drew
  2. drew10

    Pressing enter on the keyboard triggers the wrong event

    There is also a great control from metabuilders.com that handles all the work! Check it out ---> http://www.metabuilders.com/Tools/DefaultButtons.aspx This guy has some great controls and best of all... they're free!
  3. drew10

    Automatic Domain registration, dns record and iis web site creation

    If you could give more details on part 3, specifically where these scripts are located, I would greatly appreciate it. thanks, drew10
  4. drew10

    Back button on browser help

    Check out this article... it may help. I've used it to prevent users from going back to pages after they have been submitted. -drew10
  5. drew10

    Debugging problem

    There are many issues that may prevent you from debugging. Make sure that you are a member of the debuggers group. Make sure that you installed IIS before installing vs.net. Also, check to make sure that in the project properties under debugging, that asp.net is checked. Those are just 3...
  6. drew10

    POP3 email problem

    Thanks. I've tried it and it works!
  7. drew10

    POP3 email problem

    I'm writing a module for the ibuyspy portal that allows users to enter a pop3 and smtp server, username, and password to check and send email. The problem that I am running into is that when create a loop to retrieve each message in the mailbox it executes the retrieve call too quickly, and...
  8. drew10

    add javascript to a button

    button1.Attributes.Add("OnClick", "javascript: return confirm('Are you sure you want to do this?');")
  9. drew10

    How to submit 4 forms to 4 different pages

    Thanks for the responses. My page allows the user to select from several payment methods, and I then post the account information to a payment service web page that expects a post. I'm pretty sure that just removing the runat=server and adding 4 forms will get the job done. Thanks, Drew
  10. drew10

    How to submit 4 forms to 4 different pages

    I have a page that has 4 forms that submit to 4 different pages on 4 different web servers. In classic asp, this was easy. You just create 4 forms and point their action to the target pages, but in .net I have no idea how to accomplish this since pages post back to themselves. Anyone dealt...
  11. drew10

    running an excel macro

    When I wrote this app, all that I needed to do was open an existing excel spreadsheet and fire a macro that was already created within the spreadsheet. I called oBook.Application.Run("runMacros") which is the macro name for a macro that fires many smaller macros. I would explore...
  12. drew10

    new to vb.net apps

    I've been developing with asp.net using vb.net however I am new to application development. I am going to buy a book tomorrow, but I have a beginners question until I can get the book. I want to open one form and close another. I have tried: Dim newForm As New form2()...
  13. drew10

    Java or VB.NET?

    If your webserver is on the Unix server then you will need to go with Java. Only microsoft products support .NET. -drew10
  14. drew10

    Alerts

    <script LANGUAGE=&quot;JavaScript&quot;> <!-- function confirmSubmit() { var agree=confirm(&quot;Are you sure you wish to continue?&quot;); if (agree) return true ; window.location = &quot;page1.aspx&quot; else return false ; } // --> </script> Here's some javascript that brings up a...
  15. drew10

    streamwriter.close() is hanging

    I am using a streamwriter, but it is causing my program to hang, which results in a timeout. This program has been working for months, now it is hanging. Has anyone encountered any problems like this? I get no errors other than a timeout. Please help! Thanks, Drew10
  16. drew10

    User Control Property ?

    I have a usercontrol that has a property called CallingPage that tells me which page my usercontrol is on. The code looks like so: <cc1:title id=&quot;Title1&quot; runat=server CallingPage=&quot;0-1&quot; /> The problem I am running into is that when I try to dynamically set the CallingPage...
  17. drew10

    Pressing enter on the keyboard triggers the wrong event

    Thanks, That's what I figured. I've tried to implement an onkeyup javascript function that checks to see if the window.event.keyCode = 13 (the keyCode for the enter button), and then fire the event I want, but due to time restrictions, I gave up and moved the button further down on my page...
  18. drew10

    Multi DropDown Lists

    Why not just call one function that executes the sql statement and place the results in a datatable or arraylist and bind the dropdown with the datatable or arraylist as the datasource? hth, drew10
  19. drew10

    Pressing enter on the keyboard triggers the wrong event

    I have a login form with 2 textboxes(1 for username, 1 for password) and a submit button. Also on the form, above the login I have an imagebutton. When the user enters their login information and hits enter on the keyboard, the event for the imagebutton is fired, not the submit button. What...
  20. drew10

    Cannot get Pics/Graphics to Display

    Post some code!

Part and Inventory Search

Back
Top