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

  1. TPetersonFlorida

    Stored Procedures returning errors...

    I have an ASP.Net application that calls various stored procedures. I have not yet figured out how to access an error that is raised in the stored procedure from the calling application. Any help is appreciated!!! Thanks!
  2. TPetersonFlorida

    Embedding javascript

    I have no code right now because I dont know how to embed the javascript code into an aspx page that is using code behind forms. i know how to do it in classic asp but its totally different in asp.net.
  3. TPetersonFlorida

    Embedding javascript

    I need help embedding javascript into my aspx page. i have two text boxes and when i am typing in textbox1 on the OnKeyDown event captures what is in it and sets textbox2 to that value, all client side. How in the heck do i do this??? I have been reading and reading and can not find anything...
  4. TPetersonFlorida

    ASP.Net and Javascript and User Control help needed...

    I have a custom user control that has some text fields on it and this control is placed on another web form. One of the text fields on the user control needs to update another text field on the user control as they type. How do I do this? I have done this in classic ASP but can not seem to...
  5. TPetersonFlorida

    Stored procedure help

    I have a database that is used by an application where multiple people are writing to the database. I have one table that stores the next available part number, a sequential number. I need to write a stored procedure that gets that number, increments by one, then writes that new number back to...
  6. TPetersonFlorida

    Table row creation dynamically

    I have a web form with a button on it. I have a table with one row already pre-defined. What i want to happen is the user clicks the button to append another row onto the table, in essence have the ability to append as many rows as they would like. I can get it to create one row but after...
  7. TPetersonFlorida

    Addition of reference to new dll in VBA gives error in runtime

    Does the DLL that you referenced reside on the machine that you moved the MDE to? if not, then you will get an error.
  8. TPetersonFlorida

    Tell me what column I clicked on in a List Box

    Listboxes do not have the ability to determine which column a user clicked on, you can get a column value by the row they clicked on but not what column they clicked. if you wanted to do that then i would suggest you change your list box to a subform displaying your values in a continuous form...
  9. TPetersonFlorida

    how to check a website...

    I have a website and i would like to write a program that i can schedule to run every so often that will check to see if my website is up and running and if it is not then have the program either email me or page me. First question is can this be done and if so how would i go about writing...
  10. TPetersonFlorida

    insert statement...

    Thanks shannanl. But my question is not how to do this in ADO but how to create a stored procedure where you pass into it the values you want inserted. One of those values is for a column defined as a text type. I can't seem to find anything when it comes to this.
  11. TPetersonFlorida

    insert statement...

    I have a table where one of the columns is of 'text' data type. How do i insert a row into this table using the INSERT command? Also, how would you write a stored procedure to do this? thanks in advance todd
  12. TPetersonFlorida

    Scroll with wheel in VBA modules

    I have the same problem but it only happened once i upgraded to windows XP. How can i fix this???
  13. TPetersonFlorida

    Global.asa problem...

    Here is the contents of my global.asa file: <script language=&quot;vbscript&quot; runat=&quot;server&quot;> sub Session_OnStart end sub sub Session_OnEnd Set myConn = Server.CreateObject(&quot;ADODB.Connection&quot;) myConn.Provider = &quot;Microsoft.Jet.OLEDB.4.0&quot...
  14. TPetersonFlorida

    Global.asa problem...

    I have in my global.asa file a function that fires off when someones session ends. It was working but has now quit working. I dont see anything wrong with the function. Is there something that i dont know about the global.asa file such as it being inconsistent? any ideas?? please help...
  15. TPetersonFlorida

    datagrid with client side scripting...

    Thanks! Thats what i used and was able to accomplish my task.
  16. TPetersonFlorida

    datagrid with client side scripting...

    Here's the situation: I have a datagrid with the first column being a hyperlinkcolumn. I want to put some client-side scripting on this column, specifically a OnMouseOver event. Here is the code for the datagrid: <form id=&quot;editDataGrid&quot; runat=&quot;server&quot;> <ASP:DATAGRID...
  17. TPetersonFlorida

    Another linked server question...

    Once i have a linked server setup up. How do i join one table from my sql database to another table in my linked server???? thanks in advance
  18. TPetersonFlorida

    Need help with linked servers!!!

    disregard that last post. i figured out that error. But i do have another question. How do i link a table from my SQL Server database to a table in the linked server database????
  19. TPetersonFlorida

    Need help with linked servers!!!

    Thanks. I did exactly what you had given and it added the server BUT when you go to view the tables it gives the following error: Error 7399: OLE DB Provider 'Microsoft.Jet.OLEDB.4.0' reported an error. OLE DB error trace [OLE/DB Provider 'Microsoft.Jet.OLEDB.4.0' IDBInitialize::Initialize...
  20. TPetersonFlorida

    Need help with linked servers!!!

    Could someone please tell me how i can set up a linked server to an MS Access 2000 database??? Thanks a million in advance.

Part and Inventory Search

Back
Top