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

Search:

Type: Posts; User: lexavision

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    4,505

    Re: How to decrypt data in an XML file?

    Memeloo,

    Do you really think you're going to be some kind of "Power Poster" with your BS responses?
  2. Replies
    11
    Views
    1,536

    Re: Public arrays?

    Hey memeloo,

    If you have constructive input then please enlighten us with your endless knowledge. Otherwise , do not solicit feedback on posts that do not address the issue.
  3. Replies
    4
    Views
    985

    Re: C sharp progaming need help!

    Hey Tranzy...

    I have the code ready. Actually, I'm somewhat proud of this particular design.

    Where should I send the project files?
  4. Replies
    3
    Views
    8,108

    Capture barcode input in Textbox

    Hi,

    I have a USB scanner that I use to input into a textbox. The issue is that I'll need to check for a barcode that is 6 digits long and another that is 9 digits long. Since the characters come...
  5. Replies
    4
    Views
    7,674

    Re: System.InvalidOperationException

    I will follow your advise... Thanks Again!
  6. Replies
    4
    Views
    7,674

    Re: System.InvalidOperationException

    Thanks BigED!!!

    Resulting code:



    try
    {

    TicketBL ticket = new TicketBL();
  7. Replies
    4
    Views
    7,674

    System.InvalidOperationException

    Hi,

    I get an exception when I run this code:



    try
    {

    ArrayList arrayList = new ArrayList();
  8. Re: Web Service function not returning arraylist

    Works now!

    I wasn't rebuilding the web proxy properly.

    Thanks for your help Arjay!
  9. Re: Web Service function not returning arraylist

    Thanks Arjay...

    However with that approach I get a compile error:

    Cannot implicitly convert type 'object[]' to...
  10. Re: Web Service function not returning arraylist

    Thanks Arjay,

    Thanks for response.

    The calling fucntion is the app will cause an invalid cast exception.




    WebService.TicketVO[] listTickets =...
  11. Web Service function not returning arraylist

    Hi,

    I have a web service that returns an ArrayList that is working fine when tested when invoking the service. However, when I call the function from aremote app I get NULL objects.

    Wb Service...
  12. Replies
    4
    Views
    5,209

    Re: Casting Issue

    Hi Cilu,

    WebService.TicketVO is a value type class object.



    [Serializable]
    public class TicketVO
    {
  13. Replies
    4
    Views
    5,209

    Re: Casting Issue

    Sorry abut the formatting....

    I've also tried:

    WebService.TicketVO[] wsTicket = (WebService.TicketVO[])arrTickets.ToArray(typeof(WebService.TicketVO));

    instead of wsTicket =...
  14. Replies
    4
    Views
    5,209

    Casting Issue

    Hi,

    I am trying to call a web service and return the results in an ArrayList. I'm petty much at a standstill with a casting issue. Here is the function that call the webservice and the error.
    ...
Results 1 to 14 of 14





Click Here to Expand Forum to Full Width

Featured