Results 1 to 18 of 18

Thread: Official: Remaining upgrade issues

  1. #1

    Thread Starter
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,614

    Official: Remaining upgrade issues

    I was told that the smilies had been fixed. The vbcode tag should also be working as great as it was before the upgrade.

    Is there any other outstanding issues that people are aware of? If not, I'm going to consider the update completed and closed.

    Thanks,

    Brad!
    Have you given out your reputation points today? Select the Rate This Post link to give points for good posts!
    -------------------------------------------------------------
    Brad! Jones
    Lots of Software, LLC
    (I wrote: C Programming in One Hour a Day) (Dad Jokes Book) (Follow me on Twitter)

    --------------------------------------------------------------

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

    Re: Official: Remaining upgrade issues

    #1.) There is an issue with the last word in the code not being colored if it is a
    keyword.

    VB Code:
    1. '...
    2.     optInActive.Left = 300
    3. End Sub
    Now if there is more text after it then it will be colored.
    VB Code:
    1. '...
    2.     optInActive.Left = 300
    3. End Sub 'The Sub keyword will now be blue.
    #2.) The comment apostrophy has "issues" too.
    VB Code:
    1. MsgBox "Testing Comment's Functionality" 'Just testing comment's use
    2. 'Comment, blah, blah, blah...'comment, 'comment
    3. 'SQL Statement:
    4. SELECT * FROM Table1 WHERE Field1 = '" & sString & "' AND Field2 > "0;"
    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

  3. #3
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Official: Remaining upgrade issues

    Quote Originally Posted by RobDog888
    #1.) There is an issue with the last word in the code not being colored if it is a
    keyword.
    I found that glitch aaaageees ago, and the solution also
    http://www.vbforums.com/showthread.php?t=342901
    But from the looks of your post it seems to have been fixed.

    Maybe it would be possible to modify the vbcode hack slightly so that string literals are not coloured, or coloured dark grey or something? Like this
    VB Code:
    1. SomeString = [color=#626262]"VB Words like Su[b][/b]b, Functio[b][/b]n, E[b][/b]nd"[/color]
    instead of this
    VB Code:
    1. SomeString = "VB Words like Sub, Function, End"
    That would hopefully solve the problem with the comment colouring.


    Also, we seem to have lost our snazzy new blue favicon

  4. #4
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190

    Re: Official: Remaining upgrade issues

    Quote Originally Posted by penagate

    Also, we seem to have lost our snazzy new blue favicon


    Nope.......try again..


    - ØØ -

  5. #5
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Official: Remaining upgrade issues

    Quote Originally Posted by NoteMe
    Nope.......try again..


    - ØØ -
    Well Ctrl+F5 hasn't picked it up. Maybe I need to clear out the cache.

  6. #6
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Official: Remaining upgrade issues

    Nope... still the old icon... Maybe you need to clear your cache

  7. #7
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190

    Re: Official: Remaining upgrade issues

    Quote Originally Posted by penagate
    Nope... still the old icon... Maybe you need to clear your cache

    Maybe I did it before I posted to not make a fool out of my self..


    BTW what domain are you on now? I am n www.vbforums.com. And what browser are you using?


    - ØØ -

  8. #8
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190

    Re: Official: Remaining upgrade issues

    I can't belive I didn't just check it out my self..well you are right...vbforums.com has the old ico, while www.vbforums.com has the new..
    Attached Images Attached Images  

  9. #9
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Official: Remaining upgrade issues

    As you should know by now, I use Fx

    And I think you need to clear your cache again... Both domains have the old icon for me

  10. #10
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: Official: Remaining upgrade issues

    Hmm, the VBcode seems to be wrongly colouring VB keywords that are parts of words:
    VB Code:
    1. Public Function IsIDE() As Boolean
    2. On Error Resume Next
    3.     Err.Clear
    4.     Debug.Print 1 / 0
    5.     IsIDE = (Err.Number)
    6. On Error GoTo 0
    7. End Function

    "Is" and "Err" are coloured where they are part of "IsIDE" and "Error".

  11. #11

    Thread Starter
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,614

    Re: Official: Remaining upgrade issues

    Thanks for the feedback. This info has been reported and is being worked on.

    Brad!
    Have you given out your reputation points today? Select the Rate This Post link to give points for good posts!
    -------------------------------------------------------------
    Brad! Jones
    Lots of Software, LLC
    (I wrote: C Programming in One Hour a Day) (Dad Jokes Book) (Follow me on Twitter)

    --------------------------------------------------------------

  12. #12

    Thread Starter
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,614

    Re: Official: Remaining upgrade issues

    Okay, I've been told that the coloring fix is going to take a bit more effort, and thus the last changes were rolled out and the vbcode routine restored as far as functionality to what it was prior to the upgrade.

    (as a 'heads up') These changes are in the queue to get fixed, but have fallen behind some higher priority (non-VBForums) tasks.

    Brad!
    Have you given out your reputation points today? Select the Rate This Post link to give points for good posts!
    -------------------------------------------------------------
    Brad! Jones
    Lots of Software, LLC
    (I wrote: C Programming in One Hour a Day) (Dad Jokes Book) (Follow me on Twitter)

    --------------------------------------------------------------

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

    Re: Official: Remaining upgrade issues

    How about this...
    VB Code:
    1. MessageBox.Show("Arrg, Error. Clear to see that they are wrong.")
    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
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Official: Remaining upgrade issues

    I still can't delete subscriptions from the CP. I don't know if this is related to the recent upgrading bizo but I only noticed that it wasn't working a few days ago.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

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

    Re: Official: Remaining upgrade issues

    I think the first (and subsequent) threads were deleted by the thread starter. I suspect that is a problem..

    http://www.vbforums.com/showthread.php?t=351846&page=2

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

    Re: Official: Remaining upgrade issues

    Threads or posts? I see that both pages of that thread are accessible, or was there more pages?
    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

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

    Re: Official: Remaining upgrade issues

    I think I was looking at only the second page for some reason. It didn't make sense

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

    Re: Official: Remaining upgrade issues

    Oh, I see the time you posted was 2:44 AM so it must have been a sleep depravation 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

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