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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by smbure

  1. smbure

    Sql record being inserted twice. Don't want it to.

    This looks fine...doesn't seem as if two inserts should be happening. Has this been resolved? gettin' jiggy wid' it -- smbure
  2. smbure

    Include File Returning Error

    What does the include tag look like? It should be one of these: <!-- #include virtual=&quot;/IncludeFiles/brkDBConn.inc&quot; --> OR <!-- #include file=&quot;IncludeFiles/brkDBConn.inc&quot; --> gettin' jiggy wid' it -- smbure
  3. smbure

    java's stringtokenizer in asp

    If u are using vbscript- CommaDelimitedResults = &quot;1,2,3,4,5&quot; NewArray = Split(CommaDelimitedResults, &quot;,&quot;) gettin' jiggy wid' it -- smbure
  4. smbure

    Joining 3 tables

    Would this work? &quot;SELECT Catalogs.Catalog_Reference, Catalogs.Catalog_Month, Catalogs.Catalog_Year, ProductModels.ProductModel_Model, CatalogTypes.CatalogType_Description FROM ProductModels INNER JOIN Catalogs ON Catalogs.Catalog_ProductID = ProductModels.ProductModel_ProductID...
  5. smbure

    To COM or not to COM?

    I have two waring factions, one for com, and another for pure asp. I personally like the n-tier approach. As far as application performance only, which is faster??? I have done tests on small scales that prove the component isn't much faster at all. I have over a million contact records in...
  6. smbure

    Interesting error

    Are yo positive ODBC has drivers for access 97...check this at Microsoft. gettin' jiggy wid' it -- smbure
  7. smbure

    Need Some Help ASAP!

    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cdo/html/_denali_newmail_object_cdonts_library_.asp This may help u... gettin' jiggy wid' it -- smbure
  8. smbure

    Prompt for Attachment from ASP/WEB page (clarification)

    Try File.SaveToDisk Server.MapPath(&quot;/UploadedFilesDirectoryInWebFolder&quot;) See if the permissions are right... gettin' jiggy wid' it -- smbure
  9. smbure

    Refresh Just Once

    I don't understand the goal. Could you explain how someone gets to this page, and what you must do upon back()? gettin' jiggy wid' it -- smbure
  10. smbure

    How to use a complex range in a complex IF statement

    Actually...they need to be OR, sorry if((RS(&quot;AssetNum&quot;).value = &quot;87500&quot;) || (RS(&quot;AssetNum&quot;).value >= &quot;88800&quot; && RS(&quot;AssetNum&quot;).value <= &quot;88900&quot;) || (RS(&quot;AssetNum&quot;).value >= &quot;85000&quot; && RS(&quot;AssetNum&quot;).value...
  11. smbure

    How to use a complex range in a complex IF statement

    Wouldn't it be (if all conditions were and): if((RS(&quot;AssetNum&quot;).value = &quot;87500&quot;) && (RS(&quot;AssetNum&quot;).value >= &quot;88800&quot; && RS(&quot;AssetNum&quot;).value <= &quot;88900&quot;) && (RS(&quot;AssetNum&quot;).value >= &quot;85000&quot; &&...
  12. smbure

    !!!! Please Help - Response.ContentType = &quot;application/vnd.ms-word&quot;

    Wushutwist- I agree 100%. The problem is that I have images on the server that I need to embed in the word doc....any suggestion??? gettin' jiggy wid' it -- smbure
  13. smbure

    !!!! Please Help - Response.ContentType = &quot;application/vnd.ms-word&quot;

    When I do this - <%Response.ContentType = &quot;application/vnd.ms-word&quot;%> <html><head></head><body>Hi Mom!</body></html> The results in Word 97 display the html code instead of just &quot;Hi Mom!&quot;. This works fine with Office 2000 & Office XP (2002) Anyone???? gettin' jiggy wid'...
  14. smbure

    Outlook web components

    I have a portal software app. that uses the oulook web components and it requires the browser's security settings to be set to &quot;low&quot;. Anyone know how to easily make these components &quot;trusted&quot;? thanks gettin' jiggy wid' it -- smbure

Part and Inventory Search

Back
Top