Search:

Type: Posts; User: Jordan

Search: Search took 0.10 seconds.

  1. Thread: Post Race!

    by Jordan
    Replies
    68,907
    Views
    18,133,902

    Re: Post Race!

    Great to see this still going after so many years. :)
  2. Re: [VB6] Interprocess Communication via Semaphores

    New version (v1.2.1) with some minor improvements uploaded today. See top post.
  3. Replies
    107
    Views
    15,622

    Re: VB Forums Photography Contest #7

    ah, cool! Placing in my first ever photo contest :) Thanks Martin for putting it all together, it was fun.
  4. Replies
    107
    Views
    15,622

    Re: VB Forums Photography Contest #7

    Some of my best this past year. Higher resolution available if necessary.

    Mossy Trees
    http://i.imgur.com/edzYf.jpg

    Swampy River
    http://i.imgur.com/MqJFF.jpg

    Green Dock...
  5. Thread: Post Race!

    by Jordan
    Replies
    68,907
    Views
    18,133,902

    Re: Post Race!

    LOL well, in my weak defense, I lost a few hundred posts back in the crash of the early 2000's. I'm back on VB6 these days so I figured I'd contribute a bit.
  6. Thread: Post Race!

    by Jordan
    Replies
    68,907
    Views
    18,133,902

    Re: Post Race!

    jeez, we're only averaging 12.384432088959491660047656870532 posts per day on here, time to pick it up people!!
  7. Replies
    8
    Views
    9,926

    Re: VB6 - AppEx Class, Assists Vista Programming

    I did some work recently on user accounts, and IsUserAnAdmin fails when UAC is turned on in Vista/7. There are a few workarounds for this, but I went with the NetUserGetInfo and having it return a...
  8. Re: [VB6] Interprocess Communication via Semaphores

    Updated to version 1.2 today, was able to fix the QueryHandleCount function thanks in part to Matt on the SysInternals forums for spotting my error. Turns out NtQueryObject is verrry particular about...
  9. Re: [VB6] Interprocess Communication via Semaphores

    Updated the class with a few new features, namely preventing the semaphore handle from being closed via CloseHandle, as well as an IsSemaphore function to quickly check to see if a given semaphore...
  10. [VB6] Interprocess Communication via Semaphores

    Ah, semaphores, the staple of any good operating system. I searched for a VB6 example implementing the semaphore functions and came up mostly empty-handed. This class attempts to fill that missing...
  11. Re: [vb6]Alpha Image Control

    It's great to see this project rise from the ashes again. How different is this from the 2007 version?

    Bugwise, nothing to report, though I have not run through it thoroughly yet.

    I was just...
  12. Replies
    7
    Views
    3,444

    Re: Creating .SYS kernel drivers with VB6

    Never even considered this as a possibility, but it's interesting nonetheless. I would love to see someone attempt this.
  13. Thread: Post Race!

    by Jordan
    Replies
    68,907
    Views
    18,133,902

    Re: Post Race!

    The Tampa Bay Devil Rays, .500 or bust this year baby!!
  14. Replies
    2
    Views
    988

    Re: Handle of a ComboBox

    Check out the FindWindowEx function:...
  15. Thread: Post Race!

    by Jordan
    Replies
    68,907
    Views
    18,133,902

    Re: Post Race!

    So, what's going on?
  16. Replies
    108
    Views
    109,356

    Re: Subclass External Programs done for you

    Absolutely excellent code! I've been looking for a VB external subclassing tool forever. What are the chances that you add system wide hooking as well? I personally need system wide WH_SHELL,...
  17. Replies
    4
    Views
    716

    Re: Using Menu from other Application

    Use Spy++ and watch for the WM_COMMAND message when you click on the menu manually. Copy the wparam that your click generates, and in your own program, use
    SendMessage hwndofprogram, WM_COMMAND,...
  18. Replies
    4
    Views
    442

    Re: What happened to my post count?

    Ah, too bad. Yes, I did most of my postings before my account was deleted with the crash a year or two ago. Ah well, should only take me about 5 more years to get it back where it was. :) Thanks...
  19. Replies
    4
    Views
    442

    What happened to my post count?

    I was here a few months ago and my post count was pushing 300, now I look like a newbie with a pathetic 12 posts. It's taken me over 5 years to get those 300 posts, and now I'm reset back? What...
  20. Petition for Microsoft to make a VB7 (SAVE Classic VB!!!)

    As stated on Yahoo, Microsoft is planning to end support for VB6 as of the end of this month. There is a petition, started by Microsoft MVPs to urge Microsoft to continue developing classic Visual...
  21. Replies
    1
    Views
    403

    Post your existing code and we might be able to...

    Post your existing code and we might be able to assist more readily.
  22. Replies
    1
    Views
    414

    Use GetForegroundWindow in a timer. If...

    Use GetForegroundWindow in a timer. If GetForegroundWindow = FindWindow("Notepad", vbNullString) Then notepad is activated.
  23. Replies
    153
    Views
    12,800

    Cool, thanks. :)

    Cool, thanks. :)
  24. Replies
    153
    Views
    12,800

    It's unfortunate that my account has not been...

    It's unfortunate that my account has not been restored. Due to my work schedule I do not get to post here often, but I have been coming here since early 1999 with this username.

    Could an admin...
  25. Replies
    1
    Views
    819

    SetParent alone will work, but your right -- it...

    SetParent alone will work, but your right -- it won't act like a regular child window. You might want to try this code and see if it works for you. It basically tells a window to change into a...
  26. Replies
    0
    Views
    632

    VBAccelerator.com is Back?!

    Hey, look what site came back from the dead! There's a new site redesign in the works for the best advanced visual basic site on the net. And I thought Steve McMahon had died :)
    ...
  27. It is certainly possible. The best way is to...

    It is certainly possible. The best way is to subclass the button you are watching for, but vb doesn't support subclassing outside its own process without a little help. You'll need SpyWorks...
  28. Replies
    153
    Views
    12,800

    Still not restored...

    I had this same user name, but with around 275 posts, and registered in April 1999.

    This is a recent post I made before my account was deleted:
    ...
  29. Replies
    1
    Views
    710

    Once you get the hWnd of the conversation window,...

    Once you get the hWnd of the conversation window, you can use this simple function:


    Public Function GetText(hWnd As Long)
    Dim sText As String, sBuff As String, lLeng As Long

    lLeng =...
  30. Replies
    153
    Views
    12,800

    http://www.vbforums.com/showthread.php?s=&postid=1...

    http://www.vbforums.com/showthread.php?s=&postid=1092246

    This was recently posted right before I lost my account (Registered April 99, ~275 posts) I would of found an older one but search seems...
  31. Not sure what app you are trying to watch for...

    Not sure what app you are trying to watch for flashing, but I think it would be better to detect what is actually causing the flash if possible. Otherwise, you'll need a third party tool like...
  32. Replies
    153
    Views
    12,800

    Lost my account too.

    I had about 275 posts, and registered in April of 1999. Please set it back for me Karl. Thanks!
Results 1 to 32 of 32



Click Here to Expand Forum to Full Width