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 Mike Lewis 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. KraGiE

    limiting left joined rows

    SELECT u.NameOfUser, Email = (SELECT Top 1 EmailAddress From UserData Where [UserID] = u.[UserID]) FROM User u Order By u.NameOfUser GO .NET Developer/Contracting Consultant. <a href=&quot;http://www.inklass.com&quot;>InKlaSs.com</a>
  2. KraGiE

    Concatenating Problem

    SELECT [Reference] = (Source + ' ' + Source2) From Table Where... .NET Developer/Contracting Consultant. <a href=&quot;http://www.inklass.com&quot;>InKlaSs.com</a>
  3. KraGiE

    passing multiple numeric values as a parameter

    GEEZ! how lame are you guys being? heh EXECUTE ('SELECT * FROM TABLE WHERE FIELD IN ' + @Param + ') Looping works, but will still need that execute. .NET Developer/Contracting Consultant. <a href=&quot;http://www.inklass.com&quot;>InKlaSs.com</a>
  4. KraGiE

    Text to numeric in a query

    Cast it to Float. That's like an end all cure all. .NET Developer/Contracting Consultant. <a href=&quot;http://www.inklass.com&quot;>InKlaSs.com</a>
  5. KraGiE

    .NET Materials

    I agree. I have that book, and it's absolutely excellent!
  6. KraGiE

    Text boxes losing data

    yeah, I'm assuming you have something that does something like textbox.text = &quot;&quot; or you're refreshing the form.
  7. KraGiE

    Data binding and multiple sql 2000 tables

    Personally, I think writing it in code is much better. Since you'll have the ability to alter the way things cooperate. I always use code just to eliminate disgusting hatred toward objects. :)
  8. KraGiE

    Why waste your time &amp; money......

    Honestly, Microsoft can't demand you to show your experience background before you get certified. They don't conduct the tests. And imagine the workload of employees to verify each resume that goes into their offices. The tests will end up being way more expensive than necessary. I agree...
  9. KraGiE

    Calling ASP script results in 404 Error

    testing your post. hope this works, and isn't a waste of my time.

Part and Inventory Search

Back
Top