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

    Exhange WebDAV keys

    Found my own answer as usual :) Seems that the where clause is case insensitive and the DAV:id field is a character representation of a binary value. Here is the Microsoft KB rticle with an explnanation and a workaround...
  2. rabbit65

    Exhange WebDAV keys

    I am trying to write an app that uses Exchange to store contact info but I need to relate the contact items to data which I store is a sql DB. I am using WebDAV to access a public contact store on an Exchange 2003 Server and I can't seem to find any docs that say what field would be best to use...
  3. rabbit65

    Novice: Sorting in XSL

    This worked in cooktop... <xsl:template match="COUNTY"> <xsl:apply-templates select="COUNTY_NAME"> <xsl:sort select="COUNTY_NAME"/> </xsl:apply-templates> <xsl:apply-templates select="LIBRARY"> <xsl:sort select="LIBRARY_NAME"/> </xsl:apply-templates> </xsl:template>
  4. rabbit65

    XML application design question

    I am writing an IE only application that is using Data Islands (<XML> html tags). I have one XML file that is quite large (1.7M) that contains fairly static data and I would like to remote it (the xml file) somehow on the client. I could break it apart but I was looking for another way to do...
  5. rabbit65

    linked server using WebDav?

    I have to access public folders on a hosted 3rd party Exchange 2003 server that I only have http access to (using webdav currently). Is there a way I can create a linked server given this Exchange server configuration? Thanks in advance! JB
  6. rabbit65

    Filtering reports

    I finally found the way to do this. clientDoc.DataDefController.ParameterFieldController.SetCurrentValue "","@" & sType, cstr(rs.fields(sType).value)
  7. rabbit65

    Synchronising, Pocket Outlook to MS SQL. Is it out there?

    Does anyone know of a product that synchronises Pocket Outlook directly to a SQL data store (ie map fields in a DB to the Pocket Outlook object model). I am familiar with the regular Outlook model and I guess if I had to (and had the time :)) I could write a sync. module to do this but it just...
  8. rabbit65

    Filtering reports

    I filtered/exported the report twice and then saved the report (clientdoc.save). I then opened the report and the report was empty but when I removed the filter I got the first filter's data. Could the export method be causing the report to save the data? Closing the report and then...
  9. rabbit65

    Filtering reports

    thought I should post all of the filtering code. for i= 0 to ubound(v,2) sTitle2="Actuals as of the " & sRunDate & " FIS load to WorkElement Explorer (" & v(1,i) & ")" Set filter = clientDoc.DataDefinition.GroupFilter.clone(true)...
  10. rabbit65

    Filtering reports

    I have a somewhat large report (v10, +600k with data saved) that I would like to open using RAS (v10 embedded Enterprise) and produce PDFs by filtering on one of 4 different fields. I have something that works but it takes a considerable amount of time to run (over 2 hrs.) but when I apply the...
  11. rabbit65

    Filtering more than once with RAS/COM.

    I tried to create a simpler example to send to you bc of the proprietary info in these reports but when I did it worked perfectly :) Time to start elemenating things one by one The simple example: single table select no grouping or formulas The Problem Child: Stored Proc 1...
  12. rabbit65

    Filter (RecordSelection) Object - RAS

    I have been successful filtering from RAS but I cannot replace the this filter after the first time it is modified. Here is the code to filter (it assumes you already have a report loaded (clientDoc) and you are logged into the server.) dim filter Set filter =...
  13. rabbit65

    Crystal 9 Web Licences

    I am using the save method of the bytearray object from the RAS/COM: call clientDoc.PrintOutputController.Export(5).Save(&quot;c:\MyCompany\projects\pm\&quot; & rs.fields(&quot;initials&quot;).value & &quot;.pdf&quot;, True) Where Export(5) the five indicates export in PDF format. As I...
  14. rabbit65

    Filtering more than once with RAS/COM.

    I have a report that is rather large and I am trying to produce PDFs based on various record filters that affect more than one field. I designed the report so that it returns all the records and open it using the ras/com models in an asp page. I can get the filter to apply for the first...
  15. rabbit65

    Crystal 9 Web Licences

    I've been dealing with Business object for about three weeks on a similar issue. As far as the five concurrent connections I have been told that once the five are used up the requests are queued up and have to wait. If the scripttimeout (assumes IIS) is the default the request has about 90...

Part and Inventory Search

Back
Top