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 strongm 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. bdmoore

    SMTP Problem - IP Name Possibly Forged

    Hi, I have a Windows 2k3 Web Edition server (dedicated server with a hosting company) running a few sites some of which send auto generated emails to customers. I occasionally get delivery failures for these messages and spotted a clue in one of them today - the message was rejected with the...
  2. bdmoore

    date variable in sql call

    Paul, Try encoding your date variable using the following function before passing it to SQL: function EncodeDateForSQL(dDateVar) EncodeDateForSQL = "'" & Day(dDateVar) & "-" & _ MonthName(Month(dDateVar), true) & "-" & _ Year(dDateVar) &...
  3. bdmoore

    Stop application closing on log off

    Hi, I'm writing an NT service in VB6 (using the NTSVC.ocx control). The service installs, starts and stops fine, and I've got a user interface for settings which is accessed via an icon in the system tray which again works fine. The problem I have is that when the workstation logs off...
  4. bdmoore

    Getting the USER ID of the user

    Joe, Try Request.ServerVariables("REMOTE_USER") - I had a few problems when trying to pick up user NT accounts and this was the only one that worked! Regards, Ben
  5. bdmoore

    Storting an Apostrophy

    Eric, You need to double up the apostrophes in the string and then they will be encoded properly. Try the following: value = <%= &quot;'&quot; & Replace(Session(&quot;PastCoName1&quot;), &quot;'&quot;, &quot;''&quot;) & &quot;'&quot; %> Alternatively you could do this when storing the...
  6. bdmoore

    &quot;Calling&quot; Javascript

    Hi, Try this: (asp code....) %> <script language=JScript> document.title='<%= strTitle %>' </script> <% (more asp code....) where strTitle is the title you want to use, defined somewhere further up in your code.
  7. bdmoore

    DSNs

    Gary, You will only need to set up one DSN on the server. Re-create the DSN under System DSNs in the ODBC Control Panel, ensuring that the database you are using is on the same server or one networked to it. As the ASP script is run on the server and not the client you will not need to make...
  8. bdmoore

    Registering already installed programs on an ME/2000 Pro dual os

    I installed Win2K professional as a second OS alongside Win ME, and so had to re-install software I wanted to use in Windows 2000, however some software (such as MS Office) came pre-installed on my pc and I didn't get the installation disks. Does anyone know of any way that I can register these...

Part and Inventory Search

Back
Top