Search:

Type: Posts; User: pantalone

Page 1 of 4 1 2 3 4

Search: Search took 0.04 seconds.

  1. How to draw a green cross in the center of the main window?

    It is necessary that the drawn cross always remains in the center of the window when the window is resized.
    Could you help with code?
  2. Re: How to remove system tray icon of another application?

    To hide the parental control program from the child. Otherwise, he sees it, enters the menu and realizes that it must be bypassed or disabled. And he starts looking for a way to do this.
  3. Re: How to remove system tray icon of another application?

    Yes.
  4. How to remove system tray icon of another application?

    Is it possible in Windows 10?
  5. How to set pause before entering to stand by or hibernation mode?

    I use WM_POWERBROADCAST to detect when the computer is start to going into sleep mode. But I need few seconds to complete the transaction in database before the computer goes to sleep. How to set...
  6. Re: How to get good system icon if system text and other items are increased by 190%?

    dilettante, thank you very much for the code, I am impressed.
    Whether there is some pitfalls when using this code?
  7. Re: How to get good system icon if system text and other items are increased by 190%?

    Very interesting.
    Why icon such an yellow and ugly if the manifest is used?
    I have attached the file with screenshots on Win 7 and 10, and my project with various attempts to load the icon. At top...
  8. Replies
    97
    Views
    140,732

    Re: [VB6] XP/Vista/Win7 Manifest Creator

    Thank you.
    Do I need to use all this code when I use external manifest file next to exe file?
  9. Re: How to get good system icon if system text and other items are increased by 190%?

    I will try it, thank you.
  10. Replies
    97
    Views
    140,732

    Re: [VB6] XP/Vista/Win7 Manifest Creator

    Please could you tell why we need to add all this (below) to the Project?
    I tried without it and everything works fine, buttons and controls looks good.

    Private Declare Function LoadLibraryA Lib...
  11. How to get good system icon if system text and other items are increased by 190%?

    I need system icon Exclamation on Windows 7 system with text 190%. I use:


    hIcon = LoadIcon(0, IDI_EXCLAMATION)
    DrawIcon Picture1.hDC, 0, 0, hIcon

    Or


    ExtractIconEx...
  12. Re: Internet transfer control (msinet.ocx) and windows firewall

    Thank you. What a terrible default rules for the firewalls :ehh::cry:
  13. Internet transfer control (msinet.ocx) and windows firewall

    Internet transfer control is freely going through windows firewall, why?
  14. Replies
    3
    Views
    1,020

    Re: Problem with menu item name

    Help! No one knows? And no one man with native english language here?
  15. Replies
    3
    Views
    1,020

    Problem with menu item name

    English is not my native language.
    I create a software. One tool of the software creates the reports (HTML file) or export data (CSV file), all in one dialog box.
    I need to create a menu item which...
  16. Replies
    0
    Views
    510

    msinet.ocx and strange bug

    Please see the attached little project.
    This is a bug? What is wrong? :(
    If delete GetContentType("http://www.gor-net.ru/favicon.ico") then all works good.
    Please help.
  17. Re: URLDownloadToFile WITH userdefined Timeout ???

    I need it too!
  18. Re: [RESOLVED] Rotating and saving an image in one picture box

    Wow, good code!

    Can you help me with this code:
    Rotate90 Picture1
    Picture2 = Picture1

    I have no result :(
  19. Replies
    1
    Views
    2,299

    How to rotate picture with gdiplus?

    Is it possible?
  20. Replies
    9
    Views
    5,362

    Re: [RESOLVED] RegCreateKeyEx Vista

    Hello, guys!
    I tried to use RegCreateKeyEx to create "HKEY_CURRENT_USER" "Software\Microsoft\Windows\CurrentVersion\Policies\Explorer" key. But Vista don't allow it and I get error. I don't get an...
  21. Re: Is it legal to distribute cdosys.dll with my setup files?

    Can you tell me its name?
  22. Is it legal to distribute cdosys.dll with my setup files?

    I want to use cdosys.dll (CDO for send email) in my commercial project.
    Can I get cdosys.dll from c:\windows\system32 folder and include it to my install package?
  23. Cannot run NTService by clicking EXE (service via NTSVC.ocx)

    I created NT Service by using NTSVC.ocx.
    Installed ok.
    But I cannot run NTService by clicking EXE?

    How should work this the code?


    Private Sub Form_Load()
    NTService1.StartService
    End...
  24. Re: NT service on Vista using VB6, is it possible?

    Yes, all worked now. Except on Vista.
  25. Re: NT service on Vista using VB6, is it possible?

    I managed to create the service using the NTSVC.OCX component, but how do I keep my application from shutting down when the user logs out? Even though I've successfully got the service running my...
  26. Re: NT service on Vista using VB6, is it possible?

    Unfortunately I have not found any working examples. And I can not solve it by myself :(
  27. Re: NT service on Vista using VB6, is it possible?

    hello?
  28. NT service on Vista using VB6, is it possible?

    Hi guys!
    I need to create the NT service.
    If I use NTSVC.ocx or Writing NT service using VB6/VB5 it works only on XP :(
    Anyone able to write a service that work on Vista? :confused:
  29. How to forbid copying and cutting from text field?

    How to forbid copying and cutting from text field?
    I want to show the message that the text is already copied to Clipboard.
  30. Re: Bug with StatusBar size after window is maximized/minimized

    RhinoBull
    Thank you!!!
  31. Re: Bug with StatusBar size after window is maximized/minimized

    Any ideas?
  32. Re: Bug with StatusBar size after window is maximized/minimized

    My English is so bad? Very pity.
    OK, I will try explain.

    This is the window before maximization:

    http://www.vbforums.com/attachment.php?attachmentid=69450&stc=1&d=1236192626

    And this is...
  33. Re: Bug with StatusBar size after window is maximized/minimized

    I apologize if I have confused you. I meant the restore of the window size rather than minimize.
  34. Re: Bug with StatusBar size after window is maximized/minimized

    I have no errors.
    But the text field does not decrease in size when I call minimize for window.
    Why you say that impossible? After all I have said that has checked this and it does not work!
  35. Re: Bug with StatusBar size after window is maximized/minimized

    I already removed all from Form_Resize.
  36. Re: Bug with StatusBar size after window is maximized/minimized

    I checked it. For minimize still not worked :(
  37. [RESOLVED] Bug with StatusBar size after window is maximized/minimized

    I need to adjust the field size with statusbar size.
    When I resized the main window manually it works fine.
    But when I use maximize or minimise, it doesn't. Why???
  38. Replies
    3
    Views
    510

    Re: Please help with non english characters

    I don't know how to fix it. My programming level not so high.
  39. Replies
    3
    Views
    510

    Re: Please help with non english characters

    Help!!!
  40. Replies
    8
    Views
    3,219

    Re: DateValue(now) and Type mismach

    Visual Basic is terrible code language :(
Results 1 to 40 of 154
Page 1 of 4 1 2 3 4



Click Here to Expand Forum to Full Width