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

    Deployment problem with VB.net & CR RDC9

    Thanks for your reply chelseatech I've got it sorted now but you are quite right. I had got an assortment of msm files with the same name but different dates. Some had come via Crystal, others from InstallShield. Without realising it I was installing the wrong version of various DLLs. I got...
  2. MikeVE

    Deployment problem with VB.net & CR RDC9

    Hi I have a pair of apps one written in VB6 and the other in VB.net. Both use the CR9 RDC rather than the built in .Net version. My app works happily on the development machine. I have an install made with InstallShield Express using all the recommended MSM modules. On a clean virtual...
  3. MikeVE

    How can I change a formula entered in the Section Expert at run time?

    Me again I worked it out. I moved the code around so that the whole report is recreated every time I change an option and it all works. Thanks again Vidru.
  4. MikeVE

    How can I change a formula entered in the Section Expert at run time?

    Thanks Vidru That worked a treat when I put it in the code that first runs the report - all the pagination was just as I want it. Next problem: I have some option buttons which allow the user to change the make up of the report - including pagebreaks. The code runs but the changes to the page...
  5. MikeVE

    How can I change a formula entered in the Section Expert at run time?

    I am using the RDC with VB.net. I have a subreport which is in a Group Footer of the main report. The subreport has two levels of grouping and NewPageAfter true on both levels. I get a unwanted final page with no data - just the main report's PageHeader. I can fix this using the Section...
  6. MikeVE

    How to hide tabs in report viewer with .net?

    Hi Using VB6 & CR9 I could turn off the tabs in the report viewer using the property .DisplayTabs but it is not there in the .net version. How can I do it in .net?
  7. MikeVE

    Why are subreports reseting page numbers?

    Thanks for the reply The page numbers are in the Page footer. The subreports concerned are each in their own Group Footer. Version is CR9 with VB6. Mike VE
  8. MikeVE

    Why are subreports reseting page numbers?

    I have a report that uses grouping and in most circumstance the page numbering correctly reflects the grouping. However when I include subreports the page numbering can go astray. On investigation I found that when the subreport just happens to begin at the top of a new page it resets the page...
  9. MikeVE

    Crystal Reports causes VB progam to crash under Windows 2000

    Problem solved After much work with CR support and the Modules program I got from them. I included the following files in the distribution comres.dll msctf.dll sxs.dll uxtheme.dll I need to do some more homework to find out exactly what these files do and if they are all vital. Why they are...
  10. MikeVE

    How can I read the value of an RTF field (VB6 & CR9)

    I want to use the Value property of fields to check if they are empty. The data comes from an Access table using ADO. I can do this happily with simple text fields by looking at the fields Value property. The problem field comes from memo data and is formated using the text interpretation set...
  11. MikeVE

    Crystal Reports causes VB progam to crash under Windows 2000

    Thanks for your reply FoxBOA. My app is in CR9. I mentioned that it started in CR8 to give the history as I wondered if the upgrade might be a factor. In the full version of the prog the recordset is declared as a global. In the smaller test version of the program it is a module level...
  12. MikeVE

    Crystal Reports causes VB progam to crash under Windows 2000

    I have not yet solved this problem but I have made some progress in working out what is going on. I installed VB6, CR8 and CR9 on a new W2K virtual machine. When installing CR9 I used set every componenet to "Instal when needed" except for the RDC for VB developers. I than ran my...
  13. MikeVE

    Crystal Reports causes VB progam to crash under Windows 2000

    My program was written in VB6 with ADO 2.6 and Crystal Reports 8 using TTX files as design datasources. I updated to CR9 because there were problems compiling CR8 under XP. My installation is written with InstallShield Express 4 and uses the Crystal Reports9 Merge Modules. The problem did...
  14. MikeVE

    Connecting to access database (ADO)

    This is code I use. I have already defined strSQL. Set rs = New ADODB.Recordset rs.Open strSQL, glo.db, adOpenStatic, adLockReadOnly CreateFieldDefFile glo.rsTeamsWithTargetsRpt, App.Path & "\TeamsWithTargets.TTX", True The third line creates a TTX file which douments the...
  15. MikeVE

    Unwanted blank last page when grouping records

    Thanks for the help. Your answers did not give me the complete solution but they pointed me in the right direction. First of all I managed to get the desired effect at design time by putting "Not(OnLastRecord)" in the X-2 box for the New Record After property of the Group Header...
  16. MikeVE

    Unwanted blank last page when grouping records

    My report is controlled from VB6. It can be printed with or without grouping. This is controlled by a variable. When the variable is set to turn grouping on, NewPageAfter is set to true in both the last detail section and the group footer. The problem is that when grouping is on, a final...

Part and Inventory Search

Back
Top