Search:

Type: Posts; User: ColinE66

Page 1 of 8 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    6
    Views
    96

    Re: Having trouble with control array

    @MarkT - good point. I assumed that the error was occurring in the first timer sub and not the second one. Didn't even take much notice of the second one, actually!
  2. Replies
    6
    Views
    96

    Re: Having trouble with control array

    Image3.UBound will return the highest .Index property assigned to your control array and not the number of elements in the control array (just tested)

    Therefore you have an Image3 control whose...
  3. Replies
    4
    Views
    238

    Re: Vb6 Advanced tabs

    There are no tabs. You create them yourself in code in the same way that the other controls are created in the demos that can be downloaded from the site.
  4. Re: help with horizontal word finder in msflexgrid

    Continuing with Doogle's theme it may be more efficient to analyse the grid first, populating an array of strings for all vertical, horizontal and diagonal 'paths'.

    i.e. for a 3x3 grid you'd have...
  5. Replies
    9
    Views
    723

    Re: changing label back color (Blinking)

    He-heh
  6. Replies
    4
    Views
    238

    Re: Vb6 Advanced tabs

    Check out the vbrichclient4.dll. You could make one quite easily with that

    http://vbrichclient.com/#/en/About/
  7. Replies
    10
    Views
    1,621

    Re: Pure VB6 TreeView Control

    No, there is no property. In my demo you could add checkbox controls to achieve that effect but, since you are more interested in the Cairo stuff, the answer is that you would need to create them...
  8. Replies
    10
    Views
    1,621

    Re: Pure VB6 TreeView Control

    What, in a demo? Did you actually read the first post?
  9. Replies
    3
    Views
    1,422

    Re: VB6 Cairo-Drawn TreeView

    From the rules pertaining to this section:
  10. Replies
    3
    Views
    1,422

    Re: VB6 Cairo-Drawn TreeView

    Preview of Test Harness:

    98261
  11. Replies
    3
    Views
    1,422

    VB6 Cairo-Drawn TreeView

    Hi all,

    I've been working on a VB6 treeview control that I created from scratch using plain old VB6 in combination with Olaf Schmidt's excellent Cairo wrappers (vbRichClient4.dll)

    After...
  12. Re: Programmatically set dimensions of MSFlexGrid based on columns/rows

    Oh, and the grid line width is NEVER a factor, to my surprise...
  13. Re: Programmatically set dimensions of MSFlexGrid based on columns/rows

    Been playing around with this as it should (you'd imagine!) be simple.

    Anyway, if you have a flat grid with no borders, then take the sum of all .ColWidths and size the grid to that total, you...
  14. Re: Programmatically set dimensions of MSFlexGrid based on columns/rows

    OK, but if your users have their scrollbars set to anything other than the default size then your 'magic' 23 will not be so magic after all...
  15. Re: Programmatically set dimensions of MSFlexGrid based on columns/rows

    Don't forget that you need to allow for grid line width when adding up your column widths. Try with a large grid line width and you'll see....
  16. Replies
    10
    Views
    1,621

    Re: Pure VB6 TreeView Control

    The latest version does support unicode - but not the one in Post #1
  17. Replies
    3
    Views
    260

    Re: access webcamera in my laptop

    Look in the code bank. dilettante recently posted a thread demonstrating this...
  18. Replies
    10
    Views
    1,621

    Re: Pure VB6 TreeView Control

    Thanks Niya - that is very pleasing to hear. This control is now waaaaay better than the OP and will improve even more, I'm sure (loving Cairo drawing provided by vbrichclient4). But the fact that...
  19. Re: Is there a way to have set where the end of the mouse cursor is?

    email it me and I'll fix it for ya. You can get an address via my signature....
  20. Replies
    10
    Views
    1,621

    Re: Pure VB6 TreeView Control

    I don't know if anybody is interested (since nobody has posted here), but recently I resumed work on my Tree control, making some fairly significant changes in the following areas:

    - GRAPHICS...
  21. Re: Clicking the OK button on a MessageBox if user doesn't do it

    Nah. That'd be bloat-ware...
  22. Re: Trying to get custom mouse cursor to load when the mouse is over a picture box?

    My posted wasn't intended as an 'idea'. I was describing how you are supposed to use the MousePointer property. Perhaps you can use your current graphic (Pencil.cur) in the way you did previously;
    ...
  23. Re: Trying to get custom mouse cursor to load when the mouse is over a picture box?

    You need to assign the picture to the MouseIcon property and set the MousePointer property to '99 - Custom'

    The MousePointer property DOES NOT hold the cursor!
  24. Re: Clicking the OK button on a MessageBox if user doesn't do it

    LOL. One modal form. One label. One timer. Job done...
  25. Re: Clicking the OK button on a MessageBox if user doesn't do it

    Make your own message box (from a form) and incorporate a timer into it that will close the form?
  26. Re: [RESOLVED] How To: Center text in a listbox

    Or even

    List1.AddItem Space$(9 - Len(CStr(i))) & "Server " & i
  27. Re: How To: Center text in a listbox

    I'm curious as to why there is a wish to do this in the first place? I can only assume that the first item is meant to look like a header for the rest of the list? Or is, in some other way,...
  28. Replies
    2
    Views
    386

    Re: SQL within an SQL??

    Air code but it will be something like this...

    SELECT trans_date AS Date
    SUM(sold_price * sold_qty) AS AmountDue,
    SUM(trans_cash) AS Cash,
    SUM(trans_cash - (sold_price * sold_qty)) AS...
  29. Replies
    4
    Views
    352

    Re: help with sql query !

    Well, assuming that you are the only user writing to this table the answer is SELECT MIN(Prev_id) FROM linked.

    I suspect, however, that your illustration of the problem is lacking some relevant...
  30. Replies
    48
    Views
    811

    Re: Getting the path to a file

    App.Path & ".\Data\File1.txt"

    EDIT: My bad. I thought you could use dot notation as described above. Well, maybe you can, but not as I illustrated (as my failed test just revealed!)
  31. Replies
    10
    Views
    1,621

    Pure VB6 TreeView Control

    ....or ListView if you set the 'Indentation' Property to zero.... ;-)


    Why I created this:
    I am developing a treeview control BUT this isn't it!

    At this stage, I am just creating the classes...
  32. Replies
    29
    Views
    3,086

    Re: VB6 - DirectShow WebCam Minimal Code

    OK. I was just trying to help as earlier you said this:
  33. Replies
    3
    Views
    1,334

    Re: [RESOLVED] [VB6] - instead api_doevents

    Thanks Bonnie - that's very useful...
  34. Replies
    29
    Views
    3,086

    Re: VB6 - DirectShow WebCam Minimal Code

    I actually use capstill.dll in my program (link in sig) and I do recall seeing some code at his site for working with webcams but, if memory serves, it accompanied his fsfwrap.dll - you might want to...
  35. Re: Check the value of a Variable then take some action

    Maybe he only wants to use it in one part of his code? Say, for instance, the code that validates whether the user has a licensed copy of the program...
  36. Re: how save and retrieve image in mysql database

    You should be binding the Image control to a field in the recordset, not the recordset itself, I'd have thought...
  37. Re: how to place the image of an object in the form?

    Have you seen dilettante's code in the codebank? Maybe you don't need that OCX after all?

    http://www.vbforums.com/showthread.php?708081-VB6-DirectShow-WebCam-Minimal-Code
  38. Re: Check the value of a Variable then take some action

    I see. Good luck :-)
  39. Re: Check the value of a Variable then take some action

    If it's obfuscation you're after then probably, yes...
  40. Re: Check the value of a Variable then take some action

    Actually I was just playing - Bonnies code is much simpler and does the same thing!
Results 1 to 40 of 310
Page 1 of 8 1 2 3 4