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!

Search results for query: *

  • Users: mijulie
  • Content: Threads
  • Order by date
  1. mijulie

    I'm trying to open file for viewing when button clicked!

    This is my code, I don't get any errors but nothing opens! Does anyone see the problem? Thank you in advance if you can help, Mijulie <HTML> <HEAD> <H1>SIT_TEST_CIT:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Build Validation</H1> <SCRIPT LANGUAGE=&quot;VBSCRIPT&quot;> sub...
  2. mijulie

    Anyone know if u can put values from a textfile back in to a form?

    I am currently inputting values into a form which then outputs results to a textfile. I'm wondering if u can recall the values from the textfile and have them populate the fields in the form. Is it possible??
  3. mijulie

    How do u create a word doc (as opposed to opening)?

    If this is the code for opening an existing doc, anyone know what command i need to create a doc? Set Word = CreateObject(&quot;Word.Application&quot;) Word.Visible = TRUE Word.Documents.Open(&quot;C:\My Documents\myfile.doc&quot;)
  4. mijulie

    How do I create a file even if file of the same name exists already?

    The data entered in the form is written to a textfile based on a combination of 2 variables. It is possible that there could be more than one file with the same 2 variables as another. If I save a file that already has the name then it overwrites the old one. Anyone know how to save every...
  5. mijulie

    checkbox value = on ,even when not checked! Why is this??

    This is the code for output to my textfile, filetxt.WriteLine &quot;Tekelec: &quot;&BuildForm.tLandline.Value filetxt.WriteLine &quot;D & D: &quot;&BuildForm.dLandline.Value filetxt.WriteLine &quot;Bearer Data: &quot;&BuildForm.bLandline.Value filetxt.WriteLine &quot;SoftShelf...
  6. mijulie

    How do u pass a variable(not just a value) to a file ??

    This is my page below. I want the value entered for Binary to show up in the text file but when i hit the Save button, the only thing that shows up is this; [object] Does anybody know the correct syntax or have any idea what i'm doing wrong? <HTML> <HEAD> <H1><CENTER>BUILD...
  7. mijulie

    Any VBScript guys out there? i need some help!

    I got this from the FAQ on reading/writing to textfiles but when i insert it in my code, i get a runtime error pointing to Server.MapPath. Does anyone know exactly what i should put there.:-( dim fsoObj, sFileName, objtextFile sFileName = Server.MapPath(&quot;writeToThisFile.txt&quot;) set...
  8. mijulie

    How do i write to a text file using ASP &amp; VBScript?

    This below is my ASP page. Does anybody know what lines i need to write to a file? All suggestions welcome, thanks in advance, J <%@ LANGUAGE=VBScript %> <% strTitle = Request.Form(&quot;Title&quot;) strBinary = Request.Form(&quot;Binary&quot;) strBuild = Request.Form(&quot;Build&quot;)...

Part and Inventory Search

Back
Top