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. Danp129

    Can I put a URL with a querystring on the end in a SSI?

    No, but you could use server side AJAX to request the html of another page. Here is a good start: http://classicasp.aspfaq.com/general/how-do-i-read-the-contents-of-a-remote-web-page.html IIRC, there is an issue with the serverxmlhttp object not allowing you to relay to a file in the same...
  2. Danp129

    Excel Find & Replace Last n Characters in a Cell

    try this Dim cell As Range Dim arChange() As String Dim i As Long arChange = Split("Ne Se Sw Nw") For i = 0 To UBound(arChange) For Each cell In Range("n1:n" & Cells.SpecialCells(xlCellTypeLastCell).Row) If Right(cell, 2) = arChange(i) Then cell = Left(cell.Value, Len(cell.Value)...
  3. Danp129

    Regular Expressions

    As I had hoped for in the past thread222-867395 I just ran across a program made by the guy that makes "The Regulator" that helps you test regular expressions. The new program is called Regulazy I haven't played with it much but thought I'd share.
  4. Danp129

    R7 Auto Attendant and Conferencing Q's

    Thanks guys, I will probably get the Partner and use our 800 conf service if we need more than 2 outside lines conferenced in. Our current phones only allowed conferencing 1 extension into any call which was the main issue, I was just hoping for more flexability but considering it sounds like...
  5. Danp129

    R7 Auto Attendant and Conferencing Q's

    If I use IP Office with 8 analog lines will I be limited to 2 or 8?
  6. Danp129

    R7 Auto Attendant and Conferencing Q's

    Ok, thanks for clearing that up. Are you familiar with any other brands that might be able to do about 4 outside 4 inside?
  7. Danp129

    R7 Auto Attendant and Conferencing Q's

    Hi, I'm looking for a system that can do the following: Different Auto ATT messaging/routing options depending on what line call came in on. ie 555-1234 will say "Thank you for calling ABC" and 555-4321 will say "Thank you for calling XYZ") I also need to be able to conference quite a few...
  8. Danp129

    Outlook message prompting user for data

    Try this: sDate = InputBox("What is today's date?", "Infomation needed") sIcode = InputBox("What is the item code?", "Infomation needed")
  9. Danp129

    Get Installed Programs List

    Use the registry just like Add/Remove programs does. If you're curious what add/remove programs reads from the registry, download regmon and open Add/Remove programs while it's running...
  10. Danp129

    Scanning files

    I wouldn't expect anything faster than XP's search can scan. You can add a sleep or wait statement in the loop to lessen the I/O load, but it will make it take longer to scan of course. You could also try Windows Desktop Search and query the index using ADO.
  11. Danp129

    Database Connection Problems

    What does this say? <% set cnTest = createObject("ADODB.Connection") if Err.Number<>0 then Response.Write "Microsoft Data Access Components is not installed" else Response.Write "You have Microsoft Data Access Components version " & cnTest.version & " installed." end if %>
  12. Danp129

    printing tif files

    I would install IrfanView and use command line options to print. Example for print: i_view32.exe c:\test.jpg /print => Open 'c:\test.jpg', print the image to default printer and close IrfanView i_view32.exe c:\test.jpg /print="Printer Name" => Open 'c:\test.jpg', print the image to...
  13. Danp129

    Formatting Email String Problem

    Try and use server.URLEncode() or server.HTMLEncode() without your hex conversions.
  14. Danp129

    Authentication Required needed locally - but not on the 'net

    When you CREATE/COPY a file into a folder the file inherits the permissions of the folder. If you MOVE a file into a folder it will retain the settings it had before the move. You could put your db into a subfolder of your webroot and set the permissions on the folder to the permissions needed...
  15. Danp129

    Mapping a drive programmatically in VB

    I did some testing and always got 1 as return code on success and failures. Return strings were always empty on failures, successes were "The command completed successfully." I had the same results under does by trying to output the response to a text file (just add ">c:\netret.txt" at the end...
  16. Danp129

    Regular expression conditional replace

    Thanks guys, I got this figured out at home after I found http://www.regular-expressions.info/near.html Which helped me make: (<\s*(\w+)\s+)(?!(?:name[^>]+value|value[^>]+name)+)([^>]*)(name=['"][^>]*?['"])([^>]*>) I think the statment needs to be like that in case value comes before name...
  17. Danp129

    Gravity

    This reminds me of the qbasic gorrila.bas from dos 5.x? :)
  18. Danp129

    Regular expression conditional replace

    Thanks, I've been staring at it for awhile but still don't understand how to match name= ONLY if value= isn't in the string.
  19. Danp129

    Regular expression conditional replace

    bah, my search is actually <(?<start>([A-z0-9]+))(?<junk>[^>]+)(?<name>name=")(?<junk2>([^"]+))(?<end>") and replace is <${start}${junk}value="${start}001${end}

Part and Inventory Search

Back
Top