Search:

Type: Posts; User: Christopher_Arm

Page 1 of 13 1 2 3 4

Search: Search took 0.05 seconds.

  1. check on a SQL stetement I am writing at the point of INSERT statement

    in a final INSERT statement to a table in the dates that are showing up as 99991231 as a default end date we want to replace them with 20781231 no dashes in between
    hence I used the following

    ...
  2. Replies
    7
    Views
    1,024

    Re: remediation of custom SDK

    Revised for visibility..
    I thought what I would have to do is mimic the SDK classes functionality using available namespaces and libraries and all the interfaces and as well.
  3. Replies
    7
    Views
    1,024

    Re: remediation of custom SDK

    ProReportDBconnection Class as stated earlier has to be revised to a system.data.common or sqlclient ADO.NET version




    public class ProReportDBConnection
    {


    private...
  4. Replies
    7
    Views
    1,024

    Re: remediation of custom SDK

    The rest of the code issues are in this attachment below...
  5. Replies
    7
    Views
    1,024

    remediation of custom SDK

    How do I go about stripping out this custom sdk library for the dbconnection and replacing it with something from ado.net from system.data.sqlclient using system.data.common ?

    Second is a...
  6. Re: How do I put in the sum for each of the values for this SSRS expression

    Fixed it. It should be this in reality.


    = Format( Sum(Fields!EquityCommission.Value), "C") &
    IIf(Fields!InsuranceLabel.Value <> "", VbCrLf & Format(Sum(Fields!InsuranceCommission.Value), "C"),...
  7. [Resolved]How do I put in the sum for each of the values for this SSRS expression

    :check:
    = Format(Fields!EquityCommission.Value, "C") &
    IIf(Fields!InsuranceLabel.Value <> "", VbCrLf & Format(Fields!InsuranceCommission.Value, "C"), "") &
    IIf(Fields!ExceptionLine1Label.Value...
  8. Re: The parameters dictionary contains a null entry for parameter 'Width' of non-null

    Yet when I go to the definition of the model itself it seems fine.



    namespace @@@@.Areas.Reports2.Models
    {
    public class ReportInfo2
    {
    public int ReportId { get; set; }
    public string...
  9. Re: The parameters dictionary contains a null entry for parameter 'Width' of non-null

    What I can see is for this view thee model conditions all have red lines under them..



    @model.@@@@.Areas.Reports2.Models.ReportInfo2

    <H1>
    @Model.ReportDescription
    </H1>
  10. Re: The parameters dictionary contains a null entry for parameter 'Width' of non-null

    Ok. I have changed the code to reflect three parameters as you mentioned.



    [HttpGet]
    public ActionResult Index( string ReportName,string ReportDescription, int Width , int Height )
    {...
  11. Re: The parameters dictionary contains a null entry for parameter 'Width' of non-null

    How would the solution look to use both ideally ?
    I have changed the code to reflect this:



    [HttpGet]
    public ActionResult Index( string ReportName,string ReportDescription, int Width ,...
  12. Re: The parameters dictionary contains a null entry for parameter 'Width' of non-null

    So in this statement it uses it once here...


    ReportURL = String.Format("http://************/rsreports/Pages/Report.aspx?ReportName={0}&Height={1}&ManagerList={2}", ReportName, Height),
    Width =...
  13. Re: The parameters dictionary contains a null entry for parameter 'Width' of non-null

    What stumps me is this is generic code from an example another developer plunked down that he said this should work and now doesn't when I am looking at it and online this example exists and it is...
  14. The parameters dictionary contains a null entry for parameter 'Width' of non-nullable

    Controller: Report
    Action: Index
    Exception: The parameters dictionary contains a null entry for parameter 'Width' of non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult...
  15. Re: why is this concatentation not working it brings me back only the first half befo

    Yes. Putting the convert of the notice paid through date after the end statement seems to work. I will need to wrap it in an ISNULL as you say should the date come in NULL but how to do that is my...
  16. Re: why is this concatentation not working it brings me back only the first half befo

    The second version works . Thank you.
  17. Re: why is this concatentation not working it brings me back only the first half befo

    The notecomment returns "this member is paid through the date =>" and the notice_paid_through_date concatenates the date value from tblMemberNotes.
  18. Re: why is this concatentation not working it brings me back only the first half befo

    So the result I get is NULL in the note column...oh and notice_paid_through_date is a column in tblMemberNotes
  19. RESOLVED Concatenatioin not working

    the plus when I select just that portion....






    UPDATE tblMemberNotes
    SET note_type_id =case ISNULL(note_type_id,0)
    --WHEN (note_type_id is not null) THEN note_type_id
  20. Re: why is this error Reportviewer1 does not exist in the current context showing ?

    Thanks
  21. [Resolved] error Reportviewer1 does not exist in the current context showing ?

    I am perplexed by the following error... just stumped. Help!:eek2:


    this is the class page Reports.aspx.cs


    using System;
    using System.Collections;
    using System.Collections.Generic;
    using...
  22. Re: [help] modal window is not maximizing

    What I realized is two things a) the Firefox version of the modal opens up just fine.. it is the IE version that does not and consequently the development team uses an Infragistics modal window for...
  23. [help] modal window is not maximizing

    Hi,

    I happen to need this modal window to appear in height and width to be as large as a standard webform... I placed settings in the showdialog function for specific height and widths and nothing...
  24. 3.0/LINQ Re: process threw an exceptiion of type invaild system operation Exception

    Anybody ? Digging a little deeper I found that this has again to with the relative physical path configuration coming from the XML setting the process working directory and the batch files directory...
  25. 3.0/LINQ Re: process threw an exceptiion of type invaild system operation Exception

    Digging a little deeper I put a pause on the end of the batch file being executed since the window opens for a few seconds and then closes before you can see if the batch file actually executed...
  26. 3.0/LINQ process threw an exceptiion of type invaild system operation Exception

    My C# application after stepping through it is thrown a slew of process exceptions (from the base priority, exit code and exit time, handle, has exited, ID , machine name all the way down...
  27. Re: C# system cannot find the path specified exception

    I did the following and it solved the issue

    I placed this line of code above:



    if (!Directory.Exists(launchPath))
    {
    Directory.CreateDirectory(launchPath);
    ...
  28. Re: C# system cannot find the path specified exception

    What would be the workaround for this then ? Go into the config and remove the escapes and test this because the developer is telling me this works in prod and I have a bit of head scratching...
  29. Re: C# system cannot find the path specified exception

    Actuallly by the time it executes through the code from stepping through it from the if statement it shows as this launchPath = "C:\\\\xxxxxx_AUTOMATED\\\\BatchFiles\\\\"
  30. Re: C# system cannot find the path specified exception

    When C:\\xxxxxxxxx_AUTOMATED\\BatchFiles\\ populates the launchpath

    then it hits the blnnogoodfalse it goes through the next code block up until the second line within the try and then the...
  31. [resolved]C# system cannot find the path specified exception

    I have been banging my head on this problem for days. I am running a program on a different server which has a C drive and it errors out here:
    Throwing the exception in the title "system cannot...
  32. troubleshooting an SSRS report..help!!

    One SSRS report out of 10 is timing out upon launch within an application whereas in report manager and report services it manually runs fine. I am seeing the following in the code where the Launch...
  33. Re: Question how do you write a view that would produce the following ?

    A Union or Union ALL unfortunately combines all of the data of both main queries with the preceding queries in this case TNR result sets columns showing. What I wanted would look something like this:...
  34. Question how do you write a view that would produce the following ?

    I have two queries resultsets shown here



    SELECT DISTINCT t2.PartnerName, t2.FundName,t1.Name,t2.ContactName, t1.Company_Tax_Id,t2.ContactPrimaryAddress1,
    ...
  35. Replies
    5
    Views
    1,247

    Re: more just a passing observation

    I am not going to call out any specific incident that either I have been a party to or anyone else over the time I have been. Hindsight being 20/20 I have noticed a few times where I saw a responder...
  36. Replies
    5
    Views
    1,247

    Re: more just a passing observation

    Agreed FunkyDexter. But I have been in this business for a long time maybe 14 years or so in programming.. 8 of those years I have come here for assistance.. in that time I can be guilty of asking a...
  37. Replies
    5
    Views
    1,247

    more just a passing observation

    This community has been a big help to me and others in solving issues with code that have us stumped at work or at school etcetera. As such we have to present the problem and explain it clearly and...
  38. Re: how is this possible too many arguments in stored procedure from ADO ?

    Fixed it. The cmd object as one poster had recommended CAN not BE split up like so within a transaction


    With cmd
    .CommandText = "spPanLetterUpdate"
    .CommandType = adCmdStoredProc
    ...
  39. Re: how is this possible too many arguments in stored procedure from ADO ?

    Ok UPDATE : Running the stored procedure by itself it works. Taking the main update query and executing it in the code works. The ODBC connection is also tested and is actively working.
    So...
  40. Re: how is this possible too many arguments in stored procedure from ADO ?

    I added in logic last week to see if an error was being generated in the ADO when it executed the stored proc. I created an error handler that checks to see what the error number and error...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width