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...
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)...
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.
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...
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...
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...
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.
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
%>
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...
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...
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...
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...
bah, my search is actually
<(?<start>([A-z0-9]+))(?<junk>[^>]+)(?<name>name=")(?<junk2>([^"]+))(?<end>")
and replace is
<${start}${junk}value="${start}001${end}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.