Search:

Type: Posts; User: DirtyHowi

Page 1 of 9 1 2 3 4

Search: Search took 0.12 seconds.

  1. Replies
    0
    Views
    640

    5.0 [RESOLVED] C# Async Task aint?

    I have a list of objects that I need to run a long running process on and I would like to kick them off asynchronously, then when they are all finished return them as a list to the calling method....
  2. Re: [RESOLVED] WCF Datacontract element visible in client, but not in service itself

    never mind, im an idiot. public modifier helps LOL.
  3. [RESOLVED] WCF Datacontract element visible in client, but not in service itself

    i've got this data contract


    [DataContract]
    public class SvcEuroCall
    {
    [DataMember]
    public Guid RequestID{get{return new Guid();}}
    [DataMember]
    ...
  4. Re: I think I'm about to have a nervous breakdown

    i'm on #18 :)
  5. Replies
    14
    Views
    1,525

    Re: Skills Assessment for Interview

    dupe
  6. Replies
    14
    Views
    1,525

    Re: Skills Assessment for Interview

    even if they went and drummed up the applicants? i dont disagree that had i applied for the gig, and gotten the call that they wanted the assessment..ok no problem i can do that.

    but they called...
  7. Replies
    14
    Views
    1,525

    Re: Skills Assessment for Interview

    this...I wasnt looking for anything, they called me not the other way around. I decided to talk to them mainly cuz talk is well....cheap.

    I didnt ask for them to find me a job, they came a...
  8. Replies
    14
    Views
    1,525

    Re: Skills Assessment for Interview

    no charge, the company wants it. sorry i just find it personally insulting is all. We have hired guys (fortunately it only took a week to figure it out) who did the same thing. You want to look at...
  9. Replies
    14
    Views
    1,525

    Skills Assessment for Interview

    Had a recruiter call me, happens once a week or so. Wants me to take a C# and SQL assessment...

    i'm thinking ahhh NO. 1. i have my masters in CS and my MCPD (got the last one before they changed...
  10. Re: help with trigger possibly return more than one record

    considering where this is installed, that's a distinct possibility. We have it working with modifications to the MQ bus we are using and some mods to another support DB that seems to have filtered...
  11. Re: help with trigger possibly return more than one record

    I'd love too, however this is a third party software package that we are now trouble shooting.
  12. help with trigger possibly return more than one record

    we are getting a "subquery returned more than one record" and think it has to do with the trigger on the table we are writing to.

    i'm not seeing it, but i'm not a DB programmer either so...


    ...
  13. Replies
    20
    Views
    7,855

    Re: If you are a vb6 supporter please read:

    yanno, i loved VB6, IN THE 90's...its 2014 for petes sake, get a real computer and stop running windows 3.1 will ya, please...pretty please....
  14. Replies
    2
    Views
    1,539

    5.0 Re: Cannot Find Part Of the Path to file

    its happening in the getfiles, i can run it fine as myself remotely, but not from a MQ flow that makes the call, infrastructure guys are looking into it.
  15. Replies
    2
    Views
    1,539

    5.0 Cannot Find Part Of the Path to file

    This only occurs when its deployed to the server, which happens to also contain the folder i'm searching.

    works fine from my local/dev vm.



    public void IndexToday(string path)
    ...
  16. Replies
    20
    Views
    4,293

    Re: VBF > Stack OverFlow

    try asking dumb questions on MQ boards and get hazed, fired upon, and told your an idiot. and then not even pointed in the right direction. SO is good as a reference, sometimes i find good links...
  17. Replies
    18
    Views
    1,910

    Re: My poor little Nephew :(

    sorry not even that would be effective.

    dang that hurts just thinking about it. hope the kid got a whole case of the kinder eggs from uncle.
  18. Replies
    2
    Views
    1,342

    VS 2013 Re: this cant be this hard MVC5

    i got it, i used the view bag.

    the rest of the application is waay more complex than this, and this is what kicked my butt.
  19. Replies
    2
    Views
    1,342

    VS 2013 [RESOLVED] this cant be this hard MVC5

    basically i have



    @model string
    @{
    ViewBag.Title = "Index";
    }

    <h2>Redrop Order</h2>
  20. Re: [RESOLVED] Passing array of items to service contract implementation WCF 4.5.x

    turns out the issue was not with the WSDL it was with the mapping from legacy to oia in MQ ESB.
  21. [RESOLVED] Passing array of items to service contract implementation WCF 4.5.x

    I've got an issue, We are interfacing a legacy system with a new service via IBM MQ, so far this works until i get to the service.



    public papesOrderResponse PlaceOrder(Order order, params...
  22. Replies
    13
    Views
    6,172

    VS 2010 Re: Rrmoving References in VB.NET

    umm, 2010 runs on 4.0, make sure you have the 4.0 framework installed via control panel. they all exist no problem, but i've seen targeting by the different IDE's to a specific version of the...
  23. Re: datacontract-->datamember of datacontract

    i just gave up and defined it as 3 seperate objects required by the service to construct the document. actually makes it easier on our COBOL guy to do it that way as well.
  24. Re: datacontract-->datamember of datacontract

    in the order contract i have


    [DataMember]
    public shipaddress shipaddr = new shipaddress();

    and i've tried it without. no joy in mudville.
  25. [RESOLVED] datacontract-->datamember of datacontract

    I've got a data contract (shipping information) that i am trying to use as a datamember (shipaddr) in another data contract (order).

    I can get to the sub items ok, so

    in the client


    var o...
  26. Replies
    1
    Views
    1,226

    Re: [RESOLVED] xml element listing help

    solved
    private readonly List<Item> Itemlist = new List<Item>();
    [XmlArray("itemlist", Order=6), XmlArrayItem("item")]
    public List<Item> itemlist { get { return Itemlist; }}
  27. Replies
    1
    Views
    1,226

    [RESOLVED] xml element listing help

    I've got a class that looks like


    private string _ctid = "2F";
    [XmlElement(Order = 1)]
    public string ctid
    {
    get { return _ctid; }
    set...
  28. Replies
    1
    Views
    832

    VS 2012 deploy partner supplied site

    a partner has sent over a old school web service to instal on one of our webservers. I cant open the project since its been precompiled, how do i deploy that to my webserver (IIS 7.5 on 2012)? what...
  29. [RESOLVED] copy property values from object to data contract

    I've got an object i'm getting from a service written in cobol, i have a data contract in WCF that matches (property names and everything) identically to the cobol object.

    i'm trying to use


    ...
  30. Re: launching excel from asp.net app

    for those interested


    excelApp.ActiveWorkbook.SaveAs(Server.MapPath(filename));
    excelApp.ActiveWorkbook.Saved = true;
    excelApp.ActiveWorkbook.Close();
    ...
  31. Re: launching excel from asp.net app

    then remove it from the framework :) this is an internal application only, we are licensed to the hilt all i use it for is creating the file.

    i'll look at the download thing unless someone wants...
  32. Re: Server control not accessible in code-behind?

    that could be...generally you print out the code due for upgrading and rewrite it. upgrading from classic to .net would involve more headaches than just redoing the whole thing.
  33. Re: Server control not accessible in code-behind?

    <asp:DropDownList ID="ddlCheckType" runat="server" Width="132px" OnSelectedIndexChanged="ddlCheckType_SelectedIndexChanged" AutoPostBack="True">

    </asp:DropDownList>


    this...
  34. [RESOLVED] launching excel from asp.net app

    i have an app that outputs a gridview to excel spreadsheet and adds a couple of rows for accounting.

    i'm trying to launch the spreadsheet after its saved off, using




    ...
  35. Re: Server control not accessible in code-behind?

    language should not matter to the HTML, i just happen to write this one in C# is all.

    can you post the offending markup for the control??
  36. Re: Server control not accessible in code-behind?

    DDL has to be marked as autopostback = true to fire the selected index changed event.
  37. Re: Server control not accessible in code-behind?

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Myform" %>

    should be at the top of your ASPX file. Try that.

    also declare your event signature in the...
  38. Re: Server control not accessible in code-behind?

    without post back certain controls will not fire the event. do you have autoeventwireup set to true?
  39. Re: Server control not accessible in code-behind?

    is autopostback = "true" in that line somewhere?
  40. VS 2012 Re: [RESOLVED] saving file generated by response object

    never mind, used a stream writer instead...
Results 1 to 40 of 345
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width