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 bkrike 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 HermanvLimbeek

  1. HermanvLimbeek

    IIS Permissions problem on new PC

    Maybe you've solved your problem. If not, try giving the ASPNET account write permission to this folder when you're running IIS 5.x. Under IIS 6.0 give the NETWORK SERVICE account write access.
  2. HermanvLimbeek

    Picture in Crystal Report

    I'm using Crystal Reports 9 with SQL Server but the solution might help you as well. I write the picture to the database using ADODB.Stream. In the CR report I select the image (blob) to show on the report. I have a lot of pictures so I don't want to store them in the database. At runtime I'm...
  3. HermanvLimbeek

    Printing/wind on problem in Windows 2000

    I had a similar problem when the customer switched to Windows XP. Printing to A3 was no problem on Windows 98 but with the new printerdriver it was not possible anymore (A4 was not a problem). The problem was due to the fact that the parameters for paperbin and papersize were changed with the...
  4. HermanvLimbeek

    vb/mysql temporary table

    Well, I never tried it but it should be possible. See http://dev.mysql.com/doc/refman/4.1/en/temporary-table-problems.html for more information.
  5. HermanvLimbeek

    vb/mysql temporary table

    You could use a "Create Table" query to create the table and then a "Insert Into" to fill the permanent table. Then drop the temporary table.
  6. HermanvLimbeek

    Where have all the good people gone?

    It seems you're missing a necessary file. I'd first try Dependancy Walker. See http://www.dependencywalker.com/ and http://www.mozilla.org/quality/help/dependency-walker.html
  7. HermanvLimbeek

    SendMessage?

    It seems that the only way is to use sendkeys (i.e. SendKeys "P", True) after invoking the Start menu. But you'll have to know the menu structure. Because there can be more menu items with the same letter as shortcut and the menu may differ depending on the locale.
  8. HermanvLimbeek

    Winsock example request

    You could try the csocket class. Available at: http://www.vbip.com/winsock-api/csocket-class/csocket-class-01.asp
  9. HermanvLimbeek

    Winsock example request

    Add the Microsoft Winsock Control 6.0 (MSWINSCK.OCX) to the list of components. Place the component on your form and tell the component to listen to a port you specify (1000 in this example): with winsock .Close .LocalPort = 1000 .Listen end with
  10. HermanvLimbeek

    Writing to event viewer

    Well it's always good to have a choice. And others may benefit from the information supplied.
  11. HermanvLimbeek

    Writing to event viewer

    Yes, you are right. However, reading the article gives a better understanding of the possibilities and caveats. And, as far as I remember, MS does not support and distributes the ocx anymore.
  12. HermanvLimbeek

    Writing to event viewer

    You got some work to do. Read all about it at http://www.fawcette.com/archives/premier/mgznarch/vbpj/2001/09sep01/lj0109/lj0109-1.asp.
  13. HermanvLimbeek

    Create a "Wizard-Type" App in Delphi

    You'll find an interesting example of how it's done in VB6 at http://ghp.dwakn.com/content/ghpwizard. The whole logic is placed in an ocx control, so it might be usefull in Delphi also.
  14. HermanvLimbeek

    changing ssTab colour

    It can be done. Here's a sample project: http://www.visualbasicforum.com/showthread.php?t=10518&highlight=Heaven+Hell You only need to register to this forum.
  15. HermanvLimbeek

    VB Controls - Background Transparent

    Maybe http://www.tek-tips.com/faqs.cfm?fid=1019 is what you're looking for?

Part and Inventory Search

Back
Top