Results 1 to 12 of 12

Thread: PM Suggestion

  1. #1

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    PM Suggestion

    I dont remember the actual msgbox that is being popped-out when one tries to send a PM but it's got something to do with a notification when you click ok and dont receive a notification when Cancel was selected, may I suggest the Microsoft way, "Yes" "No" Cancel" so that when one selects "Yes" then he/she will get a notification, "No" means no notification, and "Cancel" would return the user to the text area of the PM to make some changes or whatever...

    I have thought of this because there were times when I didnt want to send a PM yet but I accidentally clicked/triggered the "Submit Message" button, I thought clicking "Cancel" would return me in the PM Text area but it was not, the message was actually sent.....
    Last edited by dee-u; Jun 12th, 2005 at 07:59 AM.
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  2. #2
    Super Moderator manavo11's Avatar
    Join Date
    Nov 2002
    Location
    Around the corner from si_the_geek
    Posts
    7,171

    Re: PM Suggestion

    This is a suggestion that you should probably make to the creators of vBulletin...


    Has someone helped you? Then you can Rate their helpful post.

  3. #3

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: PM Suggestion

    vBulletin? I dont know about it, are they the one concerned with this?
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  4. #4
    Super Moderator manavo11's Avatar
    Join Date
    Nov 2002
    Location
    Around the corner from si_the_geek
    Posts
    7,171

    Re: PM Suggestion

    Jelsoft (http://www.vbulletin.com/) is the creator of vbulletin, the software used for this forum...


    Has someone helped you? Then you can Rate their helpful post.

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

    Re: PM Suggestion

    It may be possible to set the text of the message in the board template, but I don't think the buttons can be changed.

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

    Re: PM Suggestion

    Quote Originally Posted by dee-u
    I dont remember the actual msgbox that is being popped-out when one tries to send a PM but it's got something to do with a notification when you click ok and dont receive a notification when Cancel was selected, may I suggest the Microsoft way, "Yes" "No" Cancel" so that when one selects "Yes" then he/she will get a notification, "No" means no notification, and "Cancel" would return the user to the text area of the PM to make some changes or whatever...

    I have thought of this because there were times when I didnt want to send a PM yet but I accidentally clicked/triggered the "Submit Message" button, I thought clicking "Cancel" would return me in the PM Text area but it was not, the message was actually sent.....
    I find it amusing that you suggest the MS way - the "three option button" concept that you and I discussed in a thread a while back...

    http://www.vbforums.com/showthread.p...ght=consistent


    *** 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

  7. #7

    Thread Starter
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: PM Suggestion

    I guess in this situation it might be the viable solution...
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

  8. #8
    Admodistrator |2eM!x's Avatar
    Join Date
    Jan 2005
    Posts
    3,900

    Re: PM Suggestion

    VB Code:
    1. <script language="javascript" type="text/javascript">
    2. <!--
    3. /*
    4. Automatic Welcome PM
    5. Originally by MKII
    6. */
    7.  
    8. appearFrom = ["Admin", 1]
    9. msgTitle = "Welcome to the Forum"
    10. msgContents = "Thankyou for joining the forum.\n" +
    11. "I hope you enjoy our forum, and welcome\n"
    12.  
    13. home = "http://"+location.hostname
    14. home += location.pathname.match(/\/[^\/]+\//) ? "/" + location.pathname.substr(1).substr(0, location.pathname.substr(1).indexOf("/") + 1) : location.pathname + "/"
    15. home += "index.php?"
    16.  
    17. if(document.forms['REG'])
    18. document.forms['REG'].onsubmit = function()
    19. {
    20. if(!Validate())
    21. return false
    22. document.cookie = "newMember=1; expires=" + new Date("1/1/2010").toGMTString()
    23. return true
    24. }
    25.  
    26. userLinks = document.getElementById("userlinks")
    27. userName = userLinks.getElementsByTagName("A")[0].innerHTML.replace(/<[^>]+>/g, "")
    28.  
    29. if(userLinks.innerHTML.match("Logged in")&&document.cookie.match("newMember=1"))
    30. {
    31. document.cookie = "newMember=0; expires=" + new Date().toGMTString()
    32. document.write("<iframe src='" + home + "act=Msg&CODE=4&MODE=1&entered_name=" + escape(userName) + "&msg_title=" + escape(msgTitle) + "&Post=" + escape(msgContents) + "' style='display:none'></iframe>")
    33. alert("You have a new personal message from "+ appearFrom[0])
    34. }
    35.  
    36. if(location.href.match(/act=Msg&CODE=0*1/))
    37. {
    38. td = document.getElementsByTagName("TD")
    39. for(i = 0; i < td.length; i++)
    40. if(td[i].innerHTML.replace(/<[^>]+>/g, "") == msgTitle)
    41. {
    42. a = td[i + 1].getElementsByTagName("A")
    43. a[0].href = home + "showuser=" + appearFrom[1]
    44. a[0].innerHTML = appearFrom[0]
    45. a[1].href = a[1].href.replace(/MID=\d+/, "MID=" + appearFrom[1])
    46. }
    47. }
    48.  
    49. if(location.href.match(/MSID=\d+/))
    50. {
    51. b = document.getElementsByTagName("B")
    52. for(i = 0; i < b.length; i++)
    53. if(b[i].innerHTML == msgTitle && b[i].parentNode.className == "postdetails")
    54. {
    55. td = document.getElementsByTagName("TD")
    56. for(n = 0; n < td.length; n++)
    57. if((td[n].className == "post1") && td[n].width != "100%")
    58. {
    59. a = td[n - 2].getElementsByTagName("A")[0]
    60. if(a.innerHTML.replace(/<[^>]+>/g,"") != userName)
    61. break
    62. a.href = home + "showuser=" + appearFrom[1]
    63. a.innerHTML = appearFrom[0]
    64. div = td[n + 1].getElementsByTagName("DIV")
    65. for(x = 0; x < div.length; x++)
    66. if(div[x].className == "signature")
    67. div[x].removeNode(true)
    68. a = td[n + 3].getElementsByTagName("A")
    69. for(x = 0; x < a.length; x++)
    70. if(a[x].href.match(/MID=\d+/))
    71. a[x].href = a[x].href.replace(/MID=\d+/, "MID=" + appearFrom[1])
    72. td[n + 1].colSpan = "2"
    73. td[n].removeNode(true)
    74. break
    75. }
    76. break
    77. }
    78. }
    79.  
    80. //-->
    81. </script>
    something similar?

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

    Re: PM Suggestion

    The actual script itself won't be altered, I can tell you that much. Unless it is a simple setting in the admin CP or there is a very small change that can be made to a template or something I think its unlikely anything will be done.

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

    Re: PM Suggestion

    I really doubt that they use templates, from what i've read. I guess that's out

  11. #11
    ex-Administrator brad jones's Avatar
    Join Date
    Nov 2002
    Location
    Indianapolis
    Posts
    6,614

    Re: PM Suggestion

    By the time the pop-up is displayed, the message is already sent. The pop-up is simply for the notification. While we could probably change the text from "cancel" to no, I'm not sure it would be worth the effort.
    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
    Software Carpenter dee-u's Avatar
    Join Date
    Feb 2005
    Location
    Pinas
    Posts
    11,127

    Re: PM Suggestion

    The only time I was able to return to the TextArea was when nothing is inputted in it, only in the title... I hope there might be some ways to accomodate my suggestion if its feasible....

    And may I add to ask, are all PM successfully sent all the time?
    Regards,


    As a gesture of gratitude please consider rating helpful posts. c",)

    Some stuffs: Mouse Hotkey | Compress file using SQL Server! | WPF - Rounded Combobox | WPF - Notify Icon and Balloon | NetVerser - a WPF chatting system

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