Page 11 of 12 FirstFirst ... 89101112 LastLast
Results 401 to 440 of 474

Thread: FORUM ISSUES: Report Upgraded Issues in this thread

  1. #401
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    9,017

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I remember repping a post from way back in 2001 or something just for the hell of it. To my surprise it was allowed as I assumed I would not have been able too since it was so long ago. Ever since I've always held that any post could be rated regardless of how old it was. Guess that has changed.
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  2. #402
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    There seems to be a problem with the highlight tags! Here is an example.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  3. #403
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by Nightwalker83 View Post
    There seems to be a problem with the highlight tags! Here is an example.
    The double quotes character you used there is wrong !

    vb Code:
    1. ‘Launch Windows Add/Remove Programs Dialog
    2. Dim dblReturn As Double
    3. dblReturn = Shell(“rundll32.exe shell32.dllControl_RunDLL appwiz.cpl1″ 5)
    ==>
    vb Code:
    1. ‘Launch Windows Add/Remove Programs Dialog
    2. Dim dblReturn As Double
    3. dblReturn = Shell("rundll32.exe shell32.dllControl_RunDLL appwiz.cpl1" 5)

    See ? Thus the forum software seems to be converting it to html entities.

    I think you copy-pasted it from some website isn't it ?


    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  4. #404
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by akhileshbc View Post
    I think you copy-pasted it from some website isn't it ?
    Yeah, but on the website here it displays correctly.

    Edit:

    The source code of that page has:

    vb Code:
    1. <p>‘Launch Windows Add/Remove Programs Dialog<br />
    2. Dim dblReturn As Double<br />
    3. dblReturn = Shell(“rundll32.exe shell32.dllControl_RunDLL appwiz.cpl1″ 5)</p>

    The strange thing is that in the post I linked to on the forum the first quotation mark displays correct while the second does not. I reckon I have made the same mistake in the past.
    Last edited by Nightwalker83; Oct 18th, 2012 at 05:28 AM.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  5. #405
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by Nightwalker83 View Post
    Yeah, but on the website here it displays correctly.

    Edit:

    The source code of that page has:

    vb Code:
    1. <p>‘Launch Windows Add/Remove Programs Dialog<br />
    2. Dim dblReturn As Double<br />
    3. dblReturn = Shell(“rundll32.exe shell32.dllControl_RunDLL appwiz.cpl1″ 5)</p>

    The strange thing is that in the post I linked to on the forum the first quotation mark displays correct while the second does not. I reckon I have made the same mistake in the past.
    I think it is Wordpress(seen in Wordpress sites) that converts normal quotes into fancy manner. Normally, the quotes would be vertical. But Wordpress might automatically convert it to make it look more fancier, ie, the starting quotes would be like it's tail pointing right and the ending quotes would look like it's tail pointing towards left.

    So, when you copy code from sites like these, make sure that your copied code don't have any substitutes in characters.


    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  6. #406
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,374

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    The only error that I still see is the highlight tags, where the numbered lines are off when it gets to double/triple digits. Otherwise everything as far as I'm concerned is back to normal... Other than I'd like to see the code tags back :P
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  7. #407
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Look at this screen shot. I just posted a REPLY to DBASSNET in a thread - but on this page he is still showing as the LAST POST - with a time of 12:17. If I push the link button to go to the last post in the thread you can see that it has my post as the last post.

    I bet he never ever gets notified of this post - it's lilke lost somehow...
    Attached Images Attached Images  

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  8. #408
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by szlamany View Post
    Look at this screen shot. I just posted a REPLY to DBASSNET in a thread - but on this page he is still showing as the LAST POST - with a time of 12:17. If I push the link button to go to the last post in the thread you can see that it has my post as the last post.
    Check your daylight saving setting here under Date & Time Options.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  9. #409
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by Nightwalker83 View Post
    Check your daylight saving setting here under Date & Time Options.
    DST options are all fine - the last date and time of that post did finally update on all screens in the forum - it just take a couple of minutes now.

    That is different behavior - the forum did not work that way before.

    Actually - it's bad behavior. This forum is basically a front end for a database and if you can go to one screen in your web page and see new data and on another screen old, different or stale data then you simply have a bug.

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

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

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I don't think it's a bug — I believe the "Last Post" field is updated on an interval, rather than immediately.

  11. #411

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

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by penagate View Post
    I don't think it's a bug — I believe the "Last Post" field is updated on an interval, rather than immediately.
    There are a number of things updated at intervals rather than immediately updated. That is how the software was written.

    Brad!

  12. #412
    MS SQL Powerposter szlamany's Avatar
    Join Date
    Mar 2004
    Location
    Connecticut
    Posts
    18,263

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Ah - the old bug vs design-feature...

    *** Read the sticky in the DB forum about how to get your question answered quickly!! ***

    Please remember to rate posts! Rate any post you find helpful - even in old threads! Use the link to the left - "Rate this Post".

    Some Informative Links:
    [ SQL Rules to Live By ] [ Reserved SQL keywords ] [ When to use INDEX HINTS! ] [ Passing Multi-item Parameters to STORED PROCEDURES ]
    [ Solution to non-domain Windows Authentication ] [ Crazy things we do to shrink log files ] [ SQL 2005 Features ] [ Loading Pictures from DB ]

    MS MVP 2006, 2007, 2008

  13. #413
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Viewing posts by members on your Ignore List

    When viewing a thread that contains posts by members on your ignore list, those posts are hidden and a link provided to view the post. Clicking that link opens the thread in a new window and scrolls to that post but the post is still hidden.
    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

  14. #414
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    9,017

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    You actually have people on ignore ?
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  15. #415
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by Niya View Post
    You actually have people on ignore ?
    To remind me of the people who are just too much trouble. Check out this thread:

    http://www.vbforums.com/showthread.p...-was-unhandled

    I took that OP off my ignore list to respond to that thread but they soon reminded me why they were on my ignore list in the first place and they're back there now.
    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

  16. #416
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    9,017

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    He seemed pleasant enough if not a little stubborn....I was expecting some epic drama there lol.
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  17. #417
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by Niya View Post
    He seemed pleasant enough if not a little stubborn....I was expecting some epic drama there lol.
    Perhaps you need to know the history. Did he bother to read the information I linked to? You have no ideas how many times I've provided advice that has been staunchly ignored while more and more information is requested.
    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

  18. #418
    Super Moderator dday9's Avatar
    Join Date
    Mar 2011
    Posts
    12,374

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I've gotten upset with you at times JMc, you come off as all knowing sometimes(which we all know you are with just about every programming languages :P). But then I realized that I can't get upset when you're providing me with the information that I need to progress as a programmer. I've just come to appreciate you help.
    "Code is like humor. When you have to explain it, it is bad." - Cory House
    VbLessons | HtmlLessons | CssLessons | Code Tags | Sword of Fury - Jameram

  19. #419
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I'm quite prepared to admit that I'm rather blunt and some people don't like that. Some like it less than others, but they're usually the ones who don't feel that they should have to make any effort on they're own behalf. I have no issue with people not knowing something. It's just a lack of effort that bothers me. That includes effort to post clearly, not just research information. How many times have I said "do X" and several posts later it still hasn't been done and finally the person says "I don't understand what you mean by X" and I have to wonder why they just didn't say that in the first place and save us both a lot of time. Anyway, I've gone way off topic here.
    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

  20. #420
    Super Moderator FunkyDexter's Avatar
    Join Date
    Apr 2005
    Location
    An obscure body in the SK system. The inhabitants call it Earth
    Posts
    7,957

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Oddly enough that was one of your more verbose responses and you were still falling on deaf ears. I know we often come from different sides of the argument on this sort of thing but sometimes you're definitely in the right.

    Anyway, back on topic, key strokes no longer seem to be working to insert formatting tags. eg, if I press <ctrl-I> it doesn't give me italics tags but calls up my favourites bar instead. The formatting options seem to have dissapeared from the Quick Reply pane at the same time and I'm guessing they're linked.
    The best argument against democracy is a five minute conversation with the average voter - Winston Churchill

    Hadoop actually sounds more like the way they greet each other in Yorkshire - Inferrd

  21. #421
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by Niya View Post
    I'm still having trouble rating VB.Net CodeBank OPs. You guys look into that yet ?
    So you're not receiving the message about needing to spread reputation around before repping that poster again?
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  22. #422
    Angel of Code Niya's Avatar
    Join Date
    Nov 2011
    Posts
    9,017

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    No, it just says I can't rep that post. It gives no reason why.
    Treeview with NodeAdded/NodesRemoved events | BlinkLabel control | Calculate Permutations | Object Enums | ComboBox with centered items | .Net Internals article(not mine) | Wizard Control | Understanding Multi-Threading | Simple file compression | Demon Arena

    Copy/move files using Windows Shell | I'm not wanted

    C++ programmers will dismiss you as a cretinous simpleton for your inability to keep track of pointers chained 6 levels deep and Java programmers will pillory you for buying into the evils of Microsoft. Meanwhile C# programmers will get paid just a little bit more than you for writing exactly the same code and VB6 programmers will continue to whitter on about "footprints". - FunkyDexter

    There's just no reason to use garbage like InputBox. - jmcilhinney

    The threads I start are Niya and Olaf free zones. No arguing about the benefits of VB6 over .NET here please. Happiness must reign. - yereverluvinuncleber

  23. #423
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Woah! Hang on... did the Quick Reply actually just work like it was supposed to? ....

    nope... and wow.... some how this post got in faster than my next post, which was posted FIRST?!

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  24. #424
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    It gives no reason why.
    Nice to see that we're following Microsoft standards at least...

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

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

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by techgnome View Post
    Woah! Hang on... did the Quick Reply actually just work like it was supposed to? ....

    nope... and wow.... some how this post got in faster than my next post, which was posted FIRST?!

    -tg
    Quick reply was re-enabled a couple of days ago. I don't know how your posts got submitted out of order.

  26. #426
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,104

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I'd still like to see the Code tag buttons added to quick reply.
    My usual boring signature: Nothing

  27. #427
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,104

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    By the way, I think I should mention that it has been days since I've seen the forum hang after posting. That's some notable improvement. Something must be going right.
    My usual boring signature: Nothing

  28. #428
    Frenzied Member
    Join Date
    Jul 2006
    Location
    MI
    Posts
    2,012

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I've stopped getting the email notifications for new posts to this thread. I see there are a dozen or so new posts since my last notification. Anyone else seeing this?

  29. #429
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I don't use email notification, so I wouldn't notice if it wasn't working or not. I use my user panel for notifications... which does seem to be working.


    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  30. #430
    Frenzied Member
    Join Date
    Jul 2006
    Location
    MI
    Posts
    2,012

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by techgnome View Post
    I don't use email notification, so I wouldn't notice if it wasn't working or not. I use my user panel for notifications... which does seem to be working.
    Well apparently something is broken because I didn't get a notification for your last post where I would have in the past. I rechecked my setting & it's still set to instant email notification. The notification system has been hit or miss for me ever since the upgrade.

  31. #431
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I am not getting any notable issues with email notifications. Mine is set to instant mode.


    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  32. #432
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    I've noticed that some username links are non links while others are links to the users profile. You can see what I'm referring to on the index page.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  33. #433
    Code Monkey wild_bill's Avatar
    Join Date
    Mar 2005
    Location
    Montana
    Posts
    2,993

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    What's the best way to view your old posts? I used to go to advanced search, and search by my user name. It doesn't look like that's working anymore.
    That is the very essence of human beings and our very unique capability to perform complex reasoning and actually use our perception to further our understanding of things. We like to solve problems. -Kleinma

    Does your code in post #46 look like my code in #45? No, it doesn't. Therefore, wrong is how it looks. - jmcilhinney

  34. #434
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by wild_bill View Post
    What's the best way to view your old posts? I used to go to advanced search, and search by my user name. It doesn't look like that's working anymore.
    Since the forum upgrade the show all posts function would only show your posts since the forum upgrade. The old posts do not show up in the search.
    Last edited by Nightwalker83; Nov 9th, 2012 at 02:57 AM. Reason: Fixed spelling!
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  35. #435

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

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by Nightwalker83 View Post
    Since the forum upgrade the show all posts function would only show your posts since the forum upgrade. The old posts do not show up in the search.
    That is not true. You can search for your name in the advanced search. The difference is in how posts are displayed. The system no longer displays all of them at once. For example, I can search for my name "brad jones" choose "any date" and set sort to ascending, then I get my oldest messages (back in 2002). I get the first 5 pages. If I start scrolling forward on the pages, more pages will be pulled and displayed.

    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)

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

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

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by brad jones View Post
    I get the first 5 pages. If I start scrolling forward on the pages, more pages will be pulled and displayed.
    Brad!
    That's what confuse peole - I had someone approached me regarding number of posts I had in the past year.
    The question (or the statement) was there is only few dozens of them... Of course I had to do the search myself and follow up with that person.
    However, if I am not mistaken we used to have "go to last page" functionality (or button) wich is now gone.
    This new software is far from being logical.

  37. #437
    Code Monkey wild_bill's Avatar
    Join Date
    Mar 2005
    Location
    Montana
    Posts
    2,993

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by brad jones View Post
    That is not true. You can search for your name in the advanced search. The difference is in how posts are displayed. The system no longer displays all of them at once. For example, I can search for my name "brad jones" choose "any date" and set sort to ascending, then I get my oldest messages (back in 2002). I get the first 5 pages. If I start scrolling forward on the pages, more pages will be pulled and displayed.

    Brad!
    Thank you, I see any thread I've started. Is there a search that returns threads I posted in, but did not start?
    That is the very essence of human beings and our very unique capability to perform complex reasoning and actually use our perception to further our understanding of things. We like to solve problems. -Kleinma

    Does your code in post #46 look like my code in #45? No, it doesn't. Therefore, wrong is how it looks. - jmcilhinney

  38. #438
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    @BradJones

    I tried the advance search but when I tried it the subforum selection was missing. Thanks for clearing that up! I thought there was a bug in the system.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  39. #439
    Super Moderator Shaggy Hiker's Avatar
    Join Date
    Aug 2002
    Location
    Idaho
    Posts
    40,104

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    After a couple weeks of excellent behavior, the forum has started backsliding in the last few days. Several recent posts got posted, but then took me right to the Advanced post page, or perhaps the edit page (I don't use either enough to tell them apart). If I were to hit the Submit button on whatever page that is, I'd end up with a double post. This must be happening to others, too, since I'm seeing LOTS more double posts lately, including an impressive triple post (you have to be a bit overeager to do that).
    My usual boring signature: Nothing

  40. #440
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: FORUM ISSUES: Report Upgraded Issues in this thread

    Quote Originally Posted by Shaggy Hiker View Post
    After a couple weeks of excellent behavior, the forum has started backsliding in the last few days. Several recent posts got posted, but then took me right to the Advanced post page, or perhaps the edit page (I don't use either enough to tell them apart). If I were to hit the Submit button on whatever page that is, I'd end up with a double post. This must be happening to others, too, since I'm seeing LOTS more double posts lately, including an impressive triple post (you have to be a bit overeager to do that).
    It would be good if there was a countdowntimer when submitting posts so you know how long it would be until the reply has been posted. A blank white page is not really informative.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

Page 11 of 12 FirstFirst ... 89101112 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