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 Chriss Miller 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 Webflex

  1. Webflex

    Bloody _vti's...

    Thanks all, needed it in 2 places for each item in folder.SubFolders If Instr(1,item,"_vti")>0 Then Else ListFolderContents(item.Path) End If next 'Display a list of files. for each item in folder.Files If Instr(1,item,"_vti")>0...
  2. Webflex

    Bloody _vti's...

    Thanks, tried that in a few places with variable results but not the desired one, any chance you could comment it in the code? TIA
  3. Webflex

    Bloody _vti's...

    I picked up this useful code from brainjar to parse a set of folders and display hyperlinks to the contents. It does this really well but also includes the bloody _vti folders that FrontPage leaves lying around in the results. I know I need to add someting like If InStr(1, objItem, "_vti"...
  4. Webflex

    strAutoLogon

    Yes it seems to, the AD users who were reporting problems can now access and the existing NT ones too, many thanks.
  5. Webflex

    strAutoLogon

    Thanks, only place so went for the brute force option, it seems to have done the trick.
  6. Webflex

    strAutoLogon

    Yeah tried snitz, nothing there, I'm thinking we'll just have to take the pain until we finish the migration.
  7. Webflex

    strAutoLogon

    I'm running a copy of Snitz forum. in a mixed mode (and migrating) NT/AD domain. The forums utilise auto logon which works for NT users with this NT Set strNTUserInfo = GetObject("WinNT://"+strNTUser) strNTUserFullName=strNTUserInfo.FullName and for AD users with this AD Set strNTUserInfo...
  8. Webflex

    That old apostrophe problem

    Hmm, thanks, that threw an error like this (search string is hind) Microsoft VBScript runtime error '800a01a8' Object required: '[string: "hind"]' /adsresults_results.asp, line 36
  9. Webflex

    That old apostrophe problem

    I know I need to add in some code (lname = replace(lname, "'", "''")) to handle apostrophe's in input fields but for the life of me cannot work out where to do it in this Macromedia generated code. Help.... TIA <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <% Response.Expires = 60...
  10. Webflex

    Mail FormField Order

    Thanks, I'll give it a try
  11. Webflex

    Mail FormField Order

    Hi I am mailing a form using the JMail component, when the form is sent the form fields are in apparently random order. At first I thought it was because I was using a table for layout however after removing the table the results are still the same.......? I have appended the form, the...
  12. Webflex

    Remove Space / Build Name

    perfect, thanks, works a treat
  13. Webflex

    Remove Space / Build Name

    Hi I'm trying to build an output starting with AUTH_USER that consists of First Initial and Surname without any space, for example 'Alexander Smith' becomes 'ASmith' not 'A Smith' As implemented below I get 'A Smith' and have problems with the length of the surname...
  14. Webflex

    First Initial Last Name

    Thnks, unfortunately a bad choice of mail naming convention means the address is not entirely predictable, in about 95% of cases it is.
  15. Webflex

    Sendmail / JMail Capture return EMail Address

    Quick reply, it's msg.From in the iteration I have, however it works, many thanks.

Part and Inventory Search

Back
Top