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

  1. Bullschmidt

    Automating with VBScript

    Here's a handy resource: Could I get some help working with files using FileSystemObject? http://classicasp.aspfaq.com/files/directories-fso/could-i-get-some-help-working-with-files-using-filesystemobject.html Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer...
  2. Bullschmidt

    HTTP post integation

    Also here are some short database examples. Samples http://www.asp101.com/samples Has some short database examples. Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips
  3. Bullschmidt

    CDOSYS Emails Working To All Domains Except My Own

    I'm thinking that from the Web host's point of view they are still hosting the e-mail addresses even though from a DNS point of view they are no longer. So somehow on the Web host be sure to completely delete the e-mail stuff and to do this you may have to start a tech support ticket... Best...
  4. Bullschmidt

    ADODB.Stream open all files in a folder

    Here is a related article: ASP File Explorer by Adrian Forbes - 5/27/2003 http://www.aspfree.com/c/a/ASP-Code/ASP-File-Explorer Uses ADODB.Stream to open file from protected folder. Gets the file extension's MIME type from the registry which of course could probably not be done on a shared Web...
  5. Bullschmidt

    Best way to password protect a file

    Yes and here's a related article: ASP File Explorer by Adrian Forbes - 5/27/2003 http://www.aspfree.com/c/a/ASP-Code/ASP-File-Explorer Uses ADODB.Stream to open file from protected folder. Gets the file extension's MIME type from the registry which of course could probably not be done on a...
  6. Bullschmidt

    ASPEmail Assistance

    ASPEmail Manual http://www.aspemail.com/manual.html Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips
  7. Bullschmidt

    updating an mdb field via drop down box in asp

    ' Remove leading char (which is a comma). If MyVar <> "" Then MyVar = Right(MyVar, Len(MyVar) - 1) End If Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips
  8. Bullschmidt

    display popup alert before redirect

    I tried to do that years ago and finally decided it couldn't be done, but if I HAD to have it done then somehow it would have to happen with code on the new page... Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design...
  9. Bullschmidt

    Formatting Output

    And for more on FormatNumber() and other VBScript functions: Visual Basic Scripting Edition Functions http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/adaabd2b-250e-4040-9eaa-127f5a41f8b9.asp Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database...
  10. Bullschmidt

    Best way to render massive HTML grid

    HowardMarks wrote: Sheco wrote: I agree. And don't know if this concept would apply at all: Classic ASP Design Tips - Multiple Records in Each Row http://www.bullschmidt.com/devtip-multiplerecsineachrow.asp Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer...
  11. Bullschmidt

    dynamic links

    And for a related link: Classic ASP Design Tips - QueryString http://www.bullschmidt.com/devtip-querystring.asp Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips
  12. Bullschmidt

    ASPSimpleUpload help

    And here is a pure ASP (i.e. no components) resource for letting the user upload one or more files which is something that was unfortunately not built into ASP: ASP File Upload Using VBScript by John R. Lewis http://aspzone.com/articles/160.aspx The above free code has worked well for me and...
  13. Bullschmidt

    Stacked Bar Chart - Any III Party control available?

    I've got a free barchart (although not stacked) ASP class (no components) downloadable from my Web site at http://www.Bullschmidt.com/Barchart.asp to help turn data stored in a table (or SQL statement) into a barchart. To create a bar chart on a Web page you would include another Web page...
  14. Bullschmidt

    how to start

    And perhaps this may hopefully give you some ideas: Web Database Concept http://www.bullschmidt.com/concept.asp Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips
  15. Bullschmidt

    Data from database unable to display when perform searching

    And for a related link: Classic ASP Design Tips - Search Criteria on Multiple Fields http://www.bullschmidt.com/devtip-searchcriteria.asp Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips
  16. Bullschmidt

    Inner join works in Access database but not in ASp

    And perhaps this may hopefully give you some ideas: Classic ASP Design Tips - Search Criteria on Multiple Fields http://www.bullschmidt.com/devtip-searchcriteria.asp Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP...
  17. Bullschmidt

    Date Script

    And for a related link: Using VBScript's Date Functions http://www.4guysfromrolla.com/webtech/110398-1.shtml Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips
  18. Bullschmidt

    ASP and DLLs

    One usually uses ADO and FSO without also using .dll files but of course one could use both if desired. Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips
  19. Bullschmidt

    Dynamic List Boxes

    And perhaps this may hopefully give you some ideas. It's got a downloadable sample and does retain values after the post back (although it is admittedly somewhat complicated): Classic ASP Design Tips - Dependent Listboxes http://www.bullschmidt.com/devtip-dependentlistboxes.asp Best regards...
  20. Bullschmidt

    Permission Denied - by why?

    You may want to check this out: http://www.aspfaq.com/search.asp?q=800a0046&x=12&y=9 Best regards, -Paul www.Bullschmidt.com - Freelance Web and Database Developer www.Bullschmidt.com/DevTip.asp - Classic ASP Design Tips

Part and Inventory Search

Back
Top