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

  • Users: iwannano
  • Order by date
  1. iwannano

    load part of the page and display it before the entire page is d/led

    could try adding response.end at desired stoppoint (temporarily).
  2. iwannano

    java script and fox 26 for front end

    some web resources include www.4guysfromrolla.com & www.15seconds.com, but there's a whole bunch of other .asp websites too. books are essentially outdated by the time they're printed, and since .asp is being redone consider website resources.
  3. iwannano

    RETURNING A DIRECTORY PROGRAMMATICALLY

    refer to the DIR function (see Helps)
  4. iwannano

    convert numeric to char

    you can also utilize the STUFF function - here's a query example: declare @a tinyint declare @b char(2) select @a = 5 select @a select @b = LTRIM(STR(@a)) select @b select @b = STUFF(@a, 1, 0, "0") select @b ---- 5 ---- 5 ---- 05
  5. iwannano

    Help - SELECT SQL - COMMAND LINE TOO LONG

    also, if too many columns you can do 2 selects into different cursors, but have both selects include field(s) that can link the cursors together. then, just do a select from the 2 cursors to get your result set (join them on the link fields, of course).
  6. iwannano

    Help - SELECT SQL - COMMAND LINE TOO LONG

    believe that limit can't be overriden perhaps you could whittle it down via a series of selects... select * from maintbl into cursor a where (some of the criteria) select * from a where (some more of the criteria) select * from b where (rest of the criteria) then, just use the info from b.
  7. iwannano

    java script and fox 26 for front end

    Here's an example of how to connect fox2.6 table via .asp code, using the VFP driver (you can also put javascript in your .asp/html, to perform edits): 'Create on-the-fly connect to VFP driver Set MyConn = Server.CreateObject("ADODB.Connection") 'The Connection string will point at...

Part and Inventory Search

Back
Top