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 Shaun E 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 AmazingGrace

  1. AmazingGrace

    Column Wrapping in Crystal Reports 8.5

    No, there is one grouping layer and only one detail section for the report.
  2. AmazingGrace

    Column Wrapping in Crystal Reports 8.5

    Hello. I have a report written in Crystal 8.5 that generates a list of contacts. It contains 6 fields, all of which have the setting set to grow to fit as the data is of variable length. The problem I'm having is that this is a report set to display in 2 columns (across, then down) such that...
  3. AmazingGrace

    How to determine current page in an XML-bound table?

    Thanks, tsuji That's just what I needed. Sorry it took so long for me to folloup up on the post... people wanting everything done yesterday around hear.. you know how it goes ;) Take care, buddy, and thanks again!
  4. AmazingGrace

    How to determine current page in an XML-bound table?

    Hi, First: Here is the html I'm working with: <XML ID="Apps" src="Apps.xml"></XML> <center> <table datasrc="#Apps" datapagesize="5" id="tbl"> <thead> <td>Department</td> <td>Document Name</td> <td>Status</td> </thead> <tr> <td><div datafld="name"></div></td>...
  5. AmazingGrace

    Newbie: Anyone have small recordset-like example?

    Hi, As promised, here is a sample that uses a SqlDataReader to interate through records, and a DataSet to bind to a control (a grid in this case.) using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using...
  6. AmazingGrace

    string.toUpper()

    You use a TGML markup tag: . Example: Class HelloWorld() { System.Windows.Forms.MessageBox.Show("Hello World!"); } appears as: [CODE] Class HelloWorld() { System.Windows.Forms.MessageBox.Show("Hello World!"); } More information on TGML tags can be found here
  7. AmazingGrace

    cannot create true db grid object without license for tdgb32.ocx

    Did you have to include a license file when you first installed it on the old PC? Were you prompted to enter a serial key or license file during install this time? I have APEX True DBGrid Pro 6.0 at my work and I have to install it to develop with it in the IDE, even if I have the OCX...
  8. AmazingGrace

    How to use Microsoft Excel Diagram via Ole in runtime?

    Can you be more specific about what you're going to do?
  9. AmazingGrace

    deployment of ActiveX control

    I'd assume he uses an XML parser treating the input as a DOM document.
  10. AmazingGrace

    Newbie: Anyone have small recordset-like example?

    Hi! Here is a sample that reads through a resultset. You usually use this method of manual iteration when you want to process the data returned from the query. This method does not require the use of the DataSet class. I'll post another sample after this that shows how to use a DataSet...
  11. AmazingGrace

    Code Comment Web Report

    I think so. I couldn't find a default template that VS is using but using the Macro Editor to create a macro might do it. I'd make a macro that does the following: -1- Initiates the documentation procedure -2- Edits the CommentReport.css to add VERTICAL-ALIGN I'd post the macro code for...
  12. AmazingGrace

    display html content in word document using VBscript

    If the source text was formatted in XML and not HTML then it would be very easy to extract the text between the tags. But that is not the case, so I think you'll have to write a function that strips out the tags. Question: How is the HTML generated? Is it from an application that you...
  13. AmazingGrace

    Code Comment Web Report

    You can add an entry to the CommentReport.css that fixes the problem. Apparently, FireFox does not handle margin spacing the same as IE... If you google search for "firefox css" you will find links on that topic. After the Comment Pages have been generated, open CommentReport.css and find the...
  14. AmazingGrace

    string.toUpper()

    Hi, You can extend the System.Windows.Forms.TextBox class that will give you a reusable control that always displays text in upper-case. Below is a sample of a user-control that overrides TextBox. sing System; using System.Collections; using System.ComponentModel; using System.Drawing; using...
  15. AmazingGrace

    Code Comment Web Report

    Hmm, now I can see the same problem in my browser. Apparently the issue is with vertical alignment of text inside the <TD> tags. You might try editing the stylesheet used by VS when generatating the code pages. Search your drive for the file called "CommentReport.css" and try to tweak its...

Part and Inventory Search

Back
Top