Search:

Type: Posts; User: Cube8

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Re: [VB6] - Module for working with multithreading.

    You can have multiple processes, but this topic is about having a single exe.
  2. Re: [VB6] AddIn Document Map (graphical code thumbnail) - v2.0 Updated 16/06/21

    Oops! You're right, I missed it.
  3. Re: [VB6] AddIn Document Map (graphical code thumbnail) - v2.0 Updated 16/06/21

    Where is the download link?
  4. Re: [VB6] TaskDialogIndirect - Complete class implementation of Vista+ Task Dialogs

    Just don't assign anything to hWndParent property.
  5. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    There could be a new property (long), called (for example) LoadBufferSize, that would take the chunk size in bytes.
  6. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    If you use the ToolTipText property, it is normal because it does not support unicode.
  7. Re: [VB6] TaskDialogIndirect - Complete class implementation of Vista+ Task Dialogs

    I think MZTools is a bit unstable. I have used it in the past (before even fafalone released this class) and I also had some issues.
  8. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    The purpose of this thread is to provide code for download and maybe some clarification about its usage.
    For more help/support, you should create a thread under Visual Basic 6 and Earlier forum, in...
  9. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    Can some moderator/admin please move those posts to a new thread?
    This thread is not for supporting the usage of the control.
  10. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    You can implement this behavior by putting the time-consuming code in a timer. The timer should be initially disabled, interval=200.
    Then, all you have to do is:


    Private Sub...
  11. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    It would be "too much" to make these changes in functionality to such a "simple" method/property. That's why we proposed a new method for what you ask.
  12. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    A ResetAllColors method could be added, which would do what Hosam AL Dein requests.
  13. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    Maybe you can create a tutorial thread of how to achieve this? It could be a common demand to change the default font in the IDE to a truetype font.[/QUOTE]

    Yes, it would be very handy, since MS...
  14. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    DEP issues are caused by some subclassing methods.
    Do you do any subclassing? If yes, how?

    However, I doubt if this is relevant to this thread.
  15. Re: [VB6] TaskDialogIndirect - Complete class implementation of Vista+ Task Dialogs

    Typo: Event DialogConstucted -> DialogConstructed
  16. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    Yes, commenting that statement does the job. Thank you.

    I have added a new property OleCallbackEnabled [True (default)/False]. Then, instead of just commenting out this statement, I put an If...
  17. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    There is, since you handle it:


    Private Function WindowProcControl(ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long
    Select Case wMsg
    ...
    Case...
  18. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    I have a special problem with RichTextBox.
    Until now, I subclassed a textbox, in order to catch WM_CONTEXTMENU and show a custom popup menu. I have a class that does all the dirty work of...
  19. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    http://www.vbforums.com/showthread.php?606736-VB6-XP-Vista-Win7-Manifest-Creator
  20. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    Again, as VbNetMatrix said, you can't use a psd file in any way in VB. It is a proprietary file format, created by Adobe for use specifically by Photoshop.
    ...
  21. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    You shouldn't, since there are still many XP installations out there.
  22. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    This is an issue with the common dialog itself.
    I use GetSaveFileName directly and I also sometimes get the file without the extension. I guess in this case we should check the nFilterIndex property...
  23. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    @brandoncampbell
    Not really necessary.
    See here, here and here.
  24. Replies
    20
    Views
    11,405

    Re: [VB6, Vista+] Simple Task Dialog

    @LaVolpe
    Would you mind if you posted a link to your implementation here, once you upload it? ;)
  25. Replies
    20
    Views
    11,405

    Re: [VB6, Vista+] Simple Task Dialog

    Very nice implementation.
    A small note though:
    InitCommonControls is not a function but a sub (void InitCommonControls)! There might not be any noticeable problem at first but you are corrupting...
  26. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    Now, LaVolpe, that's another issue to take into account for the new control ;)
  27. Replies
    3,742
    Views
    1,870,218

    Re: CommonControls (Replacement of the MS common controls)

    Judging by the about form, the obvious answer is no, because its buttons are not styled, either.
  28. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    Indeed. I just gave a simplified answer :)
  29. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    You can't send it to front. It is a windowless control. It will always be behind other controls.
  30. Replies
    10
    Views
    1,695

    Re: Stuck With Visual Basic 6.0

    The Execute function returns a boolean value. If the search string is not found, it will return False, so it is up to you to check it.
  31. Replies
    10
    Views
    1,695

    Re: Stuck With Visual Basic 6.0

    Put a breakpoint at the beginning of the Comman1_Click event and step through the code. That should give you a hint of what is actually happening...
  32. Re: [RESOLVED] [Winsock] When Client "Ends Process" winsock control does not close

    The only way I can think of to detect such problems is probably by the use of a driver, which is (was?) not our case here.
  33. Re: [RESOLVED] [Winsock] When Client "Ends Process" winsock control does not close

    You must be joking, right? Tell us one way to make an application detect its forced termination from task manager (for instance). Or maybe when a sudden power failure occurs...
  34. Re: [RESOLVED] [Winsock] When Client "Ends Process" winsock control does not close

    First, the thread is considered resolved and we should let it rest in peace...
    Second, the code you provided will not work, since the connection is terminated unexpectedly.
  35. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    I admire your passion, LaVolpe!
    You have "heard" so many compliments, that anything I say will be needless.
  36. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    Wikipedia: http://en.wikipedia.org/wiki/Dots_per_inch#Computer_monitor_DPI_standards

    Actually, increasing the DPI setting, while keeping the same resolution, makes everything bigger and the object...
  37. Re: [vb6]Alpha Image Control v2 - Final Update (15 Jan 2012)

    Can you explain which parts of the interface will change, that will cause binary compatibility to break?
  38. Replies
    18
    Views
    2,349

    Re: How to accurately time code execution

    Even benchmarking applications don't have such "strict" requirements.

    The only way to force the system to give all cpu resources to your app, is to set its priority to time critical.
  39. Replies
    18
    Views
    2,349

    Re: How to accurately time code execution

    I was going to say exactly this.
    What's the point in measuring an app performance in such a "sterilized" environment?
  40. Re: [vb6]Alpha Image Control (PNG, AniGIFs, TIFF, & more) [16 Nov 2011]

    You misunderstood. I meant registering with regsvr32. The GUID is already inside the ocx.

    The reason for un-registering and then re-registering (regsvr32 /u and regsvr32 respectively) is because...
Results 1 to 40 of 229
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width