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 bkrike 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: *

  • Users: BlindPete
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. BlindPete

    Converting multiple HTML documents to PDF using Word

    Hello Tek-Tipers! I have a long time client whose website is composed of articles, posted regularly. Sort of a daily eZine so to speak. They have asked me to determine a way that they could produce a quarterly PDF archive that would resembles a print magazine. Their CMS uses mysql and all...
  8. BlindPete

    CSS enclose a table

    Hello All, I have several pages with *cringe* tables of data. Thats right rows and columns of numbers in the <table></table> tags. However it fouls up my CSS page, and I am really frustrated, because I can't work around it. The tables are at varying locations in the main content are of the...
  9. BlindPete

    Pivot Table Format data area

    Hello All, I have macro that creates a pivot table. It works fine, but the data area (the grid between columns and row headers) needs formating. I can do it manually, but I don't want to. I've tried a variety of methods for formating but no luck. Can any one help me out? ' NO JOY...
  10. BlindPete

    How does Access handle LIMIT statement?

    I can use TOP, but that only works from the top. I need to paginate the data, say 25 records at a time. How do I do that in Access? SELECT TOP 25 usc_Detail.* FROM usc_Detail, but how would I fetch just records 26-50? In SQL Server I can use LIMIT 26, 25 -Pete Games the old fashion way...
  11. BlindPete

    Excel PivotTable Count instead of Sum

    Hello, I written a VBA routine to create a pivot table from data on another sheet. The routine works fine except that the "data" cells are count() instead of sum(). I've been searching for a long while and can find an any examples of someone changing what the data portion of the pivot table...
  12. BlindPete

    Sub Report Not spanning pages

    I'm certain I have done this before but today its not working my sub report cuts off after 1 page. I've checked for "keep together" in parent and sub, "can grow" is set. I'm using CR XI? Has something changed or am I missing some setting? -Pete
  13. BlindPete

    Docmd.SetWarnigs alternative

    I'm not interested in setting the state but reading what the state is: True or False? Is there a property for that in the Access COM Model? -Pete
  14. BlindPete

    Import Specification

    Do I have to use the Access UI to build, save and modify my import specification. I have to create several dozen of them and they will be changing over time. I'd much rather just create the specification in VB and modify them as needed. Am I dreaming? Where in the Access object model are the...
  15. BlindPete

    Does readdir() have a default order?

    I am listing a directory, it appears that the files always come out from newest to oldest. Is this coincidence? an effect of the server or is it how readdir() works? while (false !== ($file = readdir($handle))) PHP.NET does not say either way...
  16. BlindPete

    Simple Viewer converted from 10 to 11

    Hello All, I am updating a very simple reports viewer from CR10 to CR11. However I am at loss for how to replace these two lines of code. All else was pretty obvious. Dim m_Application As New CRAXDDRT.Application Dim m_Report As CRAXDDRT.Report Does anyone know what the CR11 replacements...
  17. BlindPete

    Crystal Reports 10 to 11

    Does anyone know the CR11 equivalent to: Dim m_Application As New CRAXDDRT.Application Dim m_Report As CRAXDDRT.Report I have a simple CR10 Viewer that I am attemting to upgrade to CR11 but I have no joy and Business Object documentation just stinks. -Pete
  18. BlindPete

    List of running applications

    Hello, I am trying to generate a list of active applications (not services) hwnd and name. I tried using EnumWindows but I really green with APIs. Can any one post a link or code snippets that might get me there? -Pete
  19. BlindPete

    xBase MDX file not wrking in CR11

    Hello, I am rather frustrated. The reports use xBase DBF/MDX the reports work like a champ in CR10. However in CR11 the joins do not work correctly. If i delete the MDX files the reports work. Anyone have any idea what I am doing incorrect? -Pete
  20. BlindPete

    Array Limit in CR 11

    Does anyone know the array upper bound limit in CR11? As I recall in CR10 it is 1000 elements. -Pete

Part and Inventory Search

Back
Top