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 bkrike 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
  • Content: Threads
  • 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

    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...
  5. 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.
  6. 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...
  7. 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...
  8. 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!
  9. 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...
  10. 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...
  11. 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.
  12. hne

    xp_sendmail error

    Hi DB gurus, When I run the query to send an email, EXEC master..xp_sendmail @recipients = 'mcellery.badio@delta.com', @subject = 'Mail sent' I get the error: Server: Msg 229, Level 14, State 5, Procedure xp_sendmail, Line 1 EXECUTE permission denied on object 'xp_sendmail', database...
  13. hne

    Converting CST to EST

    Hi, I am newbie to SQL, please be gentle with me (DISCLAIMER). :) Anyway, I have a few questions and would like to throw them out one at a time. Frist question, I get the error "The number of variables declared in the INTO list must match that of selected columns." Help please?! This is what...
  14. hne

    Incrementing Version Number using VBScript macro in VC++

    I am new to VBScript, however, created a macro that should increment my version number in VC++ every time I compile. I want my macro to skip to the next char when my version count exceeds 9 (i.e. if version is 1.0.0.9, on my next build I would like for it to be 1.0.1.0). I am having problem...
  15. hne

    Crystal Reports in VC++

    . . . . . #import "mycrpt.dll" no_namespace CString strQuery; IApplicationPtr pApp; IReportPtr pReport; VARIANT var; strQuery.Empty(); strQuery.AllocSysString(); strQuery.Format("select " "FlightID, FltNbr, FltDate, AlName, " "LastDepart, ShipNbr...
  16. hne

    Hi, New to crystal reports. How do I view my reports? Using Oracle

    . . . . . #import "mycrpt.dll" no_namespace CString strQuery; IApplicationPtr pApp; IReportPtr pReport; VARIANT var; strQuery.Empty(); strQuery.AllocSysString(); strQuery.Format("select " "FlightID, FltNbr, FltDate, AlName, " "LastDepart, ShipNbr, Routing...

Part and Inventory Search

Back
Top