Search results for query: *

  1. M

    Crystal Reports Versionitis

    Hello, I have an older VB.NET project that I upgraded from 2002 to 2003, and upgraded all reports (I think) from either CR.NET or CR 8.5 to CR9. I have some problems as a result. Under references, the version of CrystalDecisions.CrystalReports.Engine, CrystalDecisions.ReportSource...
  2. M

    Loading SQL Server table from XML file

    I would like them parsed and into the same field names on SQL server as they are in XML.
  3. M

    Loading SQL Server table from XML file

    Hello, I am doing a little research... What would be the easiest way to load a SQL Server table from an external XML file? Can I load it as one blob or do I have to pull it into a datatable? Thanks for your help!
  4. M

    CR Deployment

    I have been reading the crdeployment.pdf file from Crystal's website, and I have been messing around with it today. I have a few questions from it. First of all, we had a project we developed with VS.NET 2002 and created the reports with Crystal Reports 8.5. Somebody else had created a setup...
  5. M

    Merging data onto PDF Form

    Hello, I am looking for a third party tool to use in our applications that will merge runtime data onto an already created PDF file. We need this to work with .NET, VFP, and Java. Any recommendations would be great. Thanks a lot! -MAC
  6. M

    RadioButtonList

    I have a RadioButtonList on my webform with 4 items in it. When the user clicks on the OK button, it does a different thing depending on which radio button is selected. It does this by performing a SELECT CASE on the SelectedIndex. It works fine now, but what I want to do is add functionality to...
  7. M

    Disabling Certain Items in RadioButtonList

    Hello, Is there a good way to disable certain items in a radiobuttonlist? From poking around, it looks like there isn't an easy way, but I thought I would check here. TIA
  8. M

    Binding report datasource to a dataview

    Hello, Anyone know why this line of code isn't working: Report.Database.Tables("data").SetDataSource(DV1) It shows all the records... not the filtered records. Can I bind a report to a dataview instead of a datatable?
  9. M

    Telephone Dialing software

    Hello, I am looking for some (preferrably free) product/bit of code that will allow me to dial a phone number and deliver a preset voice recording when they answer. Anybody use anything like this? Thanks, MAC
  10. M

    Creating a dataview from a dataset preserving relationships.

    Hello, I am using vb.net. I have a dataset with 2 tables, joined by a relationship. I need to create a dataview that shows all of the child records, but with one field from the corresponding parent record. The parent table is named quantity (PK of part_no) and the child table is detail (FK of...
  11. M

    Disabling tab control

    Hello, I have a tab control on my winform. On one of my tabs, I am performing a two step process, and do not want the user to be able to change the tab until I tell them to. I see I can actually disable the tab pages, and that disables everything on the tabpage, but I want to stop the user from...
  12. M

    Data Binding and ComboBoxes

    I've tried that already to no avail. Should I be trying to change the value in the data table? I guess I tried that too, and some of my controls went haywire.
  13. M

    Data Binding and ComboBoxes

    Hello, New here, trying this forum out as my other one is primarily VFP based. I have a form with multiple textboxes, a combobox, and a checkbox. These are all bound to a data table. The problem I am having is the fact that when the checkbox is checked true, I want to disable the combobox...
Back
Top