Thread: Bugs (and strange things...)

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    Well yeah... but mine would put up a damn good fight even drunk!

  2. #2
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >umm.... wtf is Piro?
    The little transparent anime guy on the lower right hand side of my screenshot.
    My best code is written with the delete key.

  3. #3
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    Quote Originally Posted by Prelude
    >umm.... wtf is Piro?
    The little transparent anime guy on the lower right hand side of my screenshot.
    Hmm yeah, I was sort of wondering what that was. Is that something you can download, or did you write it?
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  4. #4
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >I was sort of wondering what that was.
    It's a toy for people who follow Megatokyo.

    >Is that something you can download
    http://www.derangedcoder.net/deskmate/

    >or did you write it?
    If I had thought of it I would.
    My best code is written with the delete key.

  5. #5
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    Ah, interesting. Doesn't it get annoying when you're trying to read something though?
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  6. #6
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >Doesn't it get annoying when you're trying to read something though?
    If I'm doing a lot of reading in that area I'll either switch to a smaller image, move it somewhere else or increase the transparency until it doesn't bother me.
    My best code is written with the delete key.

  7. #7
    Registered User
    Join Date
    Mar 2004
    Posts
    494
    when u visit the boards from a mac(not logged in) the tables r messed up. when u log in they get fixed.
    When no one helps you out. Call google();

  8. #8
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    Ok....the post code section's suck. I can't even line stuff up with spaces even if I do not cut and paste. In other words I can code right in the reply box between code brackets and spaces DO NOT line up. This is very annoying because much of my recent code has been in Direct3D and many of the functions take quite a few parameters. My policy is to place each parameter on a different line but lined up vertically with the previous one. This simply does not work on the board.

    And please if you can....change the TAB key's function here to actually insert spaces, tabs, or whatever it takes - instead of changing the focus. That is what my original complaint was. I've been quite patient with it for a very long time and the code sections are a nice feature (on both versions)...but they need some work.

    Microsoft's edit control class or text box class just simply sucks and they all have the same stupid bug in them. Write a line of text until it wraps. When it wraps...go back on the second line and attempt to edit it. You will get some very weird stuff. Apparently the MS text box control does not insert end of line or carriage returns when text wraps at the window borders. This is true in all MS text box controls and all those that subclass from it....including the overly annoying MS Word, nearly all internet text boxes, and like I said anything that subclasses the control.

    Perhaps this is why I find the board's reply boxes to be very annoying. Often times I will attempt to insert text but the insert has been turned off so it will overwrite my text and then I will turn insert on and hit space and it will still be off this screwing up the text even more. I wish someone would fix these MS edit/text box controls. Also, I never turned insert off - it did it on its own which is stupid.

    Example:

    aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

    That is one line, not two.

    Example of the very annoying code spacing problem - w/o using tab because tab changes focus so you know I'm not hitting tab.

    Code:
    MyClass->SomeLargeFunc(int x,
                                               char a,
                                               float f,
                                               double value,
                                               SomePointer *SomeObject);
    Look at that ugly garbage.

    Lined up when I created it. Did not line up when it posted. This is because the window expands when you post thus screwing all the spaces up - either need to enlarge the reply controls or somehow interpolate between the sizes so that what you see when you type it in is what you get when you view it on the board.
    Last edited by VirtualAce; 04-23-2004 at 08:10 AM.

  9. #9
    Registered User
    Join Date
    Jan 2003
    Posts
    648
    Duh bubba, of course its not going to line up. The posting font (Arial) is not a fixed width font. For example, a letter i is smaller than an O. If you want to line them up, go into notepad and make sure you have courier or fixedays on it. Then edit it there and copy+paste it in the post box.

    Perhaps there should be an option that changes the font of the posting box from Arial to Courier New and vice versa. It would be simple JavaScript.

  10. #10
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    Also, when I click on edit... all of the indentation vanishes in my code blocks
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  11. #11
    The Defective GRAPE Lurker's Avatar
    Join Date
    Feb 2003
    Posts
    949
    Quote Originally Posted by Hunter2
    Also, when I click on edit... all of the indentation vanishes in my code blocks
    Tabs?
    Do not make direct eye contact with me.

  12. #12
    Carnivore ('-'v) Hunter2's Avatar
    Join Date
    May 2002
    Posts
    2,879
    >>Tabs?
    I believe they were spaces, though I could be mistaken. It's too hard to put tabs in the editor, I have to make do with actually hitting space four times instead
    Just Google It. √

    (\ /)
    ( . .)
    c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.

  13. #13
    Registered User VirtualAce's Avatar
    Join Date
    Aug 2001
    Posts
    9,607
    Pardon me for saying so but shouldn't it be duh...I typed my code in this edit box so it should appear as I typed it? Why make me do extra work when I've already gone through the trouble of coding here at the board?

    I'm not pasting from an external source I'm simply coding here. It should appear as you coded it...not how the board deems it should appear.

    This is a serious flaw in the code tag system. If it is not fixed it will seriously hinder my ability to properly include code tags in my posts - simply because they do not work right and they make properly spaced and indented code look like a garbled mess.

  14. #14
    erstwhile
    Join Date
    Jan 2002
    Posts
    2,227
    This has probably been mentioned before but long lines of code within code tags tend to have inappropriate spaces inserted.
    CProgramming FAQ
    Caution: this person may be a carrier of the misinformation virus.

  15. #15
    5|-|1+|-|34|) ober's Avatar
    Join Date
    Aug 2001
    Posts
    4,429
    Is there any way to see who posted reputation to your account? It just says the comments and the thread.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Strange side effects?
    By _Elixia_ in forum C Programming
    Replies: 4
    Last Post: 08-16-2005, 03:25 PM
  2. Strange file problem.
    By tilex in forum C++ Programming
    Replies: 1
    Last Post: 12-29-2004, 12:32 AM
  3. strange linked list problem
    By maes in forum Windows Programming
    Replies: 0
    Last Post: 09-06-2003, 09:28 AM