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!

Search results for query: *

  • Users: Dashley
  • Content: Threads
  • Order by date
  1. 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")...
  2. 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...
  3. 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
  4. 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"...
  5. 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
  6. 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...
  7. 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...
  8. 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...
  9. 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...
  10. Dashley

    &lt;basicHttpBinding&gt; attributes

    Doing some webservice requests. Pulling data from 10-12 different business servers. Sometimes one service will hang and ultimately timeout by default settings of 1 minute. I don't wait to wait the whole minute so I need to reduce the time to 10 or 15 seconds per service. I'm looking at three...
  11. Dashley

    Client Script Changing/encoding Values

    Hi, I'm running this code" Dim ShowArchiveFileIs as string = ("Articles\bbn07282015.htm") Dim url As String = ShowArchiveFileIs Dim sb As New StringBuilder() sb.Append("<script type = 'text/javascript'>") sb.Append("window.open('")...
  12. Dashley

    Automate Cell comments with Images

    I want to add a comment (a picture) in Col D (Book Title). The image file name is composed of the ISBN number in Col B with the extension " .jpg " . The files are located at "C:\Users\Dash\Pictures\wordsworth\MSTRCovers05122016Fixed". So...
  13. Dashley

    System.Net.ServicePointManager Setting TSL's

    Had a webservice I was consuming throw an error: ----------------- An error occurred while making the HTTP request to https://www.odfl.com/wsRate_v4/RateService. This could be due to the fact that the server certificate is not configured properly with HTTP.SYS in the HTTPS case. This could also...
  14. Dashley

    Webservice array initializer

    Hi I'm successfully making a Webservice request with the inclusion of the statements below. request.RequestedShipment.FreightShipmentDetail.LineItems = New FreightShipmentLineItem(0) {New FreightShipmentLineItem()}...
  15. Dashley

    Calling Jquery from asp.net Code Behind.

    The following Jquery & HTML produces a barcode128 and all works fine. </head> <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> <script src="scripts/CODE128.js"></script> <script src="scripts/JsBarcode.js"></script>...
  16. Dashley

    ADOBE XFDF XML corrupt.

    I've made a basic PDF form with two input fields (firstname, lastname) and a submit button. I'm doing this in Adobe DC. On the mouse up trigger on the submit button the form is submitted as an XFDF (XML)file to a test site URL and subsequently saved to a filename "testpdf.xfdf" When I look into...
  17. Dashley

    Search Query Construct-

    I have two tables. ISBN is unique Table1 (orders has 8829 rows). table2 (best_sellers) has top 100 best sellers. Table1 (Orders) Table2(best_Sellers) ID ID (pk)ISBN (pk)ISBN Price Price I'm trying to find out which ISBN's in the best_sellers...
  18. Dashley

    str_replace construct

    Hi, $homepage = file_get_contents("http://www.imakenews.com/eletra/mod_archive_view.cfm?u=bargainbooknews"); echo $homepage; in $homepage there is a image source statement I'm trying to replace with nothing "" and then display the page without the image. the statement is: <img...
  19. Dashley

    String to date sorting array

    Hi, I'm a VB dev and this is my 1st day developing with PHP. I've retrieved a list of files from a directory and stripped off the ".: and the file extensions and also the 1st 3 letters of the file name itself since they are always constant (ex. "bbn10052005.htm"). What I'm left with is a...
  20. Dashley

    system.web.ui.control._page' is not accessible in this context because it is 'friend'

    I have a procedure "Protected Sub BtnDimSubmit_Click(sender As Object, e As EventArgs) Handles BtnDimSubmit.Click" In my immediate window I can view the sender information "?DirectCast(DirectCast(sender,System.Web.UI.WebControls.Button)._page,ASP.quotes_aspx).DDLcontainer2.SelectedValue"...

Part and Inventory Search

Back
Top