CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Scrapers〘N〙Bots

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    15,989

    Re: scroll wheel & msflexgrid

    Here is an option I use that works pretty well. Its sort of a scroll/hot tracking effect where the grid automatically scrolls along with the Y position of the mouse. Works nicely.



    ...
  2. Re: How to Add or Remove Element in an Array

    I was not trying to insinuate that it's okay to code poorly or sloppily. All I was trying to say was that speed is less of a consideration today than what it used to be.

    It's a balancing act and a...
  3. Re: How to Add or Remove Element in an Array

    Today it really doesn't matter because computers today are so fast it is totally irrelevant. When did you think you would see the day when a program written in JAVA .jar would be fast LOL.
  4. Re: How to Add or Remove Element in an Array

    actually you would not have to loop through the list. Use


    With Lst
    .Text = StringToAdd

    If .ListIndex = -1 Then
    'it does not exist, so add...
  5. Re: How to Add or Remove Element in an Array

    If we want speed then code in C or C+. VB is for rapid application deployment and the reuse of objects.
  6. Re: How to Add or Remove Element in an Array

    We never liked arrays at Scrapers〘N〙Bots simply because they are too messy to deal with and you can't 'see' them.

    Instead use a listbox. If you want columns simply separate each 'column' with...
  7. Re: Tooltips for each ListBox Item in visual basic 6

    What you are forgetting is the original poster is NOT the only one interested in the information. People show up from Google Searches looking for this information?? Yes?? No?? So until this website...
  8. Re: Tooltips for each ListBox Item in visual basic 6

    Sorry to say but this method is BUGGY. It sometimes translates to the wrong list index. Try this one:

    Top of Module ...


    Private Type POINTAPI
    X As Long
    ...
  9. Re: How can I tell if a Form has the focus

    Well thank you oh internet forum policeman.
  10. Re: How can I tell if a Form has the focus

    In your programs main form, place a timer on it ...

    private sub Form_Load()

    tmrActiveForm.Interval = 3000
    tmrActiveForm = True
    End Sub

    At the top of that form ...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured