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

  • Users: vidru
  • Order by date
  1. vidru

    How to print running totals and their conditions/forumlas

    In the meantime, you could try that "rpt Inspector" ad I'm seeing at the top o' this page.
  2. vidru

    How to print running totals and their conditions/forumlas

    Many, many moons ago, I wrote an application that would do this sort of thing. It was a way of documenting all the formulas/running totals/etc within an rpt file. I'll see if I can dig it up. -dave
  3. vidru

    vidru

    Name: Dave Ruckstuhl Location: Gainesville, FL Occupation: Official title is Business Application Developer, but I'm basically "IT guy number two". Work in Alachua, FL for a really cool biotech company: [link http://www.axogeninc.com]AxoGen[/link] Email: vidrutek@hotmail.com...
  4. vidru

    How to conditional suppress whole group section

    gegeying, Apologies for the hijack... LB, My wife is still doing the soap thing, but not putting very much energy into it (the kids, 4 and 7, are still sucking the life out of her). We do have a few retailers that are doing pretty well with it though, especially right now, with the holidays...
  5. vidru

    How to conditional suppress whole group section

    How's it goin' LB? For the record, that was going to be my backup solution, but who wants to deal with all of that running total mucky-muck if you can just get those records the heck out of there to begin with? -dave
  6. vidru

    How to conditional suppress whole group section

    You'll be able to most efficiently do this if your database/connectivity supports use of SQL Expression fields. Is the field that contains the 'Name' field in the same table as the Workorder? In any case, the SQL Expression field would look something like this *(name it 'TempCount')...
  7. vidru

    Indy TIdTCPClient

    Wireshark is, among other things, a packet sniffer. I have it running listening for traffic on port 2077 (which is the port I have to use to send/receive from the server). So I can see that the server is sending the response, but not until I disconnect the socket. I've tried ReadString also...
  8. vidru

    Indy TIdTCPClient

    Thanks, I tried that method earlier as well, but it hangs when it gets to ReadLn.
  9. vidru

    Indy TIdTCPClient

    I have an application that needs to connect via a socket to a server, send an XML request, then receive a response. Sounds pretty simple, right? FWIW, I've never used sockets before. The vendor of the server has given me sample C#.NET code for connecting/sending/receiving. That's great, and...
  10. vidru

    EnableSavePreviewPicture?

    There was a thread a couple of years ago where someone was wondering the same thing. I ended up finding a MS whitepaper showing hot to get to various file properties, which would allow you to get to the image, and the OP returned with his complete code (VB): thread149-1019249 -dave
  11. vidru

    Problem creating Data Definition (TTX) File

    Do you have a 'Field Definitions' option under More Data Sources? If so, that's what you want (I don't have cr10 installed here, but that's where it is in crXI). -dave
  12. vidru

    Color Formatting based on mutiple values

    Version? Oh well, this is for XI... Right click your formula field on the report canvas > Format Field > Font tab > next to Color, click the conditional formula button [x+2]. Then write a formula that returns the proper color constant based on your conditions: if {Table.Field) = 1 then...
  13. vidru

    Viewing a Crystal Report XI document from VB 6.0

    Trying to keep my head above water, k, which ain't always easy. Since my role here switched from report developer to application developer, then to THE ONLY application developer, I've been maintaining our big fat program now. I've got a cadre of minions to do all the silly reporting stuff...
  14. vidru

    Viewing a Crystal Report XI document from VB 6.0

    Also, be aware you need to have a Developer version of Crystal in order to use the RDC components in your application. -dave
  15. vidru

    Microsoft Access with crviewer11 unable to package merge modules

    You can try downloading Visual Studio Installer, and using that to create an installer w/the merge modules. Here's a link to the deployment whitepaper - it should help you get something together: Creating an RDC XI Distribution Package. It also has a link to MS to get the Visual Studio Installer.
  16. vidru

    Composite Primary Key

    I'm trying to avoid creating a new table. Here's the scenario: I have an existing table with the following structure... CREATE TABLE [dbo].[SpPrices] ( [DoctorID] [varchar] (20) NOT NULL , [ProductID] [IDSTR] NOT NULL , [Price] [MONEY] NULL, [FacilityID] [IDSTR] NOT NULL, ) ON [PRIMARY]...
  17. vidru

    How to use multivalue parameters with 8.5 runtime

    A very simplified example, based on code from the UCrpe32.hlp file: Crpe1.ReportName := 'C:\Company.rpt'; if Crpe1.ParamFields[0].Info.AllowMultipleValues then begin {Add two items to the CurrentValues list} Crpe1.ParamFields[0].CurrentValues.Clear...
  18. vidru

    Crystal Reports from VB 6

    Have a look at faq768-5374 for an option that uses the SetLogOnInfo method instead of ConnectionProperties. SetLogOnInfo is deprecated, but still works up to CR XI. -dave
  19. vidru

    Print login name on report - currentCE blank?

    Scratch the above. The text should be SYSTEM_USER instead of CURRENT_USER.
  20. vidru

    Print login name on report - currentCE blank?

    If SQL Expression fields are available to you, you can create one with text of CURRENT_USER to get the database login name for a SQL Server db.

Part and Inventory Search

Back
Top