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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by LiquidSchwarz

  1. LiquidSchwarz

    Prevent downloads from timing out

    php isn't interrupting the download. The download was being interrupted before my ham-fisted php tinkering (which does seem to have improved things, though that may be spurious).
  2. LiquidSchwarz

    Prevent downloads from timing out

    I have a website where visitors can download zip files of CAD utilities. Some of my visitors have reported that the downloading of these files times out and they are unable to fully download the files (zip files about 600KB in size). I am trying to find a way that to ensure that the files...
  3. LiquidSchwarz

    RegEnumValue API--can't get consistent behavior

    The answer..... Use RegOpenEx instead of RegOpen. No more crashes.
  4. LiquidSchwarz

    RegEnumValue API--can't get consistent behavior

    I am trying to get registry values using RegEnumValue API. I am not getting consistent results. Private Declare Function RegEnumValue Lib "advapi32.dll" Alias "RegEnumValueA" ( _ ByVal hKey As Long, _ ByVal dwIndex As Long, _ ByVal lpValueName As String, _ lpcbValueName As...
  5. LiquidSchwarz

    No printer.print method in my printer

    Rookie tried getting a little too clever... Don't do this.... With Printer .print "message" .EndDoc End With "With" doesn't work and screws things up. All better now. p.s. thank you Vampire for your reply
  6. LiquidSchwarz

    No printer.print method in my printer

    No such luck. I get an error when I do that. Is there a missing reference, perhaps?
  7. LiquidSchwarz

    No printer.print method in my printer

    I am experimenting, trying to learn how to print using VB6. For some reason, my Printer class has no print method. Can anyone explain what might be happening?
  8. LiquidSchwarz

    ByVal behavior in API acts like ByRef?

    That's some thread! I'm getting that queasy feeling I get when I need to rely on things working in a manner contrary to "as advertised". In the meantime, I will repeatedly mash the "I BELIEVE" button and enjoy the show.
  9. LiquidSchwarz

    ByVal behavior in API acts like ByRef?

    I am a little confused by the behavior of ByVal as it applies to declaring API functions. I thought ByVal was supposed to prevent a function from changing the value of an input parameter. However, it seems that this is not true, given the behavior of some API calls that I have cut-and-pasted...

Part and Inventory Search

Back
Top