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 TouchToneTommy 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. victork

    Data Connection problem with SQL2005

    Installed SQL2005 Developer (default instance) on XP development machine with no problems. SQL server DB engine, SSRS, SSAS etc all run fine on his machine. Problem is trying to create a database connection to the server with a Visual Interdev project. The server (using localhost or server...
  2. victork

    SQL 2005 & SQL2000 Servers

    2005 Newbie Question: Installed 2005 Enterprise (Trial License) on my Dev machine that is already running SQL 2000 to get up to speed on 2005 and prepare for 2008. When running Mgmt Studio, I can register & bring up the existing SQL 2K Server instance with all the dbs etc and run everything in...
  3. victork

    SP Parameters

    jkb3 - Thanks, I'll give it a shot....
  4. victork

    SP Parameters

    How can one pass a parameter into a stored procedure where the parameter is an indirect reference, not a value itself... For example, in the SP, we would like to receive a parm, defined as @strList varchar(100), which will be in the form of various values....' '66', '67', '68' '...so on. The...
  5. victork

    T-SQL Debugger

    Anybody know how to get the Stored Procedure Debugger in VB installed and running? I have read an article in SQL Server mag about the SQL Stored Procedure debugger in VB6.0. To invoke it, you are supposed to go to the Add-Ins menu and select it from the list. In my Add-Ins menu, it is not...
  6. victork

    Setting focus to a textbox on a form

    Use a javascript function that gets called in the body tag of the document. Add this to the body tag: Onload="funcFocus()" (call it whatever you want). Then create the funcFocus() as: function funcfocus() { self.focus();document.frmname.fieldname.focus(); } Substitute the name...
  7. victork

    Using Session Vars

    Mark, thanks for the response....we have had a discussion about this at work and a couple of the senior pgmrs claim that IIS keeps track of the session through sending cookies back and forth. Now these are not necessarily cookies in the traditional sense, however, there is data stored on...
  8. victork

    Using Session Vars

    If you are using session vars in your asp code, is it required that the user have Cookies enabled on the browser? In other words, does IIS use cookies to track the session vars between requests (since we are talking about a stateless connection)?? Or does IIS use some kind of internal...
  9. victork

    View in Browser not working anymore

    After using VI for months on NT4.0 without major problems, now it seems that using 'View in Browser' displays the 'Save to Disk...' dialog. Has something changed in IIS, and if so, what do I need to reset to allow viewing to work again? I am not a NT guru, obviously, and appreciate any...
  10. victork

    Is there someway of passing values from vb script to javascript

    Actually there is a simple method I used in various forms on my site. All you have to do is create a hidden text field in a form. Then in your initial asp script at the top of the page, get whatever value you need from your recordset and place this value in the hidden field with standard...

Part and Inventory Search

Back
Top