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: zzzzzeke
  • Content: Threads
  • Order by date
  1. zzzzzeke

    stripping string

    i have a string like: \\folder\folder\folder\folder\folder\folder\210000\213790\file911723v.jpg i would like to strip it down to return just 911723. would my best be using the REPLACE function? Thanks in advance
  2. zzzzzeke

    vertically align entire content of page

    I have a dynamic page that I want to be centered vertically in the broswer. I've tried v-align(ing) the outmost table by using code in the HTML and CSS with no luck. I've also tried putting the parent table in a div tag and v-aligning that...NO LUCK! Only thing that I've found to work was...
  3. zzzzzeke

    repeater control help

    i need help using a repeater to basically simplify the following code: Case "district" distance = 5 Dim schoolDistrict As WTL.NeighborhoodData.SchoolDistrict() schoolDistrict = _neighborhood.GetSchoolDistricts(distance)...
  4. zzzzzeke

    system.diagnostics.process help

    i'd wish to view the error i'm receiving when i'm trying to run an exe on the server that writes a file to the server. where i'm getting hung up is if i don't have rights to the exe from the aspnet user, or if i don't have write access to the folder where the file will be written. i'm also...
  5. zzzzzeke

    brain fart......whats wrong with insert statement?

    string username = txtusername.ToString(); string password1 = txtpassword.ToString(); string email = txtemail.ToString(); string query = "insert into [User] (UserName, Password, Email) VALUES (" + username + ", '" + password1 + "', '" + email + "')";
  6. zzzzzeke

    passing data into SP from DDL

    do i have to use parameters to pass data into a SP? i'm trying to take a date value from a drop down list and running a query based on that date.
  7. zzzzzeke

    round and sum

    can you round a sum SELECT payment_method, SUM (subtotal) FROM orders group by payment_method order by payment_method
  8. zzzzzeke

    help with code snippet

    what exactly is this all doing? declare @Total int, @counter int, @cost int, @PartNum int declare myCursor Cursor Local for select PartNum, cost from Inventory open myCursor select @total = count(PartNum) from inventory set @counter = 1 while @counter <= @total Begin fetch...

Part and Inventory Search

Back
Top