Search:

Type: Posts; User: Jdsurgeon

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    2,758

    Re: Linq Specified Cast is not valid

    Has anybody else ran across this issue yet.
  2. Replies
    5
    Views
    2,758

    Re: Linq Specified Cast is not valid

    The check was there so I can verify that the transaction of the master was created. It's not there to stay but just for debugging purposes so I can check the value. INVNUM is a string value...
  3. Replies
    5
    Views
    2,758

    Re: Linq Specified Cast is not valid

    Lotnum is a string datatype so is prtnum. I cut on option strict and did all the explicit conversions. but I am still receiving this error. I am able to create a Master record but not the detail...
  4. Replies
    5
    Views
    2,758

    Linq Specified Cast is not valid

    ok I have a weird issue. I created a master record in the master table and then a record in the detail table. when creating the detail record i get a Specified cast is not valid error. Now another...
  5. Re: Silverlight 4 domainservice query does not return results

    OMG can I add you as a friend I promise not bumbarded you with questions I am usually a Google look it up guy but I really appreciate your help and I got that nasty GOTO statement removed from my...
  6. Re: Silverlight 4 domainservice query does not return results

    Wow that worked. Actually I don't know of another way to retry a statement if the order exists. This is actually my first time doing it and I know it's bad code practice but what harm does it do when...
  7. Re: Silverlight 4 domainservice query does not return results

    Thanks matt
  8. Re: Silverlight 4 domainservice query does not return results

    ok

    Public Function ReturnNewOrderNumber() As String
    Retry:
    Try
    Dim check = (From d In Me.ObjectContext.OrderMasters
    Group d By d.ordnum Into g =...
  9. Re: Silverlight 4 domainservice query does not return results

    I know silvelright 4 is new but can somebody help?
  10. Re: Silverlight 4 domainservice query does not return results

    for some reason I am using the Silvelight business application template. I have debugged it but for some reason it does not ever hit this line of code. Even thouhg it is exposed through the domain...
  11. Silverlight 4 domainservice query does not return results

    Try
    Dim check = (From d In Me.ObjectContext.OrderMasters
    Group d By d.ordnum Into g = Group
    Order By ordnum Descending
    ...
  12. Replies
    9
    Views
    4,841

    Re: Sql Data into textboxes

    dim person = from p in db.persons _
    select p

    for each per in person
    Dim WithEvents textbox As Button


    textbox = New textbox
    textbox.Location = New Point(104, 104)
    ...
  13. Replies
    9
    Views
    4,841

    Re: Sql Data into textboxes

    you can either create the controls in code per record and draw them on the form or have a set amount of text boxes and assign the record to each textbox.
  14. Replies
    9
    Views
    4,841

    Re: Sql Data into textboxes

    Do you have any code examples.

    I would use linq




    dim person = from p in db.persons _
    select p
  15. Re: for each statement linking to the wrong ending next.

    Yeh dude it had me pulling my hair out lol. But it's called refactor it's actually a very useful software you can see your code in structures. I use linq so for each statements can get quite huge.
  16. Re: for each statement linking to the wrong ending next.

    Yes the problem is solved.

    Ok in my visual studio I have the refactor plug in.

    so if i have a loop or if then statement it draws a line from beginning and end point.

    I never received an...
  17. Re: for each statement linking to the wrong ending next.

    I found out it actually wasn't the loops it was refactor screwing up with the lines that connect the loops together. When I stepped through the code it worked as expected By the way im just making a...
  18. for each statement linking to the wrong ending next.

    Why is my beginning for each statement linking to the wrong ending next statement take a look at the code. The for each shipment is linking to the end next comp statement. My head is cracking open...
  19. Replies
    3
    Views
    1,669

    Re: How do I pass values to PHP api

    Thanks Alot. This dide work now I just receive a generic error.

    Is there a way to verify an account through this api. because it make me have to hardcode the username and password when really i...
  20. Replies
    3
    Views
    1,669

    How do I pass values to PHP api

    Hi, I have an application that I'm writing that needs to connect this specific server api.

    Server: http://unlock1.com/api_calls/api_order_place.php

    When I try to perform a POST operation...
Results 1 to 20 of 21



Click Here to Expand Forum to Full Width