CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: emdad87

Search: Search took 0.02 seconds; generated 43 minute(s) ago.

  1. Replies
    1
    Views
    1,804

    Re: [HELP] Logon failed error in Crytal Report

    Since the error is "LogOn Failed", give details of how the Crystal Report file (.rpt) is loaded and how it is connecting to the database. How do you know that the error is at:
    ...
  2. Re: [RESOLVED] How to programmatically set data source for Crystal Reports basic for

    I dont know why but just modifying

    crCon.Password = "MyPass"

    with

    crCon.Password = Chr(10) & "MyPass"

    makes the code perfect again! :)
  3. Re: How to programmatically set data source for Crystal Reports basic for

    I am using the following code:

    Private Sub frmRptInv_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    Dim cr As New ReportDocument
    Dim crCon...
  4. How to make a Resolution Independent Application?

    The development machine's and client machine's screen resolution are very likely to vary. I want a code that will RE-SIZE and RE-POSITION each and every control so that no matter what the development...
  5. Re: How to programmatically set data source for Crystal Reports basic for VS 2008?

    Thanks a lot for the quick reply ... I will try it out now and post my results... wish me luck ... n thanks again for the detailed description!
  6. [RESOLVED] How to programmatically set data source for Crystal Reports basic for VS 2008?

    I have created and tested my reports on the development pc and it works fine. For these reports, I have used the database expert and set my desired database and tables etc. I use OLEDB and Access...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured