Search:

Type: Posts; User: raptormanad

Page 1 of 6 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    11
    Views
    4,817

    Re: Using WSDL web references with ASPX

    Well I got everything clear except I get Servername.mywsdl() not defined.


    Dim CallWebService As New ServerName.mywsdl()

    How do I define it?
  2. Replies
    11
    Views
    4,817

    Re: Using WSDL web references with ASPX

    Thank you very much for the detailed explanation. I'm really new to asp.net, could you please take a look at my code and tell if I'm doing something wrong?



    <%@ Page Language="vb"...
  3. Replies
    11
    Views
    4,817

    Re: Using WSDL web references with ASPX

    Here's exactly what I have so far...
    96629
  4. Replies
    11
    Views
    4,817

    Re: Using WSDL web references with ASPX

    I already have the wsdl imported as a web reference. Where is web service in this solution? I'm using visual studio 2012 if that helps. I should have everything I need to call it on an aspx page...
  5. Replies
    11
    Views
    4,817

    Re: Using WSDL web references with ASPX

    It's just sitting in there as a web reference. How do I add it as a reference as you mentioned?
  6. Replies
    11
    Views
    4,817

    Re: Using WSDL web references with ASPX

    Thanks for the reply! the only thing I've done so far is added a web reference using the wsdl url and called it mycompany. I then made a default.aspx page and haven't added anything yet. Wasn't sure...
  7. Replies
    11
    Views
    4,817

    Using WSDL web references with ASPX

    Need some help here. I added my wsdl web reference to the project and have it there. Good to go. I created a new default.aspx page. How do I use the web reference and process a soap request with it?...
  8. Thread: C# Replace

    by raptormanad
    Replies
    9
    Views
    1,191

    Re: C# Replace

    Haha, I was afraid you'd say that. We're trying to do these replaces as we pull in the data and insert it into sql without having to do the replaces on the webpage itself. If you have any ideas, I'm...
  9. Thread: C# Replace

    by raptormanad
    Replies
    9
    Views
    1,191

    Re: C# Replace

    Thanks for the prompt replies, this is for some web development, here it is:


    string HTMLParameter = stringWriter.ToString();
    HTMLParameter =...
  10. Thread: C# Replace

    by raptormanad
    Replies
    9
    Views
    1,191

    Re: C# Replace

    Hm, I did exactly this and it produced no errors, but didn't do any replaces :/ Maybe something with the @HTML in the insert?
  11. Thread: C# Replace

    by raptormanad
    Replies
    9
    Views
    1,191

    Re: C# Replace

    That worked great, thank you! Do you know if you can do more than one replace on the same variable? Like:



    { "HTML", stringWriter.ToString().Replace("you","me") },
    { "HTML",...
  12. Thread: C# Replace

    by raptormanad
    Replies
    9
    Views
    1,191

    C# Replace

    Hello, how would I do a replace the @HTML in this code? Something like:

    @HTML = @HTML.Replace("you","me");?

    I need to change it for the insert statement.



    // Now we've got a single...
  13. Pull apart comma delimited feed with ASP

    I have a data feed sitting as a txt file like so...

    002000,020065123452,,
    002013,020065123551,,
    002014,020065123513,,
    002015,020065123520,,
    002016,020065123674,,
    002017,020065124114,,...
  14. Replies
    3
    Views
    8,006

    Re: Always Round Down

    Cool, I think that is working. Thanks!
  15. Replies
    3
    Views
    8,006

    [RESOLVED] Always Round Down

    Is there a way to format a number to always round down, no matter what? Example:

    2.6666 = 2

    Is that possible in ASP Classic / VB?
  16. Keep a calculated number in rhythm with a number from DB

    Ok, I'll do my best to explain this strange title. I need to keep a calculated number in ASP in "rhythm" so to speak with a database number. For example...

    Calculated number = 2
    Database number =...
  17. Re: Rename program and install next to another instance

    I figured this out. You need to click on the Setup and view it's properties within Visual Studio. Scroll all the way down and change the version number along with the Upgradecode. Does anyone know if...
  18. Rename program and install next to another instance

    Hello. I have a program in which I renamed all of the objects so that the program itself has another name. I can build everything just fine, but when I go to install the program next to the old one...
  19. Replies
    0
    Views
    588

    ODBC SSL Error

    Attached is an ssl error I'm getting while trying to make an ODBC connection to an offsite database. I have a selfssl assigned on the box, it is another bug with this "idea" called selfssl?
  20. Re: Access ODBC connection without User Credentials

    Sorry, I guess I should be more specific. It's a VB6 task that's already compiled. I don't have the source code so I can't change it's connection string. I'm sure I know the name of the dsn, so I can...
  21. Re: Access ODBC connection without User Credentials

    Thanks for the reply. The problem is I can't change the connection string because I don't have the source code.
  22. Replies
    4
    Views
    557

    Re: ActiveX Issue on New Server

    Ok I'll look around for that Dependency checker application. Thanks for the suggestion, I appreciate the help.
  23. Replies
    4
    Views
    557

    Re: ActiveX Issue on New Server

    Thanks for the reply. I know, not having the code makes it nearly impossible. I did try things like Process Monitor and Process Explorer to see if they would list the required dlls, but it's still...
  24. Access ODBC connection without User Credentials

    is it possible to use a connection string like this:

    Dim objConn As New ADODB.Connection
    objConn.open "dsn=name;"

    Without it being used on the localhost? Say I make a odbc connection...
  25. Replies
    4
    Views
    557

    ActiveX Issue on New Server

    We recently migrated server and have an automated task setup. When we attempt to run it, we get this:

    activex component can't create object

    We're having a tough time cause we don't have the...
  26. Replies
    5
    Views
    933

    Re: Retrieve ListBox Selections

    Thanks for the reply. I tried SelectedItem, but it gave me the entire description, no matter what the selection. How do I pass the one value over to another sub (like if I used a button).
  27. Replies
    5
    Views
    933

    Retrieve ListBox Selections

    Ok, here's I've got:



    Private Sub frm1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    Dim sql, pname, pid, pbrand, description
    Dim...
  28. Replies
    2
    Views
    504

    Call 2 different databases

    Is it possible to call 2 different databases on different machines? Say one local database and one off site through ODBC while using a loop? Something like:


    Dim objConn As New ADODB.Connection...
  29. Re: Insert return command after so many words

    Thanks! I think I got it from here.
  30. Re: Insert return command after so many words

    Thanks for all the great replies. Optional, I got your method working but I'm running into an issue. When printing the resultString on Printer.CurrentX = 5500, it prints it on that line, but when it...
  31. Re: Insert return command after so many words

    Wordwrap looks interesting. I was doing some reading... how do I incorporate the database field? Say...

    RS("field1")

    Into that function?
  32. Re: Insert return command after so many words

    Ok, say I have this sentence:

    "Why take vitamin and mineral supplements?"

    And I want this:

    "Why take vitamin and
    mineral supplements?"

    With a return between 'and' and 'mineral'.
  33. Re: Insert return command after so many words

    I know about the return command itself, but I need to know where to put it. I need to count in so many spaces and I need to do it by words. If I do it using the left method, it will cut words in half.
  34. Replies
    7
    Views
    725

    Re: Remove tags from description field

    lol bad example... how about this one


    <div id="Combo-Intro" class="Combo-Intro"><a name="Combo-Intro"></a>
    <p>This drug is a combination of two or more active ingredients. Please refer to each...
  35. [RESOLVED] Insert return command after so many words

    Is it possible to enter a return command in VB after so many words? I'm trying to build a column on a printed invoice and it's pulling the data from a field in a database.
  36. Replies
    7
    Views
    725

    Re: Remove tags from description field

    What if you have something like this?


    <div id="sidebar" class="sidebar"><a name="sidebar"></a>
    <ul class="sidebar">
    <li class="Ingredient-List" style="list-style-image:...
  37. Replies
    7
    Views
    725

    Re: Remove tags from description field

    Thanks for the reply! I'll give this a try.
  38. Replies
    7
    Views
    725

    Remove tags from description field

    Is there an easier way to remove tags like <div> <class = whatever> than doing it with a ton of replaces? I have a ton of content in a field but it's filled with these tags which I don't want to...
  39. Re: Write Programs for Wireless Barcode Scanner

    Thanks for the info. Ever heard of WaveLink Studio?
  40. Replies
    5
    Views
    1,144

    Re: Shorten Barcode Height

    Thanks for the response. How about this...


    Printer.FontSize = 25

    Printer.FontName = "Code 128AB f"

    Printer.Print...
Results 1 to 40 of 225
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width