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 bkrike 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 ReneV

  1. ReneV

    how to delete certain file information

    yes, you can do it via filesystemobject. the help for that can be found at msdn.microsoft.com.. what you'd generally do is open the file for read, open a tempfile for output and write only the stuff from the source that you want to keep. then delete (or backup) the sourcefile, replacing...
  2. ReneV

    Server.CreateObject reverse?

    Unfortunately, this is simply not true, or at least not in IIS4... It returns '9' for me, which only tells me that it's an object by looking at the VarType help.
  3. ReneV

    sql 7

    without you posting the code that generates the error, we can't help you.
  4. ReneV

    how to make a search engine

    this is a very difficult problem you're trying to solve. first you need to think what you want to index on the internet. Then think on how you're going to store that, and then think about how your clients are going to access your search-engine. btw; yahoo and altavista do very different...
  5. ReneV

    How can I send a fax using ASP.

    You'd need a COM object that allows you to do that. I don't know of any, but there a plenty of commercial COM repositories on the web these days. try www.componentsource.com as a start.
  6. ReneV

    how to make a search engine

    Your question is too generic. But to give you some clues: * You'd need to look at the data you want to have searchable * determine who your clients are and what they hope to find in the data * determine how much the data changes + possibly have 2 repositories if you're dealing with lots of...
  7. ReneV

    ASP-DB-Murugesan

    so whats the question??
  8. ReneV

    Server.CreateObject reverse?

    Hi. I'm wondering how to determine the type of a object-variable at runtime. I would like to get the class name, if possible. for instance: dim oObj set oObj = server.createObject ("ADODB.Recordset") dim sName sName = GetObjectType (oObj) I'd like sName to read...
  9. ReneV

    How can i do a window in VBSCRIPT????

    &lt;%<br>&nbsp;&nbsp;do_something_in_asp ()<br><br>%&gt;<br>&nbsp;&nbsp;&lt;SCRIPT Language=&quot;JavaScript&quot;&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp;var blah = new.window<br>&nbsp;&nbsp;&lt;/SCRIPT&gt;<br>&lt;%<br>&nbsp;&nbsp;&nbsp;asp_again ()<br>%&gt;<br><br>check a javascript site for the...

Part and Inventory Search

Back
Top