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

    IIS 7 url rewrite help

    thanks, that forum is ... dead -Pete
  2. BlindPete

    IIS 7 url rewrite help

    here is more info <rewrite> <globalRules> <rule name="SSRS redirect" patternSyntax="Wildcard" stopProcessing="true"> <match url="http://localhost/Pages/Reporting.aspx*" /> <action type="Rewrite"...
  3. BlindPete

    IIS 7 url rewrite help

    Can anyone point me to creating url rewrite from: http://localhost/Pages/Reporting.aspx?ReportId=DeviceDetail&DeviceId=103440 to http://localhost:86/Pages/Reporting.aspx?ReportId=DeviceDetail&DeviceId=103440 In II7 I've created the rewrite but it never seems to fire instead I get HTTP Error...
  4. BlindPete

    Update DateTime field from string

    Bummer, same error. This is one off maintenance query. I guess just dlaod the dbase and execute the update in the Access environment on local host. I suspect that the are conversion errors on the string field, that are canceling the entire transaction. I guess I could break into 2, identify...
  5. BlindPete

    Update DateTime field from string

    LOL naturally I agree, it should work. ;-) The ASP server uses a MS Jet ODBC connection. Error Type: Microsoft JET Database Engine (0x80040E07) Data type mismatch in criteria expression. I'll try your method here shortly. -Pete
  6. BlindPete

    Update DateTime field from string

    Hello, I am using ASP classic with an access dbase and I'm having trouble writing and UPDATE query for the DateTime field. I have a varchar field with information like this: "dob 01/01/2009" I want to update another field that is actually a datetime field. but I can't figure out how. I've...
  7. BlindPete

    SQL Update of DATETIME Field

    Hello, I am using ASP classic with an access dbase and I'm having trouble writing and UPDATE query for the DateTime field. I have a varchar field with information like this: "dob 01/01/2009" I want to update another field that is actually a datetime field. but I can't figure out how. I've...
  8. BlindPete

    importing web page

    ohh i feel like an idiot. A star for you! Thanks -Pete Games the old fashion way with Dice, Paper and Pencils!
  9. BlindPete

    importing web page

    thank you. I will try that, but the error occurs before i get to that point. the message is 404 page not found. I thought maybe the target's robots.txt might be excluding calls like this. I don't know how to fake a different request header... not sure I really want to do that anyhow. -Pete...
  10. BlindPete

    importing web page

    Hello, I am doing some charity work with ASP classic, and I'm a bit rusty. What I am doing is importing a web page from a volunteers personal page into the charity's website. However the page comes up "not found". If I test with other urls like google.com it works fine. Do you suppose the...
  11. BlindPete

    Enumerate ODBC DSNs

    I ultimately went with this ODBCmngr.DLL I found the source code here: http://www.codeproject.com/KB/database/ODBCMngr.aspx I suppose I could have just referenced the MS ODBC.DLL and accomplished the same thing. Bugger this was frustrating. -Pete Games the old fashion way with Dice, Paper and...
  12. BlindPete

    Enumerate ODBC DSNs

    I need to enumerate the available ODBC DSNs. I used to do this via ODBC.DLL but I can find the C# way of doing it. All I am attempting to do is list all the user and system DSNs in combo box. It can't be this tricky, after 1.5 hours I am rather annoyed that I can't figure it out! I even...
  13. BlindPete

    Word Insert Page Breaks

    well bizarre though it may be this code works 'Page Break Set oRange = ActiveDocument.Range oRange.Collapse Direction:=wdCollapseEnd Set oParagraph = oDoc.Paragraphs.Add(oRange) oParagraph.Range.InsertParagraphAfter oParagraph.Range.InsertBreak wdPageBreak Only works for "InsertParagraphAfter"...
  14. BlindPete

    Word Insert Page Breaks

    Thanks Gerry, I am trying to insert a page break at the end of the document without using selection object. I had read in several places that selection object was a poor choice and to avoid using them. I am a complete novice with Word's COM model. Excel's... I can write code in my sleep...
  15. BlindPete

    Word Insert Page Breaks

    I am having a devil of a time inserting page breaks with VBA. I am combing documents by inserting them into a single document. I want to insert a page break between documents. I have tried a variety of methods and none work. I typically end up with a single break at the end of the document...
  16. BlindPete

    Converting multiple HTML documents to PDF using Word

    Hello Tek-Tipers! Sort of closing out the loop here. I changed my strategy somewhat. I realized that word does a superior job of converting html into word format. Furthermore I substituted a different CSS file, just for the import of the HTML. In this way I handle 100% of the format...
  17. BlindPete

    Converting multiple HTML documents to PDF using Word

    Thats going to save me a ton of time. Thank you so much. I am combining a hundred or so web pages into a single PDF document. The pages mainly refer to anchors w/i the same page, some refer to other web pages. I know which URLs are being incorporated into the document. Deciding which to...
  18. BlindPete

    Converting multiple HTML documents to PDF using Word

    Gerry PS: I have an orange tabby just like Leon! -Pete Games the old fashion way with Dice, Paper and Pencils!
  19. BlindPete

    Converting multiple HTML documents to PDF using Word

    Thank you White605: I use that trick all the time with Office Automation. Thank you Gerry! That is a huge help. So what I have to do is: - Convert HTML anchors to word Bookmarks (Defined Range). - Create a bookmark for each imported HTML page. - Convert HTML hyperlinks to word hyperlinks...
  20. BlindPete

    Converting multiple HTML documents to PDF using Word

    Thanks folks. Yes Gerry are correct. I have the full version of Adobe. You can instruct Adobe using distiller (but not PDF Writer) to retain the word links. PDF/Word cooperate nicely. Gerry, Do you know the official name for Word's links to other parts of the word document. If I could just...

Part and Inventory Search

Back
Top