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. DrJavaJoe

    Congratulations StrongM

    Who knew you could thread a wombat before Strongm showed us and all without Regular Expressions. Thanks strongm and congrats. Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my...
  2. DrJavaJoe

    numbers slightly different immediately after equal assignment

    I'm with Adoozer the problem is how the computer stores floating point decimals. Try writing .222 in binary. Here's a couple sites to look at. http://en.wikipedia.org/wiki/Binary_numeral_system http://babbage.cs.qc.edu/courses/cs341/IEEE-754.html Two strings walk into a bar. The first string...
  3. DrJavaJoe

    Limitation on VB-project size

    I've been using it for a long time and it works fine here. Maybe it is conflicting with another add-in. Are you running sp6? You could always try running UPX from the command line. Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer...
  4. DrJavaJoe

    Limitation on VB-project size

    You can compact the exe and reduce its size significantly. Here's a link for UPX - Ultimate Packer for eXecutables along with another link for a submission to PSC for an Addin that utilizes UPX. http://upx.sourceforge.net/...
  5. DrJavaJoe

    Debugging a VB6 class library - VERY SLOW startup

    Visual basic has a service pack 6 http://msdn.microsoft.com/vstudio/downloads/updates/sp/vs6/sp6/default.aspx Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL...
  6. DrJavaJoe

    Expanding my universe

    Take a look here: http://www.mentalis.org/apilist/apilist.php Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL terminated'.
  7. DrJavaJoe

    Number of digits after decimal point

    See the following links regarding the limits on floating point math. http://support.microsoft.com/default.aspx?scid=kb;en-us;42980 http://www.vb-helper.com/tutorial_floating_point.html Also you are converting sngValue to a string 2 times try this Private Function MoveNumberBy(strValue As...
  8. DrJavaJoe

    XML from VB6

    Is this a public or private server and data? Can you post the address and let us have a crack at it? Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL terminated'.
  9. DrJavaJoe

    XML from VB6

    Have you tried: xmlHttp.setRequestHeader("Accept-Encoding","gzip, deflate") Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL terminated'.
  10. DrJavaJoe

    XML from VB6

    Bob: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmes2k/html/devwebapps.asp croydon: Check the status Property if OK it should be 200, other return codes can be found here...
  11. DrJavaJoe

    XML from VB6

    What are you expecting from this server request? From MSDN: ResponseBody Variant array Returns the body of the response as an array. ResponseStream IStream Returns the body of the response as an ADO Stream object. ResponseText String Returns the body of the response as a text string...
  12. DrJavaJoe

    XML from VB6

    Try this Dim XML_Send As DOMDocument50 Set XML_Send = xmlHttp.responseXML msgbox XML_Send.xml Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL terminated'.
  13. DrJavaJoe

    XML from VB6

    Try this and let us know if it works: Const SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS = 13056 Dim xmlHttp As New ServerXMLHTTP50 xmlHttp.Open "POST", strServer, False xmlHttp.setRequestHeader "Content-Type", "text/xml" xmlHttp.setOption 2, SXH_SERVER_CERT_IGNORE_ALL_SERVER_ERRORS xmlHttp.send...
  14. DrJavaJoe

    silent agent

    Make sure the proper speech engine is installed on the new computer, you can download them free at: http://www.microsoft.com/msagent/downloads/developer.asp Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The...
  15. DrJavaJoe

    It is with great pleasure I announce......

    Way to go. [cheers] Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL terminated'.
  16. DrJavaJoe

    Taking values from a string

    I'm with Tom go with RegExp. Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my friend, he isn't NULL terminated'.
  17. DrJavaJoe

    Sin(pi) not zero

    From MSDN: System.Double and System.Single have inexact precision of decimal digits because internally they are a floating point binary numbers. As such, beyond a certain number of significant digits, their decimal representation becomes approximate. Two strings walk into a bar. The first...
  18. DrJavaJoe

    Themed ComboBox Bug???

    Start a new project and add a Combobox and a command button. Then add the following code and run the app. Now click on the drop down arrow and mouse over item 2, 3 or 4 in the drop down list, as you mouseover each item it should become highlighted. Now rather than clicking on one of the items...
  19. DrJavaJoe

    Combobox Bug???

    Yeah, just look around your desktop at all of the XP styled combos and wonder which of them have code in the click event that the developer expected to run. Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The...
  20. DrJavaJoe

    Combobox Bug???

    I found the pattern it only occurs in XP themed combos such as Internet Explorer's or in my case I themed Visual Basics IDE. Two strings walk into a bar. The first string says to the bartender: 'Bartender, I'll have a beer. u.5n$x5t?*&4ru!2[sACC~ErJ'. The second string says: 'Pardon my...

Part and Inventory Search

Back
Top