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 strongm 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. madlarry

    Building a test web service

    Hi, I have been given a WSDL file for a web service. I'll be developing the code to communicate with the web service off-site, so I can't directly test it with the actual web service. I want to reverse engineer a test web service from the WSDL. I've run the WSDL.exe with the /server switch to...
  2. madlarry

    Determine whether numeric is a whole value

    Brilliant! Many thanks bborissov!
  3. madlarry

    Determine whether numeric is a whole value

    Hi, I'm trying to determine whether the value contained in a numeric field is a whole value or not. I.e. 12.000000 is a whole value, whereas 654.1234000 is not. I've tried various things but I can't seem to work it out. I thought that the following function would return 0 if there was no...
  4. madlarry

    Message size

    Sorry, I wasn't quite specific. I need to work out some statistics for a web application that is hosted in IIS, for sizing purposes. I need to work out the average size of messages 'sent' and 'received' from the clients to the web application on the IIS Server. I think I've found what I'm...
  5. madlarry

    Message size

    Hi, Does anyone know how to determine the exact size of the Request and Response messages for a web application running on IIS? Is there a tool or something that can capture this information? Many thanks.
  6. madlarry

    Active Network Connection

    Hi, Does anyone know how to enumerate the 'Network and Dial-Up Connections' in Win2k? I want to programmatically work out which connection on my PC is currently active (e.g. Local Area Connection 2 or Local Area Connection 3). I've tried searching MSDN etc but to no avail (not sure exactly...
  7. madlarry

    MSXML4 Help in Visual Studio 6

    Hi, Can anyone tell me how to attach the help for the MSXML4 SP2 SDK help files to the Visual Studio 6 IDE? So that when I press F1 on an XML function it goes straight to the correct help details rather than displaying the 'Keyword not found' details. I'm sure I've done this before but I can't...
  8. madlarry

    How do you set MS Visual Installer shortcut arguments?

    If you are using the Visual Studio Installer you can use the Orca tool to modify the MSI file for your installation: The following link shows how to install Orca. http://support.microsoft.com/default.aspx?scid=kb;en-us;255905 You will then be able to modify the 'Shortcut' table within the MSI...
  9. madlarry

    Make page invisible

    Thanks for the suggestion, but this still leaves the page being displayed, and stops the rest of the execution of the window_onload function (which is where the window.close gets called from).
  10. madlarry

    Make page invisible

    Hi, I have an ASP page that searches for customers details and returns the data in a list that the user can select which in turn populates the data into an HTML page that the ASP page is called from (this works fine). If there is no data I have an alert that is called within the window_onload...
  11. madlarry

    Error when opening recordset

    Check out the following link: http://support.microsoft.com/default.aspx?scid=kb;en-us;133381 I know you're not using Access but the same principles may apply.
  12. madlarry

    SQL WHERE clause not working

    What is the error message that is produced?
  13. madlarry

    SQL WHERE clause not working

    Sorry, my mistake, it will be true. Have you tried enclosing the dates in apostrophes ' ?
  14. madlarry

    SQL WHERE clause not working

    Hi, The where clause: WHERE (ou_dba.req_assign.promised_begin_dt > " & DateFrom & ") AND (ou_dba.req_assign.promised_begin_dt < " & DateTo & ")" This is the same date ou_dba.req_assign.promised_begin_dt in both the 'greater than' and 'less than'. It will never be true.
  15. madlarry

    SQL Windows/SQLBase API

    Hi, Check out the following: http://www.centurasoft.com/DevCenter/DownloadsDisplay.aspx?ProdID=1 There is loads of links to documents that describe what you are trying to do.
  16. madlarry

    VB6 and FileSystemObject

    You need to reference the 'Microsoft Scripting Runtime' object in the References. You will then see the FileSystemObject in the Object Browser.
  17. madlarry

    Extracting Images from Sybase

    Hi, You will need to use the GetChunk and AppendChunk methods to get at the BLOB data (Binary Large OBject). Have a look at the following link: http://support.microsoft.com/default.aspx?scid=kb;en-us;153238 I'm assuming that you are using ADO to get at the data. I know these methods work...
  18. madlarry

    Colour change in another application

    Hi, Is there any way that I can change the background colour of fields in another application that is running? Is it possible via WinAPI calls? Thanks,
  19. madlarry

    Error Handler Displaying Function Name

    As you've probably noticed that with this kind of thing is that there is a lot of cutting and pasting of blocks of code. One useful VB addin (that's free) I have come across is sliceanddice. It allows you to pre-define blocks of code and by right clicking in the IDE you can add the pre-defined...
  20. madlarry

    Install a file no matter what

    You could try creating a Merge Module, adding your files to it. Then add the Merge Module to your installation routine and select the IgnoreVersion property for the merge module. I haven't tried it - it might work. Madlarry

Part and Inventory Search

Back
Top