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 gkittelson 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. Razzle00

    Max fields in a cursor

    Hi, What is the maximum amount of fields I can create in a cursor use the CREATE CURSOR command? I need about 400 fields if that is possible. Thanks, Razzle
  2. Razzle00

    Auto advance to next line in a data grid

    Thanks Mike! That worked.
  3. Razzle00

    Auto advance to next line in a data grid

    Hi, Is there any way to advance the cursor to the next line in a datagrid after the user has left the last field from the current line they are entering in? Currently the cursor just goes to the first field in the same line that they are in. It just adds an extra step for the user...
  4. Razzle00

    Masking a colunn in a datagridview for dates

    Hi, How can you mask a column in a DataGridView to handle dates? Can it be done the MaskEditTextbox control can do it? Thanks, Razzle
  5. Razzle00

    Text format problem after using MS word for spell check

    Thanks for the response, I was able to fix it with this... txtnotes.Text = txtnotes.Text.Replace(vbCr, Environment.NewLine) However, I was curious as to why the text is being returned from MS Word this way. Razzle
  6. Razzle00

    Text format problem after using MS word for spell check

    Hi, I have a VB windows form using VS2005 that calls the MS Word object to spell check a multiline textbox on my form. The spell check works fine, however after the text is returned back to the textbox it combines all the paragraphs together and displays a carriage return character...
  7. Razzle00

    Two page Crystal Report for possible duplexing.

    Madawc, no it is not essential that I use a subreport. As a matter of fact, after reading your post I created a new report with 2 detail bands and made them each 1 full sheet in size and then in the format section put a page eject after each detail band and that works. That was all I needed to...
  8. Razzle00

    Two page Crystal Report for possible duplexing.

    Ido, I have tried using a sub report. But what happens is that it prints all the pages of the sub report and then it prints all the pages of the main report (or in reverse order depending on if you want the sub report to print first or last). Can you insert a subreport in a way that it will...
  9. Razzle00

    Two page Crystal Report for possible duplexing.

    Hi, How would I create a CR that is 2 pages for each record. For example, I have a medical form that is 2 pages long per individual. At the moment I have created 2 seperate reports, 1 for each page. And I then print them seperately. But it would be better if I could create 1 report that...
  10. Razzle00

    Passing parameter values to crystal reports

    Hi, I have never had trouble passing values to Crystal Reports in the past, however for some reason none of my code that passes parameter values to Crystal Reports is working anymore. The only difference in my applications is that I recently converted them to VS2005 from VS2003. But I do...
  11. Razzle00

    Formula/Summary field at the end of a report

    Thanks LB, that is what I'm looking for.
  12. Razzle00

    Formula/Summary field at the end of a report

    LB, I would rather not create a field in the detail band and then create a sum from that because once you delete the field from the detail band you cannot ever change the expression without recreating another field in the detail band. Can it be done with a formula field instead? How would you...
  13. Razzle00

    Formula/Summary field at the end of a report

    Hi, I need to create a report that has just 1 field in the summary band of the report (or report footer) that is a sum based on an expression like IIF(MyTable.MyField = True, 1, 0). There is no detail band,group band or and other fields. Just a summary field at the end of the report...
  14. Razzle00

    Sort a dataset for a crystal report

    Thanks Rick, that worked! Jbenson, I cannot sort the records from a SQL select statement for this application. Once I pull the records from SQL server, the dataset table is changed from adding/updating/deleting records before its the passed to Crystal Reports. Razzle
  15. Razzle00

    Sort a dataset for a crystal report

    Hi, Is there any way to sort a dataset table in code so that your Crystal Report will recognize the sort order. I realize that you can group the data in CR but this will not work for this report. I need it sorted in code before it is passed to CR. Or if this cannot be done can you sort...
  16. Razzle00

    Can we expect to see a VFP 10 or 64bit VFP?

    Hi, Can we expect to see a VFP 10 or 64bit version of VFP? Just curious on all of your thoughts. Thanks, Razzle
  17. Razzle00

    Create a Datarelation in a dataset

    Disregard this post. I have the solution. The code file has the unique key and needed to be the parent column in the relation.
  18. Razzle00

    Create a Datarelation in a dataset

    Hi, How do you create a many-to-one or one-to-many relationship in a dataset. I have this code ' Get the DataColumn objects from two DataTable objects in a DataSet. Dim parentCol As DataColumn Dim childCol As DataColumn ' Code to get the DataSet columns...
  19. Razzle00

    Command Window to test code and display results

    Hi, Is there any type of command window that you can enter code like this.. Math.Round(3.45, 1) and then have it show the result like... Returns 3.4. Just wondering. Because this would allow me to test my code before I apply it to my application. Other wise I have to code it in my...
  20. Razzle00

    CDO mail function help

    Make sure you do not have a cdoex.dll file in use. I have run into problems like this when the cdoex.dll file is registered. The cdoex.dll supersedes the cdosys.dll file for some reason. So anyone having problems getting the cdosys.dll to register it could be because you have the cdoex.dll...

Part and Inventory Search

Back
Top