Search:

Type: Posts; User: Jonney

Page 1 of 6 1 2 3 4

Search: Search took 0.02 seconds.

  1. Re: CommonControls (Replacement of the MS common controls)

    Only the latest version on 9/may has crash issue while compiling with Mainform open after you updated SubclassProc. I didn't see any crash before. Please double check where and what you have modified...
  2. Re: VB Program on a non-English speaking computer

    use API to retrieve system folder instead of fixed path.
  3. Re: CommonControlsEx (Replacement of the MS common controls)

    Thank you for additional Listview.
    From Vista/Win7,MS added lots of new features into Listview, such as enhanced grouping, Checkbox on Header,etc.
    Please consider adding checkbox and Text Edit for...
  4. Re: [RESOLVED] CopyMemory Shift Array one position

    Thank you very much.It's too complicated beyond my knowledge. I give up until I find a proper way.

    I look at Lavolpe's ImageList . He also used CopyMemory to shift Collection and array. But it...
  5. Re: [RESOLVED] CopyMemory Shift Array one position

    Thanks.

    VB allows direct assign between two arrays and ReDim Preserve / ReDim to resize the array. I am wondering what VB did at back. Does VB also use CopyMemory / GetMem4 /VarPtrArray / Varptr...
  6. Replies
    4
    Views
    294

    Re: Better grids for vb6.

    I personally recommend Flexcell which is very easy to use. I used it for few years. But it is not free.

    Distinct features:

    1. Cells can be merged.
    2. Interactive with Excel
    3. Import and...
  7. Replies
    4
    Views
    294

    Re: Better grids for vb6.

    :(

    I also dream for a open source Grid control like Excel. But for ten years, I still haven't had it.
  8. Replies
    4
    Views
    294

    Re: Better grids for vb6.

    LynxGrid has a known serious issue with the way using subclass. If OS locale is Japanese or PRC (LCID=2052), LynxGrid draw extremely slow.
  9. Re: [RESOLVED] CopyMemory Shift Array one position

    What I saw others have done so, but all of example is just RomoveItem / AddItem by one position at one time.

    In VBIDE, my code is ok if I Delete a Row or Col at one time, VBIDE won't crash and...
  10. Re: [RESOLVED] CopyMemory Shift Array one position

    I am frustrated with CopyMemory. :mad:

    OK, I have to go back VB native function to shifting array. :confused:
  11. Re: [RESOLVED] CopyMemory Shift Array one position

    It's a Excel-like Grid control but much simple. I am in charge of Data structure.

    For MS Excel like cells, we can insert a Row or a Col, Delete/Add few Rows and Cols at a time.

    Those operations...
  12. Re: [RESOLVED] CopyMemory Shift Array one position

    Oh, it is advance stuff beyond my capability at this moment. The code looks logic but failed after I call ReDim Preserve m_CellRows(m_CntOfRows - 1). I met the same problem with pure CopyMemory:

    ...
  13. Re: [RESOLVED] CopyMemory Shift Array one position

    Option Explicit

    #If False Then
    Private Type SAFEARRAY1D 'Offsets
    cDims As Integer ' +0
    fFeatures As Integer ' +2
    cbElements As Long ' +4
    cLocks As...
  14. Replies
    4
    Views
    292

    Re: Packed DIB to StdPicture?

    I used this tlb for many years.
    IBasicVideo.GetCurrentImage will cause video pause for a while.
    IAMSampleGrabberCB_BufferCB capture pictures without still.
  15. Replies
    4
    Views
    292

    Re: Packed DIB to StdPicture?

    Extract from my old project:




    Private Declare Function CreateDIBSectionPtr Lib "gdi32.dll" Alias "CreateDIBSection" (ByVal hDC As Long, ByRef pBMI As Any, ByVal iUsage As Long, ByRef ppvBits...
  16. Re: [VB6] Dereferencing Pointers sans CopyMemory

    Thanks for sharing this.
  17. Re: CopyMemory Shift Array one position

    Thank you,Milk. It needs CopyMemory ByVal VarPtr(m_CellRows(2)), 0, 4 to do garbage clean. After I put this, the data looks OK. Without this, the data got mad even though no crash.

    Thanks Bonnie...
  18. [RESOLVED] CopyMemory Shift Array one position

    Option Explicit

    Private Type CellStruct
    sText As String
    Width As Long
    Height As Long
    Font As StdFont
    ForeColor As OLE_COLOR
    '...other boolean type and Long type...
  19. Re: Windows 7, 32 bit - MSCOMCTL.OCX "could not be loaded"

    I met this problem before. The reason is that I installed then uninstalled a poor written software which used MSComctl.ocx. I uninstalled/installed VB6/SP6, the problem remained. Then I manually...
  20. Re: Windows 7, 32 bit - MSCOMCTL.OCX "could not be loaded"

    The problem I met before,after uninstall a software. Try to reinstall VB6/SP6.
  21. Re: [RESOLVED] jcButton Balloon tooltips flicker when themed (manifest) applied

    I also disable on Aero on desktop and also check on "disable visual theme' for the exe file and blablah, The problem is the same. (Win7)
    But on win8, balloon tooltips is OK.

    You mentioned you got...
  22. Re: [RESOLVED] jcButton Balloon tooltips flicker when themed (manifest) applied

    We want to slove the problem, not to hide problem. We can't expect users do the same thing.

    Thank you for help.
  23. Re: CommonControlsEx (Replacement of the MS common controls)

    Confirmed it is OS problem. The balloon tooltips works perfect on Win8.

    Edited: CommonControlsEx works On Win8.
  24. Re: jcButton Balloon tooltips flicker when themed (manifest) applied

    The OS is Win7. I tested on few PC of Win7. The balloon tooltips got the same problem. I don't have WinXP. But I will test it.

    Edited: I tested on Win8 Consumer Preview, the balloon tooltips is...
  25. Re: jcButton Balloon tooltips flicker when themed (manifest) applied

    Have you tested my attachment and duplicated the balloon tooltips flickering problem?
    It's a hidden problem. Most of people didn't notice.
    I have tested as you said.Seemed to be nothing about...
  26. Re: jcButton Balloon tooltips flicker when themed (manifest) applied

    Don't know what are you talking about.
    With theme applied, The balloon tooltips re-positioned when mouse is moving in the button.
  27. Re: jcButton Balloon tooltips flicker when themed (manifest) applied

    Not only jcButton, but also others using balloon tooltips, I suspect there's an issue in MS tooltips class when theme is applied.

    Refer to :...
  28. Re: jcButton Balloon tooltips flicker when themed (manifest) applied

    The accurate say is that balloon tooltips is 'Re-positioned':D when theme applied on Win7. Look like the balloon is just under mousepointer, so the balloon repositions again to leave small distance.
  29. Re: CommonControlsEx (Replacement of the MS common controls)

    Edited: Remove my Post regarding Balloon tooltips, Win8 has fixed the problem.
  30. [RESOLVED] jcButton Balloon tooltips flicker when themed (manifest) applied

    I found a hidden bug in MS tooltips class. If the toolstip set to TTS_BALLOON, the tooltips re-position (twice) in usercontrol only when themed (manifest) applied. But if the tooltips style is...
  31. Re: Can't set Owner-Drawn Button MousePointer as HandPointer

    Thank you. Subclass works.
  32. [RESOLVED] Can't set Owner-Drawn Button MousePointer as HandPointer

    I had studied all kinds of Owner-Drawn ActiveX Button control like JCButton,LavolopButton,CandyButton on PSC.com, but none of them got Mouse Icon work properly.If I set MousePointer as handpointer,...
  33. Re: CommonControlsEx (Replacement of the MS common controls)

    Thank you for consistent update.
  34. Replies
    4
    Views
    956

    Re: VB6 - Thumbnail view based on WIA 2.0

    "Those are the only image file formats supported by WIA 2.0."
    OK.

    AutoCAD is an industry leader in 2D and 3D CAD design, drafting, modeling, architectural drawing, and engineering software. Every...
  35. Replies
    4
    Views
    956

    Re: VB6 - Thumbnail view based on WIA 2.0

    Does WIA 2.0 generate Video's thumbnail or AutoCAD thumbnail?
  36. Re: VB6 - WebSpring Class: Read, Write, Publish to Web from your VB6 Program

    If the class has callback function, then we know the percentage of sending/receiving.

    By the way, If the folder has space,we should put "/".
    .BaseURL = "https://webdav.mydrive.ch/My Pictures/"
  37. Re: VB6 - WebSpring Class: Read, Write, Publish to Web from your VB6 Program

    Interesting. Actually, I don't understand well about your program.

    I run your demo "Data Manager". It created a folder (DataDemo) and put a file data.xml in folder \DataDemo.

    94005


    1. I...
  38. Re: CommonControlsEx (Replacement of the MS common controls)

    Fairly support Unicode.
    But because of nature of MS BUTTON, it doesn't an unicode compatible control.
    Never mind, just leave this because it's hard to fully support Unicode for a Command button.
    ...
  39. Re: CommonControlsEx (Replacement of the MS common controls)

    Thanks. I understood.
    If you can add Unicode support, then those control can be used on PC with whatever locale setting.
    How about others control built by CreateWindowEx such as Listview/Treeview?...
  40. Re: CommonControlsEx (Replacement of the MS common controls)

    Can you please change the OLEGuids.tlb to a new name to avoid conflicts with my existing OLEGuids.tlb in system32 folder?
Results 1 to 40 of 240
Page 1 of 6 1 2 3 4