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

  1. BeginnerProgrammer

    SMTP VIRTUAL SERVER

    Is there a way to progrmatically start and stop a localhost smtp virtual Server with code? What I want to do is have my module start the virtual server, send some emails, and then stop the virtual server.
  2. BeginnerProgrammer

    Array question for VBA

    Thanks. Unfotunately there are 58 employee ids.
  3. BeginnerProgrammer

    Array question for VBA

    myemp is a variable that gets set each time it loops.
  4. BeginnerProgrammer

    Array question for VBA

    Problem is, myemp changes with each loop. Thanks,
  5. BeginnerProgrammer

    Array question for VBA

    Got it, thanks. I changed the Output to Append.
  6. BeginnerProgrammer

    Array question for VBA

    This is only writing the first occurence. I need for it to continue to write to the text file for each occurence that it encounter within the array. I know that it is looping through the array because I had it writing individual files for each element of the array. Now I want it to write one...
  7. BeginnerProgrammer

    Array question for VBA

    I am using the following code to read a text file into an array and need to write certain elements to a separate text file. Please help. zoscarray = Split(mytextfilestring, "--------------------------------------------------------------------------------") I know how to identify the array...
  8. BeginnerProgrammer

    Onclick - Session Variable

    kaht you are awesome. Thanks, this helped me with a validation issue.
  9. BeginnerProgrammer

    Chart statistics with asp

    Sorry, this is assuming you are using Front Page.
  10. BeginnerProgrammer

    Chart statistics with asp

    Not 100% ASP but worked for me. Insert a web component and choose Spreadsheets and charts and then choose Office Chart. Click Data typed into a data sheet and then click the Data Sheet button to edit. Type your category names and put some values next to them. This will create your chart...
  11. BeginnerProgrammer

    Request.QueryString problem

    If that doesn't work try: Myqrystr=request.querystring("dig") SQL1 = "SELECT * From tbl_Business" SQL1 = SQL1 & " Where tbl_Business.[Street Number] = " & "'" & Myqrystr & "'"
  12. BeginnerProgrammer

    Request.QueryString problem

    Try this: SQL1 = "SELECT * From tbl_Business" SQL1 = SQL1 & " Where tbl_Business.[Street Number] = " & "'" & Request.QueryString("dig") & "'" Hope this helps.
  13. BeginnerProgrammer

    encrypted password

    If I do something like this and if ASP is executed on the server, then aren't I sending the password to the server in plain text?
  14. BeginnerProgrammer

    ADODB problem

    Might try making sure you do a rs.movefirst before the Loop. Hope this helps.
  15. BeginnerProgrammer

    How to Force new line in MsgBox?

    Try this. MsgBox ("This is a test" & Chr(13) & "This is the second line.")
  16. BeginnerProgrammer

    Carriage Return: chr(13) in an email

    That doesn't work either AtomicChip.
  17. BeginnerProgrammer

    Carriage Return: chr(13) in an email

    I am pre-populating an email with ASP using SendTo but the carriage return is not working. Can someone please help. Thanks,
  18. BeginnerProgrammer

    DOS Bat File Need Help

    You can try this wherever you are refering to the path. Dim WrkDrv As String Dim Path As String Dim mylen As Integer Dim filelength As Integer Path = CurrentDb.Name filelength = Len(CurrentProject.Name) mylen = Len(Path) - filelength WrkDrv = Left(Path, mylen) This should give you the exact...
  19. BeginnerProgrammer

    Remove "You are about to append 1 row(s)" msgbox

    I usually do this by running all my queries with a macro. In the macro I turn warnings off and then back on. Hope this helps

Part and Inventory Search

Back
Top