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

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

    Set vs Select to assign local variables?

    When do you use Set to assign a value to a variable, and when do you use Select? Set @var1 = 50 or Select @var1 = 50 What if you need to result of a query, like this one: Select @var1 = count(*) from table1
  2. ulwitch

    Need help with Excel Functions

    The following is code that works in VBA that utilizes the Excel function "Median" from an Access module... Dim objExcel As Excel.Application Dim dTemp As Double Set objExcel = New Excel.Application dTemp = objExcel.Application.Median(1, 2, 5, 8, 13) .................. I need to be...
  3. ulwitch

    I am having trouble referencing val

    I am having trouble referencing values in Frames. <FRAMESET COLS=35%,65%> <FRAMESET rows=30%,70%> <FRAME NAME=LEFT src=Task6.asp frameborder=0 scrolling=no> <FRAME Name=BottomLeft Src=Task6Bottom.asp frameborder=0> </FRAMESET> <FRAME NAME=RIGHT src=Task6Right.asp> </FRAMESET> If the...
  4. ulwitch

    Oracle 8.0.5 Client and MDAC Installation Problem

    I installed MDAC 2.7 on a Windows 98 second edition machine that was already running Oracle 8.0.5 client. When the machine rebooted from the installation, I was able to create a DSN using msorcl32.dll, and run my application. When I logged off, and let another user login to try the...

Part and Inventory Search

Back
Top