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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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()...
  16. Dashley

    Dynamic Thread Names via Dataset Count

    Hi, I'm pulling a row count from a dataset. The number of rows vary with each client. Using the row count I'm creating a Dictionary of Thread Names Dim threadsDIC As New Dictionary(Of String, Thread)() Dim variableName = "Thread" For i As Integer = 1 To...
  17. Dashley

    Select count from multiple col's

    Thanks all I had a subquery style statement working. It just seemed like a very long statement. Guess I was on the right track but just with some doubt. @Olaf that's the first time I've seen the unpivot function. I'll have to go study that one to get my head wrapped around it. Really...
  18. Dashley

    Select count from multiple col's

    I have this table like the one below. The top row has col names. I need a result of a count of all the "y"'s in each col but am not sure how to do it. I'd rather do it on the MS SQL end than pull it into a dataset and work it. I can do one col at a time but it would create 9 hits on the db...
  19. Dashley

    Comparing Table data oddities

    Hi, I have two tables. I want to pull the MstrTab.ISBN, MstrTab.Title from MstrTab that dont exist in HPtab.ISBN. MstrTab (419 rows) and HPtab (193 rows) ISBN ISBN Title I've tried this statement: SELECT mstrtab.ISBN, mstrtab.title FROM mstrtab WHERE mstrtab.ISBN NOT IN (SELECT...
  20. Dashley

    &lt;basicHttpBinding&gt; attributes

    I was actually starting to research this today :) Thank you for the Links. I was reading one article this morning whee it says that at least Net 4.5 was the best to use for this. I'm going to install VS 2015 today and upgrade. I'll make this (Async) my first project. Thanks Again :) -dan

Part and Inventory Search

Back
Top