Skip to content

Site Bugs / Suggestions

General discussions, site bug reports and suggestions about the site.

This category can be followed from the open social web via the handle site-bugs-suggestions@forum.codeproject.com

18.1k Topics 80.8k Posts
  • Nit-Picky Suggestion

    question
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • New message count in Forums home page

    2
    0 Votes
    2 Posts
    10 Views
    C
    I've seen this happen a number of times. I'm not willing to invest too much time into fixing the current system becuase I'll be revamping the entire "last visit" logic to make it a little more useful.
  • Forgot your password? Click here!

    database question career
    3
    0 Votes
    3 Posts
    7 Views
    M
    Thanks!!!
  • Feature suggestion for boards

    c++ lounge
    2
    0 Votes
    2 Posts
    9 Views
    C
    For you Mike - anything! :)
  • I reproduced that bug that creates multiple posts!

    help
    2
    0 Votes
    2 Posts
    9 Views
    C
    That's far too weird! A message is only created when you click on the submit button at the end of the "Reply" page. Hmmmm.
  • 'P' in comment body gets replaced with tongue smiley

    tools tutorial
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • 0 Votes
    2 Posts
    5 Views
    S
    To your class derived from TreeView add to the message handler //{{AFX_MSG(CMyTreeView) afx_msg void OnRButtonDown(UINT nFlags, CPoint point); //}}AFX_MSG Implement the function OnRButtonDown as following void CMyTreeView::OnLButtonDown(UINT nFlags, CPoint point) { UINT uFlags; HTREEITEM hItem = GetTreeCtrl().HitTest(point, &uFlags); if ((hItem != NULL) && (uFlags & TVHT_ONITEM)) { CString strText = GetTreeCtrl().GetItemText(hItem); AfxMessageBox(strText); } }
  • Displaying messages

    3
    0 Votes
    3 Posts
    5 Views
    L
    I don't know what flat view looked like, but I would like to see something like the preview mode only with 10 lines or so per message. You should also consider downloading all the messages at once and only show them when clicked on. Anyway, you need to do something to reduce the load on your server, I get the "HTTP Server busy" error much too often. Keep up the good work!
  • I like this board, except a couple things

    help discussion
    2
    0 Votes
    2 Posts
    7 Views
    C
    I've just installed Uwe's new profile scripts that will help with the password situation - in fact by creating a user profile on CodeProject you'll have access to a whole bunch of neat customisations for the message boards and other sections of the site. With regards to the Prev/Next links, you are right. As soon as I'm back from PDC 2000 I'll look into fixing this. I'm offline at the moment so if I forget to do this just send me an email reminding me. cheers Chris
  • New WindowsCE Forum

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • New COM forum

    c++ question com discussion
    2
    0 Votes
    2 Posts
    7 Views
    C
    Done!
  • free courses on line

    dotnet
    1
    0 Votes
    1 Posts
    7 Views
    No one has replied
  • Site Has Been Reviewed

    c++ com career
    3
    0 Votes
    3 Posts
    11 Views
    G
    What an ugly crypto-commercial :-( You charge A LOT for your "Visual C++ Developer,", naturally you drew 'attention' to this site and other free sources... I consider your post as a spam, sorry :(
  • Adding images to the forums

    html
    2
    0 Votes
    2 Posts
    7 Views
    C
    Unfortunately images will really kill bandwidth. It's easier just to offer to mail people pics and code if they need it.
  • Update Wizard

    question announcement
    4
    0 Votes
    4 Posts
    14 Views
    C
    The same old way unfortunately. Send it to submit@codeproject.com and we'll take care of it from our end.
  • How about indicating each article's rating?

    database question
    8
    0 Votes
    8 Posts
    8 Views
    C
    Thanks for the message Alvaro. It's certainly something we can think about.
  • CodeProject on CD-ROM

    windows-admin question discussion announcement
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • AspForum.dll

    help database sql-server sysadmin question
    3
    0 Votes
    3 Posts
    12 Views
    L
    Great I am anxiously looking forward to it. Oh, and BTW I am SQL Server DBA so if you need any help let me know.
  • A simple yet useful addition to the discussion boards

    tools question discussion
    2
    0 Votes
    2 Posts
    5 Views
    C
    Hi Oz, We already have this - if it's not working for you then can you send me a note letting me know what browser and OS you are using? Thanks, Chris
  • plain text article versions for saving/printing?

    question announcement career
    5
    0 Votes
    5 Posts
    12 Views
    C
    Stripping tags is easy - it's the formatted text output that is the trick. For instance, <h1>Heading</h1>This is a paragraph Should come out:   Heading   This is a paragraph but by stripping tags we'd get   Heading This is a paragraph I'll check out the DOM as per Eriks suggestion