Search results for query: *

  1. C

    Question PDF add pages

    I have code which currently will load a PDF page with data from my query but when I get to the end of the PDF page, my data keeps writing but goes nowhere. How can I tell my code when it gets to the end of the page, to continue writing the rest of the data on the next page and so on and so on...
  2. C

    Question Unable to delete row from database

    I have a windows form which connects to multiple database tables. On my form, I have a combobox. I want to be able to hit the delete button and remove the row from the access database which corresponds with the selected combobox value. I've tried many variations of this in my code but am...
  3. C

    Question Integer value changing when trying to compare cell data by using 'IndexOf' feature

    Thank you for the replies. Let me put a correction in on my one line of code where the problem is occurring. strH = strOriginal.Substring(y + 1, strOriginal.Length) That is my actual code that I am using. Y being the placement of the '@' symbol in the string and then the other part...
  4. C

    Question Integer value changing when trying to compare cell data by using 'IndexOf' feature

    I have a program that is reading an Excel (xlsx) file and I am trying to take the data found in one of the cells and split it based upon the '@' symbol inside that cell. Here's an example: value in cell is "XXX @ YYY" I declare 3 strings (strOriginal, strA, strH) strOriginal is the value from...
  5. C

    Question exporting crystal report to PDF

    I put this at the end of my code and it fixed it for me.... cryRpt.close()
  6. C

    Question exporting crystal report to PDF

    I have partially solved this problem of mine by adding this line of code: cryRpt.RecordSelectionFormula = "{PRREQUESTS.ID} = " & lblRequestNum.Text but now after I export one record and I move ahead to the next record, that second record's PDF file has only the crystal report format in it...
  7. C

    Question exporting crystal report to PDF

    I am trying to export only the current record in my app into a PDF. My current code (shown below) is exporting into Crystal Report and then into PDF format but it is exporting ALL records in the database. This program is used for entering in Purchase Requests. Each record in the database is one...
Back
Top