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 SkipVought 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. warren2600

    Help with ADO erro and Stored Proc

    Thanks for the example. I still am not getting a result of 1(successfull) from my stored proc. I get the 0 , but not 1. Yes i did response.write my sql statement yes i did test the sp in query analyzer. Here's the interesting part... the SP runs successfully everytime. I've response.write the...
  2. warren2600

    Help with ADO erro and Stored Proc

    the stored proc works fine. i've tested it with query analyzer. I will worry about the structure later. Right now i need to return whether or not the proc was successfull to my asp page with either a 1 or 0. thanks for the input. i'll keep searching.
  3. warren2600

    Help with ADO erro and Stored Proc

    i've written a simple stored proc in SQL SERVER and am running it with ASP. The proc runs fine in Query Analyzer, returning the correct number depending if the company exists or not...1 = not exists, 0 = exists. However I'm getting the following error ONLY when the result is 1..??? ADODB error...
  4. warren2600

    capture drop down value

    great, Thanks Genimuse just double checking
  5. warren2600

    capture drop down value

    sure...sorry. i'm just used to object.value just wanted confirmation that i always have to use submit if i want to capture values of objects in asp since it's server side scripting. thanks, warren
  6. warren2600

    capture drop down value

    so the only way to capture the value is with a submit button?
  7. warren2600

    capture drop down value

    I tried to search for this but couldn't find it. Anyway, i'm new to asp and trying to pass the 'value' of a drop down box. here's my question: how do you capture the value of the drop down box? do i have to use a submit button? thanks, warren
  8. warren2600

    running command

    here is some code which works in a .bat file. i can call it and capture the output. my question is this...can i skip the .bat file altogether and just encorporate this into my vb app using shell? here's my bat file: @echo off for /f "skip=3 tokens=4" %%a in ('reg.exe query...
  9. warren2600

    Show form

    oops, thanks for the help matt
  10. warren2600

    Show form

    I'm having a small problem showing a form while a function is being run. The form starts to show...i can see the titlebar, but the actual form is just transparent. here is a sample of my code. Me.Hide frmload.Show 'the form is transparent and labels don't show Call load_details 'this runs a...
  11. warren2600

    not adding up

    need another pair of eyes to check out my code below. i have several check and text boxes which calculate the size of a folder. All of loops work, except one. All of the if statements are the same. i've added another variable in there just for the hell of it, and it calculates it correctly. what...
  12. warren2600

    subscript out of range

    duh thanks
  13. warren2600

    subscript out of range

    Can someone take a look at my code. i'm working on several different projects and my brain hurts. Private Sub Command1_Click() Dim fso As New FileSystemObject Dim f As Folder, sf As Folder, path As String Dim server As String Dim i As Integer Dim...

Part and Inventory Search

Back
Top