Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Dashley

  1. Dashley

    Consuming a WSDL and passing arrays into an object

    And the cure was Dim loaddata As New wsdl_estes.FullCommoditiesType Dim comList As New List(Of wsdl_estes.FullCommodityType) Dim com As wsdl_estes.FullCommodityType '1St commodity com = New wsdl_estes.FullCommodityType() com.class = 60 com.description = ("Used Books")...
  2. Dashley

    Consuming a WSDL and passing arrays into an object

    HI, I'm trying to get away from stringbuilder SOAP requests and converting to using a WSDL document. Really trying to learn :) I'm using a WSDL located at: WSDL I'm making a rate request for freight. I have 2 commodity loads as follow commoditiy #1 .class = 60 .weight = ("560")...
  3. Dashley

    Help with a join

    Ok Thanks I'm going to try and get back on this today. I'll let you both know how it goes Thanks
  4. Dashley

    Help with a join

    I have two tables tbl1 = members M memberID Lastname firstname tbl2 = contributions C memberid contribdate contribamt want to select m.lastname. m.lastname from members M where they haven't made a contribution (c.contribdate) in the last 16 months, so that date would be since 2/01/2017 or...
  5. Dashley

    Class Diagrams

    Disregard have it solved. Only time the class diagrams and exposes methods was with a project not a website
  6. Dashley

    Class Diagrams

    Running VS 2015 free version. Just downloaded a sample file and I've noticed it the class file (.vb) it exposes all the procedures and functions below the class (see image in pink). Can't seem to find out how to turn that feature on. Any Ideas Thanks
  7. Dashley

    Embed constant in a input var syntax

    Have it working now. There was a rendering function further down the script that was casing my issue. All is well now
  8. Dashley

    Embed constant in a input var syntax

    Hi Have some jscript i'm trying to tweak but I'm not succeeding. Pbly because I rarely use it I have a var declare var btype = $("input[name=btype]:checked").val(); I also have an input field that's passed in on a submit button <input type="radio" name="btype" id="code39" value="code39"...
  9. Dashley

    Sql to Update table from another table

    Thanks Simian, Worked Great I appreciate it :) -dan
  10. Dashley

    Sql to Update table from another table

    Hi I have two tables Tbl1 Name = Memos Memo (text) MemoID (Int) Tb22 Name members lastname (nvarchar(50)) firstname (nvarchar(50)) oldindx (int) indx (int) I want to update/set TB1.memoID = Tbl2.indx BTW TBL1.memoid = tbl2.oldindx Thanks -dan
  11. Dashley

    vb Move gridview selected row to top.

    Thanks JB. Prbly go with option #3. Not sure yet. I've moved on in the project and will come back to it in a few days or so :). Thanks Again -dan
  12. Dashley

    vb Move gridview selected row to top.

    Hi, I'd be happy if the selected row remained in view although I would prefer at top. I'm so used to doing it easily with the datagridview in a form. The datagrid is a different story HA. OK I'll give the paging a while and look into the Jquery. Thank you -dan
  13. Dashley

    vb Move gridview selected row to top.

    I have a gridview with 168 rows. When I select a row I want that row to highlight (which it is ) but I also want it to become the top row in the gridview or at least postback to the selected row. I've had the page directive set to "MaintainScrollPositionOnPostback ="true" " Focus() - ing it...
  14. Dashley

    Dynamic Thread Names via Dataset Count

    Solved it by creating separate classes that I can import and reference Imports rate_abfs.get_rates blah blah blah threadsDIC(variableName & i.ToString()) = New Thread(AddressOf rate_abfs.get_rates)
  15. Dashley

    Question about SMTP

    Try something like this. Grab you form data (the email address they send you) and stic it in the msg.body Dim emailrecipient As String = ("whoyousendigitto@whereever.com") Dim smptclient As SmtpClient = New SmtpClient() Dim mmsg As MailMessage = New MailMessage()...

Part and Inventory Search

Back
Top