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

Search:

Type: Posts; User: Andrew R.

Page 1 of 19 1 2 3 4

Search: Search took 0.47 seconds.

  1. Replies
    5
    Views
    1,163

    Re: When to start screensaver?

    I need only events that occur inside of my application.
  2. Replies
    5
    Views
    1,163

    Re: When to start screensaver?

    Thank you. I'll try to use that.
    I'm also considering GlassPane.
  3. Replies
    5
    Views
    1,163

    When to start screensaver?

    Hi

    I'd like to put my app in a special mode if a user didn't move the mouse and didn't use the keyboard for some time.

    What would be the smart way of doing it? Cause I don't want to add...
  4. Replies
    3
    Views
    813

    Re: Need to change mouse coordinates

    Thanks a lot! Too bad I need it for 1.1 version.
  5. Replies
    3
    Views
    813

    Need to change mouse coordinates

    Is it possible to artificially change the position of the mouse pointer (cursor) inside of my dialog/panel/label?

    I don't see anything in the MouseListener and MouseMotionListener. :(
  6. Replies
    10
    Views
    6,083

    Re: Assign to array, or const arrays?

    Thank you for clarifying that.
    It's just the last post in this thread complained about an error and I explained why someone was getting it.
  7. Replies
    10
    Views
    6,083

    Re: Assign to array, or const arrays?

    To avoid error define your array as variant.
    Instead of
    Dim vari(1 To 9, 1 To 9) As Byte
    use
    Dim vari as Variant
    or just
    Dim vari


    P.S. Have had this problem just right now.
  8. Replies
    2
    Views
    778

    Re: ToolTip on a Slider

    Thanks for the link, but there is no sample there to solve my problem.
  9. Replies
    2
    Views
    778

    ToolTip on a Slider

    I'm trying to use ToolTips to show current value of a slider while user changing it.
    I assign current value to the tooltip in MouseMotionListener - that works OK.

    But tooltip disappears when user...
  10. Replies
    2
    Views
    609

    Re: Hot to create a paired toolbar button?

    Thanks a lot!
  11. Replies
    2
    Views
    609

    Hot to create a paired toolbar button?

    Like many MS apps have where toolbar button has a small arrow down right next to it and by clicking on it you'd get a pop-up menu.
  12. Replies
    4
    Views
    904

    Re: Help me to create SQL query

    Thank you! Looks good. Hope it'll work for Access as well.
  13. Replies
    4
    Views
    904

    Re: Help me to create SQL query

    Yes, I'm using ADO and of course I know about DELETE statement.

    The problem is relations!

    I cannot delete Person from tbPersons until there is a relation record in rtbGroupsPersons.
    But if I...
  14. Replies
    4
    Views
    904

    Help me to create SQL query

    Here's the database in Access.
    http://home.golden.net/~andrewr/rel.gif

    I need to delete one Group (I know it's key) and all the Persons related to this group.
    Both relations set to Enforce...
  15. Replies
    4
    Views
    688

    Re: Need 'Folder' and 'OpenFolder' icons.

    Those are not good for some reason - they look too bright when I inserted them in my TreeView contol.
    You can see the difference:


    http://home.golden.net/~andrewr/toobright.jpg
  16. Replies
    4
    Views
    688

    Need 'Folder' and 'OpenFolder' icons.

    To show tree of folders I need icons like Windows Explorer has.
    Where can I get those?
  17. Replies
    3
    Views
    1,990

    Re: Create tree from one database table?

    Thanks a lot for your help.
    It looks like it's going to work, BUT I'm trying to avoid recursion.

    The idea is to do several passes through the recordset.
    Each pass I would delete records that I...
  18. Replies
    3
    Views
    1,990

    Create tree from one database table?

    Hi
    I have a db table of 3 fields (see the picture)
    http://home.golden.net/~andrewr/problem.jpg
    I'm using this table to store my tree, which is created during run-time.
    Each record points to its...
  19. Replies
    2
    Views
    681

    Re: How to add a field into the database?

    Thank you! :thumb:
  20. Replies
    2
    Views
    681

    How to add a field into the database?

    What SQL statement should I use in my ADO command to add a field to the table in my database?
    Access/SQL.
  21. Replies
    2
    Views
    1,095

    Re: CheckBoxes in TreeView control

    I've found a sample that does it!!!

    Brad's VB-32 Programs & Samples
  22. Replies
    2
    Views
    1,095

    CheckBoxes in TreeView control

    Is it possible to change background color of a particular checkbox in the TreeView?
  23. Thread: Ratings Bro

    by Andrew R.
    Replies
    32
    Views
    3,298

    Too bad it was removed during last forum design...

    Too bad it was removed during last forum design upgrade. :(
    Some people are gone and some post less since...

    BTW is "Top 10" feature back?
  24. Replies
    6
    Views
    5,975

    Let say you have CommonDialog control dlgFolder...

    Let say you have CommonDialog control dlgFolder on your Form1.
    Then you do:


    Form1.dlgFolder.InitDir = "\\server\folder\"
    Form1.dlgFolder.CancelError = True
    ...
  25. Replies
    3
    Views
    642

    Sun One Studio 4 CE and wheel mouse

    Hello everyone!

    I just started to learn Java with Sun One Studio 4 CE (Community Edition).
    So, is there a way to make this develpment environment understand that I want to scroll with my mouse...
Results 1 to 25 of 469
Page 1 of 19 1 2 3 4





Click Here to Expand Forum to Full Width

Featured