Search:

Type: Posts; User: Dubya007

Page 1 of 13 1 2 3 4

Search: Search took 0.24 seconds.

  1. Replies
    4
    Views
    1,668

    Re: AXE library with Classic ASP

    I can install COM-objects on the server. What do you have in mind?
  2. Replies
    4
    Views
    1,668

    Re: AXE library with Classic ASP

    Any one?
  3. Replies
    4
    Views
    1,668

    AXE library with Classic ASP

    Has any one used the AXE Library for Classic ASP to parse JSON data? I'm attempting to use it but have been unsuccessful in even getting the tests to work.
  4. Replies
    17
    Views
    1,569

    VS 2010 Re: trying to understand threading

    Wow that worked. I guess I don't understand as much as I thought that I do. Thanks for all of the help everyone. I will mark this as solved.
  5. Replies
    17
    Views
    1,569

    VS 2010 Re: trying to understand threading

    That is triggered via a button
  6. Replies
    17
    Views
    1,569

    VS 2010 Re: trying to understand threading

    I should add that I have found that the DoWork sub itself is firing twice for some reason. It isn't that ImportOrders is firing twice, the entire sub is being called twice. I'm not sure why.
  7. Replies
    17
    Views
    1,569

    VS 2010 Re: trying to understand threading

    My apologies.

    Public Sub New()
    InitializeComponent()
    BackgroundWorker1.WorkerReportsProgress = True
    BackgroundWorker1.WorkerSupportsCancellation = True

    ...
  8. Replies
    17
    Views
    1,569

    VS 2010 Re: trying to understand threading

    I have gone through all of the tutorials and have about 98% accomplished what I need to. however I am having a bit of an issue. The code in my DoWork sub executes twice for some reason. Is this...
  9. Thread: Type Mismatch

    by Dubya007
    Replies
    3
    Views
    1,791

    Re: Type Mismatch

    If i remove the () from the Dim statement I get a type mismatch error right away. Before it is giving me the error after the first pass through the loop.
  10. Thread: Type Mismatch

    by Dubya007
    Replies
    3
    Views
    1,791

    Re: Type Mismatch

    I think this may have to do with variable scope. Can any one weigh in?
  11. Thread: Type Mismatch

    by Dubya007
    Replies
    3
    Views
    1,791

    Type Mismatch

    I am connecting to an XML file with vbscript and looping through some of the elements.
    In the loop I have 3 arrays I have to use during the loop. At the end of the loop before the Next statement I...
  12. Replies
    1
    Views
    794

    Re: Looping through Array Logic

    We've actually decided to go in a different direction with this project.
  13. Replies
    1
    Views
    794

    Looping through Array Logic

    I have an interesting problem, that I have been attempting to solve for weeks.
    I have 3 arrays
    1 array is for tracking numbers
    1 array is for products
    1 array is for product Quantities

    I have...
  14. Replies
    17
    Views
    1,569

    VS 2010 Re: trying to understand threading

    I actually just edited the post after i submitted it. I saw I pasted the wrong code in there. My apologies.
  15. Replies
    17
    Views
    1,569

    VS 2010 [SOLVED]trying to understand threading

    I am a beginner at threading right now and have been working off of the MSDN multi-threading post. I am attempting to use the example and count to 1000 add each number to a list box. while the...
  16. Replies
    4
    Views
    1,914

    VS 2010 Re: Check WebResponse Status

    ident, the reason that I am using the code that way is because I am a noob at using webservices in VB.net. I usually use vbs to accomplish everything but it is not an option right now. I found some...
  17. Replies
    4
    Views
    1,914

    VS 2010 Check WebResponse Status

    I am attempting to submit some SOAP and receive a response back. I have been able to handle catching all of the errors that could occur. However I can't figure out how to parse the data that comes...
  18. Replies
    6
    Views
    1,533

    Re: File staying open after script executes

    I actually found out what the problem was. We have another program that was monitoring the folders and opening files to read their contents and never closing them. I felt really stupid when I found...
  19. Replies
    6
    Views
    1,533

    Re: File staying open after script executes

    I didn't program all of that so, I can't honestly tell you why there are forward slashes. LOL. I just noticed that as well...

    That probably wouldn't have anything to do with the file permission...
  20. Replies
    6
    Views
    1,533

    Re: File staying open after script executes

    I have checked the file folder permissions about 100 times to make sure that is not the problem. The error line is here:

    Set OrderFile = OrderFSO.CreateTextFile(strOutputFile2, TRUE)

    If after...
  21. Replies
    6
    Views
    1,533

    File staying open after script executes

    I have a script that will fire once an hour. In this script txt files are created. The next time the script fires, it may or may not create another file (with the same name). However I am getting an...
  22. Replies
    1
    Views
    976

    OpenTextFile Question

    I am working with classic ASP (not by choice) and I am attempting to create a Log File for each day of operation.

    First I check to make sure that the file exists
    If it does then I open the file...
  23. Thread: SOAP response

    by Dubya007
    Replies
    0
    Views
    781

    SOAP response

    So I'm using SOAP to pull info from a website. I'm getting a response and that works fine. However I'd like to know how to format the response.


    Set xmlhttp =...
  24. Replies
    3
    Views
    589

    Re: Moving a File in ASP

    okay that is great. Is there an example somewhere of moving files?
    The permissions would be set in IIS correct?
  25. Replies
    3
    Views
    589

    Moving a File in ASP

    Is it possible to move a file from one folder to another via classic ASP??
  26. Replies
    3
    Views
    1,372

    Re: DB Error Catching Function

    That worked. However I now have a new problem with it.
    I have to loop through a tab delimited file and make sure that the DB names that are submitted are actually DB's.
    My code is below (most of it...
  27. Replies
    3
    Views
    1,372

    DB Error Catching Function

    I'm attempting to write a function that will catch the following error


    Microsoft OLE DB Provider for ODBC Drivers error '80004005'

    [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot open...
  28. Replies
    0
    Views
    510

    ASP version of fgetcsv

    Is there an ASP version of php function fgetcsv. I've looked and cant seem to find one.
  29. Replies
    29
    Views
    5,207

    Re: Serial Port not writing back

    I'm a little unclear as to how to get the weight actually show up on the form now. (sorry I've not programmed like this in years)

    Which sub or function will i have to call in order to accomplish...
  30. Replies
    29
    Views
    5,207

    Re: Serial Port not writing back

    The Units then I won't need either so that I can just pull what ever the scale says.

    Also what is ledMotion?
  31. Replies
    29
    Views
    5,207

    Re: Serial Port not writing back

    meter1 isn't needed then if all i want to do is read the value into a textbox right?
  32. Replies
    29
    Views
    5,207

    Re: Serial Port not writing back

    Okay next question
    There are a few variables that are underlined because they aren't declared. I've gone through the code to see where they need to be declared but I'm kinda lost on some of them,
    ...
  33. Replies
    29
    Views
    5,207

    Re: Serial Port not writing back

    Awesome Thanks. Do i have to add a serial port object?
  34. Replies
    29
    Views
    5,207

    Re: Serial Port not writing back

    That would certainly be helpful if you could post that code.
  35. Replies
    29
    Views
    5,207

    Re: Serial Port not writing back

    Actually I think that if you example just shows data as it is recieved then in theory it would be real-time correct? so I were to put something on the scale it should automatically update in the...
  36. Replies
    2
    Views
    564

    VS 2008 Re: DBNull

    That worked great! Thank you so much for the fast answer.

    Here is my final Code.

    If reader.IsDBNull(reader.GetOrdinal("CARRIERCODE")) Then
    lblShipping.Text = ""
    ...
  37. Replies
    2
    Views
    564

    VS 2008 [RESOLVED] DBNull

    I've been getting this error when pulling data from a recordset. It is coming from a null entry and as a newbie to VB2008 I'm not sure how to get around this.

    here is my code
    lblShipping.Text =...
  38. Replies
    1
    Views
    955

    UTC Date trouble

    I need to have a vbscript run every hour. This script need to dynamically get the previous UTC hour.
    Example If it runs at 9 AM Est I need it to return: 8amUTC and 9am UTC.

    I can create the...
  39. Replies
    7
    Views
    8,560

    Re: Access childnodes XMLDOM

    That worked perfectly. Thank you so much for all of your help. :thumb::D
  40. Replies
    7
    Views
    8,560

    Re: Access childnodes XMLDOM

    Wow I was actually working towards that while I waited. Thank you so much.
    What if the <Orderlist> tag has an attribute of type? is it possible to access that info?
    <orderlist type="resident">...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width