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: *

  • Users: hne
  • Order by date
  1. hne

    Pointers...

    Hello gurus, I have a code I inherited that is loaded with pointers. Here is my problem. The application is reading a stream file to get the data. There is a delimiter 'xle' or 'xlc' or 'eof' that let the app know when it is at the end of a block. The app uses a 'get(char*, n, c)' function...
  2. hne

    run command line vsmacros...

    Hi, I created a vsmacro in MVS Macro IDE to auto increment the version number of my resource file (.rc). My program is a managed C++ application. I would like to run this macro from a command line (i.e. in a makefile or batch file) before I compile my code, in order to bump up my version...
  3. hne

    TimeZone conversion...

    Hello, I know how to convert from UTC to any local daylight savings date time based on TimeZoneInformation class. What I would like to know is, how can I convert from UTC to standard time anywhere based on TimeZoneInformation class? That is, ignore Daylight saving time? Thank you in advance.
  4. hne

    loading comma delimited text into Excel spreadsheet

    Can anyone help me with this problem? Thanks.
  5. hne

    loading comma delimited text into Excel spreadsheet

    Hello, My application pulls data from an SQL dbase and I create a comma delimited StringBuilder output. I want to place this result into three separate columns (per my delimited field). I just cannot get the 'TextToColumns' method to work. Below is a snippet of my code. Your help is highly...
  6. hne

    CR displays blank output using VS.NET

    Can any one help me with this thread question?
  7. hne

    CR displays blank output using VS.NET

    I am integrating crystal report version 10 from VS.NET, when generating report it displays blank output, eventhough my ReportDocument shows that all fields have been applied to the current values. Can someone please help me. Thx.
  8. hne

    Vieweing Crystal Report Form using VS.NET

    In Crystal Reports, manually entering the parameters I get a returned output. In my code, if I comment out everything starting from where I set my parameters definitions and just include logging to the database and tables and set the ReprotSource, I get just the canned display of what is...
  9. hne

    Vieweing Crystal Report Form using VS.NET

    Thanks for your response. I do have the Clear method a little further than I need to. However, I try the clear my values because I am passing parameters to a Stored Procedure. Regardless, even if I comment out the clear method, when I set ReportSource, I still get a blank Window Form. Again...
  10. hne

    Vieweing Crystal Report Form using VS.NET

    I have an application developed in C# VS.NET that 'should' display a Crystal Report Form. However, when I pass my Stored Procedures parameters and set ReportSource, a blank form comes up and does not display any part of my report. Can anyone look at this and see what I am doing wrong? Thank...
  11. hne

    C#, Crystal Report question...

    It turned out that the path for my report had changed. Thanks for you help.
  12. hne

    C#, Crystal Report question...

    I am using Stored Procedures. My parameters are set in the report. I pass the values from my code to the parameters. I have two codes, the first is the primary code that creates the CR object and calls the CR code. Below is a sample of my code DisplayProfile.cs: private void...
  13. hne

    C#, Crystal Report question...

    Hello, I have an application written in C# that I am using Crystal Reports to view my report. When ever I call the viewer (i.e. crViewer1.Show()), I get the error, "specified argument was out of the range of valid values. Parameter name: Year, Month, and Day parameters describe an...
  14. hne

    Stored Procedures, C# and Crystal Reports

    First let me apologize that I did not respond initially to your response. Thank you very much for your help. However, when I use the example above, I get the error "Object reference not set to an instance of an object". Is there something I am doing wrong in Crystal Report or Visual Studios...
  15. hne

    Stored Procedures, C# and Crystal Reports

    Hello, I really hope someone can help me with is one. I have program written in C# and MS SQL Stored Procedures already ported to my database. How can I pass these Stored Procedures parameters to Crystal Reports to view my output? Thanks for your much needed heop!
  16. hne

    Invalid Report File Path

    When I load my Crystal Report (v.10) form, uinsg VC.NET I get the error: "Invalid Report File Path". This error occurs when I attempt to copy CR database object to my database object. myDb = crReportDocument.Database; I have this created in a class as listed below: public class...
  17. hne

    Displaying Crystal Report in Windows form

    Sorry I did not update this thread. This was my solotion: try { // Initialized my form viewer display_myform.csForm crViewer1 = new csForm(); // Load report, datasources, other stuff and display... crViewer1.Show(); } // if any exception, catch it... catch (Exception ex) {...
  18. hne

    Displaying Crystal Report in Windows form

    First of all, thank you very much for your response. Also, I must apologize for the fact that I am a newbie in C#. I see you point that attempting to set a viewer object to a form is not going to work. However, this is my dilemma; from my main form (Form1.cs), I need to click a button (called...
  19. hne

    Displaying Crystal Report in Windows form

    Hello, I am using VS.NET and Crystal Report 10. How can I display my Crystal Report Form in C#? When I call my Crystal Report class from another class (Form1.cs) it fails to load the form. i.e.: Form1.cs display_myform.csForm crViewer1 = new csForm(); In my Crystal Report form csForm.cs...
  20. hne

    Programming output to a .CSV file

    Hello, I would like to know how can I program my MsSQL to send my output to a .CSV file? Thanks.

Part and Inventory Search

Back
Top