Page 1 of 2 12 LastLast
Results 1 to 40 of 55

Thread: [RESOLVED] Different Captions For TitleBar and TaskBar

  1. #1

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Resolved [RESOLVED] Different Captions For TitleBar and TaskBar

    I just downloaded an awesome free icon editor from www.iconempire.com and I noticed somethin weird. Somehow they have a different caption for the titlbar than they do for the Titlebar.

    Now I would hazarad a guess that it was written in C++ and had more control over lower level stuff, but shouldn't there be a way to do this with an API in VB?

    I attached a screenshot. (This is the titlebar and the taskbar AT THE SAME TIME)
    Attached Images Attached Images  
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  2. #2
    Frenzied Member wiz126's Avatar
    Join Date
    Jul 2005
    Location
    Mars,Milky Way... Chit Chat Posts: 5,733
    Posts
    1,080

    Re: Different Captions For TitleBar and TaskBar

    my friend did it once for his app in vb6 so its posible, ill try searching some APIs
    1) If your post has been adequately answered please click in your post on "Mark Thread Resolved".
    2) If someone has been useful to you please show your respect by rating their posts.
    3) Please use [highlight="VB"] 'your code goes in here [/highlight] tags when posting code.
    4) Before posting your question, make sure you checked this links:
    MICROSOFT MSDN -- VB FORUMS SEARCH

    5)Support Classic VB - A PETITION TO MICROSOFT

    ___________________________________________________________________________________
    THINGS TO KNOW ABOUT VB: || VB Examples/Demos
    What are Classes?
    || -
    Where to place a sub/function?(global) || Webbrowser control

  3. #3
    Frenzied Member wiz126's Avatar
    Join Date
    Jul 2005
    Location
    Mars,Milky Way... Chit Chat Posts: 5,733
    Posts
    1,080

    Re: Different Captions For TitleBar and TaskBar

    Check this API i g2g so this might help you,or not


    Declare Function SetLayeredWindowAttributes
    1) If your post has been adequately answered please click in your post on "Mark Thread Resolved".
    2) If someone has been useful to you please show your respect by rating their posts.
    3) Please use [highlight="VB"] 'your code goes in here [/highlight] tags when posting code.
    4) Before posting your question, make sure you checked this links:
    MICROSOFT MSDN -- VB FORUMS SEARCH

    5)Support Classic VB - A PETITION TO MICROSOFT

    ___________________________________________________________________________________
    THINGS TO KNOW ABOUT VB: || VB Examples/Demos
    What are Classes?
    || -
    Where to place a sub/function?(global) || Webbrowser control

  4. #4
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Different Captions For TitleBar and TaskBar

    try this:
    VB Code:
    1. Private Sub Form_Load()
    2. Me.Caption = "IconMaker - Blank.ico"
    3. End Sub
    4.  
    5. Private Sub Form_Resize()
    6. If Me.WindowState = 1 Then
    7. Me.Caption = "IconMaker 2.10"
    8. End If
    9. If Me.WindowState = 0 Then
    10. Me.Caption = "IconMaker - Blank.ico"
    11. End If
    12. End Sub

    hope this helps you.............absolutely no API needed!!!!
    Show Appreciation. Rate Posts.

  5. #5
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Different Captions For TitleBar and TaskBar

    Its probably because its a trial version. There is also a Nag screen. i would assume that if you were to purchase the product the captions would behave normally and no nag screen. You may not be able to override it it they coded it in to behave this way.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  6. #6
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Different Captions For TitleBar and TaskBar

    Trillian does the same thing. In the main form, it's graphical, and in the taskbar, it just says Trillian.

  7. #7

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Different Captions For TitleBar and TaskBar

    Quote Originally Posted by RobDog888
    Its probably because its a trial version. There is also a Nag screen. i would assume that if you were to purchase the product the captions would behave normally and no nag screen. You may not be able to override it it they coded it in to behave this way.
    It leaves trial mode if you register for free (give them your email) on their website. So that is not.

    I think you guys (except dglienna) might have misunderstood. That screenshot was while the app was maxmized. It doesn't do different things while maximized and minizmed. It has a different caption while maximized.

    Wiz, I'll look into that and let you know if it works. Thanks.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  8. #8

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Different Captions For TitleBar and TaskBar

    Wiz, that link you posted is for alphablending the window. That isn't what I was after. But thanks for trying.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  9. #9
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Different Captions For TitleBar and TaskBar

    If you can register and get it free then why do they even try to sell it for $29.99? Maybe because of the caption bar issue?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  10. #10
    Lively Member
    Join Date
    Aug 2005
    Location
    Missouri
    Posts
    69

    Re: Different Captions For TitleBar and TaskBar

    Here's an idea... I haven't tried it, so I could be completely off base. If I understand what you're asking, you want the title bar and the window to have difering captions, right?

    Why not make one form that is invisible, but appears on the title bar. Give it a gotfocus event, that checks the window state of a visible form that does not appear on the title bar, and sets it to window-state normal/ minimised as necessairy.

    It may or may not work, I'll try making something right now and post it up if I can work it out.

    Don't listen to me.
    Surveillance.

    This works:

    On form1(the one to display on the screen)
    VB Code:
    1. Private Sub Form_Load()
    2. Form2.Show
    3. End Sub

    on form2(the one to have in the start bar)
    VB Code:
    1. Private Sub Form_Load()
    2. Me.Visible = False
    3. End Sub
    4.  
    5. Private Sub Form_Resize()
    6.  
    7. If Not Me.WindowState = 1 Then
    8.     Me.WindowState = 1
    9. Else
    10.     If Form1.WindowState = 1 Then
    11.         Form1.WindowState = 0
    12.     Else
    13.         Form1.WindowState = 1
    14.     End If
    15. End If
    16.  
    17. End Sub
    Last edited by Surveillance; Sep 30th, 2005 at 03:02 AM.

  11. #11
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Different Captions For TitleBar and TaskBar

    Quote Originally Posted by eyeRmonkey
    Wiz, that link you posted is for alphablending the window. That isn't what I was after. But thanks for trying.
    it seems u forgot to scroll up the page ............i tried one for the same thing you wanted!!! Post no. - 4

    neway..........i just wanted to know if i m on the right track !!!!
    Show Appreciation. Rate Posts.

  12. #12

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Different Captions For TitleBar and TaskBar

    Surveillance, that is a decent idea, but I was hoping to do it in a better way. I was hoping wiz would be able to find what he had mentioned.

    Harsh Gupta, as I already mentioned, I am not trying to get different captions when it is minimized and maximized. I was different captions for the titlebar and task bar when it is maximized. That screen shot above are crops from the program IN ONE SCREENSHOT. Meaning that it had a caption in the taskbar and titlebar that were different at the same moment.

    Anyone else have any imput on this?
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  13. #13
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Different Captions For TitleBar and TaskBar

    Did you try contacting their tech support?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  14. #14
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Different Captions For TitleBar and TaskBar

    probably u can do that in Registry!!!!! i dont know but u can try this!!
    Show Appreciation. Rate Posts.

  15. #15
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Different Captions For TitleBar and TaskBar

    Quote Originally Posted by RobDog888
    If you can register and get it free then why do they even try to sell it for $29.99? Maybe because of the caption bar issue?
    That's not relevant at all.

    eyeRmonkey's question is very interesting and it will drive me nuts until I find the solution - will let you know once I do.

  16. #16

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Different Captions For TitleBar and TaskBar

    Quote Originally Posted by RobDog888
    Did you try contacting their tech support?
    What does that have to do with anything? Their app is working fine. I want to get the same effect for my program. I doubt Tech support knows anything about VB6.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  17. #17

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Different Captions For TitleBar and TaskBar

    Quote Originally Posted by RhinoBull
    That's not relevant at all.

    eyeRmonkey's question is very interesting and it will drive me nuts until I find the solution - will let you know once I do.
    Thanks!

    That rules. I hope whatever you find can work in VB6. I found some stuff (well, dglienna found some stuff for me) but it is in C++ and I don't feel like compiling it or editing it or converting it or whatever.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  18. #18
    Frenzied Member wiz126's Avatar
    Join Date
    Jul 2005
    Location
    Mars,Milky Way... Chit Chat Posts: 5,733
    Posts
    1,080

    Re: Different Captions For TitleBar and TaskBar

    did you try using spy++ to see weather its a control?
    1) If your post has been adequately answered please click in your post on "Mark Thread Resolved".
    2) If someone has been useful to you please show your respect by rating their posts.
    3) Please use [highlight="VB"] 'your code goes in here [/highlight] tags when posting code.
    4) Before posting your question, make sure you checked this links:
    MICROSOFT MSDN -- VB FORUMS SEARCH

    5)Support Classic VB - A PETITION TO MICROSOFT

    ___________________________________________________________________________________
    THINGS TO KNOW ABOUT VB: || VB Examples/Demos
    What are Classes?
    || -
    Where to place a sub/function?(global) || Webbrowser control

  19. #19

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Different Captions For TitleBar and TaskBar

    No, I'll try that when I get home.

    They might have faked a titlebar but I don't know how they would have have got the XP styles to apply to it.
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  20. #20

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Different Captions For TitleBar and TaskBar

    RhinoBull, I don't suppose you have found anything on this topic?
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  21. #21
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Different Captions For TitleBar and TaskBar

    Yep, I did something myself (just recently got an idea ) and it seems to work. See attachments.

    ps, KIM that it's a very very quick sample project so you might need to work with it to make it better. Anyway, enjoy it.

    EDIT: for attachments see post #25.

  22. #22
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Different Captions For TitleBar and TaskBar

    Quote Originally Posted by RhinoBull
    Yep, I did something myself (just recently got an idea ) and it seems to work. See attachments.

    ps, KIM that it's a very very quick sample project so you might need to work with it to make it better. Anyway, enjoy it.
    well done RB
    Show Appreciation. Rate Posts.

  23. #23

  24. #24
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Different Captions For TitleBar and TaskBar

    but it has a flaw..........if frmMain is minimised then the user can understand that u have played a nice trick, n also u have to search for the minimised main form!!!!
    Show Appreciation. Rate Posts.

  25. #25
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Different Captions For TitleBar and TaskBar

    As I said it's a very quick sample so make it better as you wish - it just gives you an idea and the rest is really upto your imagination.

    Best regards.

    ps, for what it's worth here is a "fixed" version.
    Attached Files Attached Files

  26. #26
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Different Captions For TitleBar and TaskBar

    you might need to work with it to make it better
    sorry......missed out this part!!!! but seriously.........cool idea!!!
    Show Appreciation. Rate Posts.

  27. #27
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: Different Captions For TitleBar and TaskBar

    ps, for what it's worth here is a "fixed" version
    nothing fixed.......
    Show Appreciation. Rate Posts.

  28. #28
    Frenzied Member wiz126's Avatar
    Join Date
    Jul 2005
    Location
    Mars,Milky Way... Chit Chat Posts: 5,733
    Posts
    1,080

    Re: Different Captions For TitleBar and TaskBar

    nice
    1) If your post has been adequately answered please click in your post on "Mark Thread Resolved".
    2) If someone has been useful to you please show your respect by rating their posts.
    3) Please use [highlight="VB"] 'your code goes in here [/highlight] tags when posting code.
    4) Before posting your question, make sure you checked this links:
    MICROSOFT MSDN -- VB FORUMS SEARCH

    5)Support Classic VB - A PETITION TO MICROSOFT

    ___________________________________________________________________________________
    THINGS TO KNOW ABOUT VB: || VB Examples/Demos
    What are Classes?
    || -
    Where to place a sub/function?(global) || Webbrowser control

  29. #29
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Different Captions For TitleBar and TaskBar

    Gee, that code looks mighty familiar.

    It was my understanding that the different caption in the taskbar was changed by the icon maker code somehow or something like that?
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  30. #30
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Different Captions For TitleBar and TaskBar

    Nevermind, I think I have dyslexia. I could have answered it earlier if I realized he wanted "To" change it and not prevent it.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  31. #31
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Different Captions For TitleBar and TaskBar

    I was thinking of something like that. Glad to see that it works.

  32. #32

  33. #33

  34. #34
    PowerPoster RhinoBull's Avatar
    Join Date
    Mar 2004
    Location
    New Amsterdam
    Posts
    24,132

    Re: Different Captions For TitleBar and TaskBar

    Quote Originally Posted by RobDog888
    ... I could have answered it earlier if I realized he wanted "To" change it and not prevent it.
    Quote Originally Posted by dglienna
    I was thinking of something like that. Glad to see that it works.
    Yea, but I am the idea's Patentee.

  35. #35
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Different Captions For TitleBar and TaskBar

    I couldnt find my posted code yet (may be an attachment) but here is one of my earlier ones from a year and a half ago.

    http://www.vbforums.com/showpost.php...3&postcount=11

    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  36. #36

  37. #37
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    Re: Different Captions For TitleBar and TaskBar

    Just giving you a hard time RB. Its all good.

    Also, backing myself up that if I read the Q correctly I would have answered it earlier.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

  38. #38

  39. #39

    Thread Starter
    No place like 127.0.0.1 eyeRmonkey's Avatar
    Join Date
    Jul 2005
    Location
    Blissful Oblivion
    Posts
    2,306

    Re: Different Captions For TitleBar and TaskBar

    Thanks guys. But that gives a really bad effect IMO. Especially since I have the option enabled in XP to animated min/max operations. One animated its way to down by the start button and the other animated down into the task bar. The IconMaker goes into the taskbar which makes me think it ACTUALLY has different captions.

    Don't suppose anyone has a clue how to get that?
    Visual Studio 2005 Professional Edition (.NET Framework 2.0)
    ~ VB .NET Links: Visual Basic 6 to .NET Function Equivalents (Thread) | Refactor! (White Paper) | Easy Control for Wizard Forms | Making A Proper UI For WinForms | Graphics & GDI+ Tutorial | Websites For Free Icons
    ~ QUOTE: Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. -Rich Cook

    ~ eyeRmonkey.com

  40. #40
    Banned dglienna's Avatar
    Join Date
    Jun 2004
    Location
    Center of it all
    Posts
    17,901

    Re: Different Captions For TitleBar and TaskBar

    Must not be in VB, I guess. You would have to hide the main form in the minimize event, and restore it when the user clicked on the taskbar.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width