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!

Recent content by SupaSi

  1. SupaSi

    How to Extract Crystal Report File version information

    Jason, Thanks for the offer, but the reports contain confidential information and I cannot distribute them outside of my corp environment. I'll have to find another way.
  2. SupaSi

    How to Extract Crystal Report File version information

    Jason, I've looked futher into the apps and, based on the dependencies, it looks like the apps were written using Delphi 3 - the following DPLs are linked by the apps: VCL30.DPL, VCLDB30.DPL, VCLSMP30.DPL, VCLX30.DPL, QRPT30.DPL and TEE30.DPL. These are all identified as Borland Delphi...
  3. SupaSi

    How to Extract Crystal Report File version information

    I have a number of (apparently) Crystal Report files that in need to edit and I need to know which version of Crystal Reports the files were saved using. Is there any way of determining, from the rpt files which version they were written with? Some background information: We use a 4 year old...
  4. SupaSi

    IB5.1, ODBC and Parsing SQL string

    Martjin, I thought my post said it all with regard to my problem. What I want to be able to do is check a sql script against the Interbase parser without executing it. I'll be writing a number of scripts to be executed on a number of IB 5.5 instances and a parse facility would be useful...
  5. SupaSi

    IB5.1, ODBC and Parsing SQL string

    Thanks Pat, but like I said, upgrading isn't an option. Nothing like being restricted to legacy systems eh? Looks like I'm going to have to write my own parser...[mad]
  6. SupaSi

    IB5.1, ODBC and Parsing SQL string

    I've inherited a global network of Interbase 5.1 based databases. I'm writing an application in .Net (don't worry, this isn't a cross post ;-) ) and amongst other things I'd like to incorporate a SQL string parse function that operates in a similar way to that of MS Query Analyser. I've used...
  7. SupaSi

    Web page reading in .net

    It's pretty simple. The System.Net.WebClient types DownloadData method provides an easy way to get any data from a url: Public Function GetWebPage(ByVal szURL As String) As String Dim wc As New System.Net.WebClient() Dim b() As Byte Try b = wc.DownloadData(szURL) Catch ex As...
  8. SupaSi

    integrating asp.dll

    I'm also interested in reusing asp.dll too!

Part and Inventory Search

Back
Top