C Board  

Go Back   C Board > Community Boards > General Discussions

Reply
 
LinkBack Thread Tools Display Modes
Old 04-12-2004, 04:26 PM   #106
& the hat of GPL slaying
 
Thantos's Avatar
 
Join Date: Sep 2001
Posts: 5,730
Dude that button to the right of the quote button is not the PM button it is the quick reply button.
Thantos is offline   Reply With Quote
Old 04-12-2004, 04:26 PM   #107
RoD
Banned
 
RoD's Avatar
 
Join Date: Sep 2002
Posts: 6,334
yea axon you moron
RoD is offline   Reply With Quote
Old 04-12-2004, 04:42 PM   #108
PC Fixer-Upper
 
Waldo2k2's Avatar
 
Join Date: May 2002
Posts: 2,001
this showed up in mozilla (1.6 stable)
looks like a css problem is being generated, think I saw it a couple of times before too
Attached Images
 
__________________
PHP and XML
Let's talk about SAX
Waldo2k2 is offline   Reply With Quote
Old 04-12-2004, 04:55 PM   #109
RoD
Banned
 
RoD's Avatar
 
Join Date: Sep 2002
Posts: 6,334
@ waldo

never seen that in opera
RoD is offline   Reply With Quote
Old 04-12-2004, 04:57 PM   #110
PC Fixer-Upper
 
Waldo2k2's Avatar
 
Join Date: May 2002
Posts: 2,001
>>never seen that in opera

stfu! mozilla ownz!!
__________________
PHP and XML
Let's talk about SAX
Waldo2k2 is offline   Reply With Quote
Old 04-13-2004, 08:41 AM   #111
5|-|1+|-|34|)
 
ober's Avatar
 
Join Date: Aug 2001
Posts: 4,429
Mozilla sucks.

Another bug... When you send a PM, it asks you if you want a receipt or not and the only answers are "Yes" and "Cancel". Hitting cancel works for "no", but if this could be changed or not asked at all and just made a checkbox, that'd be great.
ober is offline   Reply With Quote
Old 04-17-2004, 08:55 AM   #112
& the hat of GPL slaying
 
Thantos's Avatar
 
Join Date: Sep 2001
Posts: 5,730
Not really a bug but... can we move the "Mark Forums Read" to the bottom of the page and replace it with the "Mark this Forum Read".
Thantos is offline   Reply With Quote
Old 04-17-2004, 10:01 AM   #113
Super Moderator
 
Bubba's Avatar
 
Join Date: Aug 2001
Posts: 7,472
The code section's still leave a lot to be desired. Simply pasting from MSVC into this windows create's a huge mess. Not to mention that this also distorts some of the Direct3D constants - and I have no idea why.

Code:
_device->SetTextureStageState(0,D3DTSS_COLORARG1,D3DTA_TEXTURE);
No idea why that's happening. I also wish there was some way you guys could allow us to use the TAB key inside of posts - the TAB right now changes focus which sucks. Dunno how many times I've tabbed while trying to indent my code and messed up my post.

The board needs to ignore TABs in code sections or treat all TABs as 2 space indents - this would make it easier when pasting from an IDE since I think most of us use 2 or 4 space indents when we code. Right now a TAB looks like 8 characters which really messes your pasted code up. Also it is nearly impossible to line up functions with long parameter lists - no matter how much you space over or how it looks when you create the post...it does not look the same when you actually submit it.

These errors/annoyances have been prevalent in both versions of the board.

Code:
MyClass->ThisIsAHugeParamList(int Arg1,
                                                    int Arg2,
                                                    int Arg3,
                                                    int Arg4,
                                                    int Arg5);
See what I mean??
__________________
If you aim at everything you will hit something but you won't know what it is.

Last edited by Bubba; 04-17-2004 at 10:03 AM.
Bubba is offline   Reply With Quote
Old 04-17-2004, 10:12 AM   #114
& the hat of GPL slaying
 
Thantos's Avatar
 
Join Date: Sep 2001
Posts: 5,730
But tabs in code are a bad thing
Thantos is offline   Reply With Quote
Old 04-17-2004, 11:15 AM   #115
Carnivore ('-'v)
 
Hunter2's Avatar
 
Join Date: May 2002
Posts: 2,865
They're nicer than trying to use spaces and ending up with screwed-up inconsistent indentation.
__________________
Just Google It. √

(\ /)
( . .)
c(")(") This is bunny. Copy and paste bunny into your signature to help him gain world domination.
Hunter2 is offline   Reply With Quote
Old 04-17-2004, 12:05 PM   #116
Registered User
 
Codeplug's Avatar
 
Join Date: Mar 2003
Posts: 3,844
"trying" being the operative word...

There is no difference between converting tabs to 8 spaces or 3 spaces, you will still have inconsitencies and unalignments.

We can all agree to set our tab spacing to 8 (or whatever the board uses) or we can agree to not use tabs at all - like you spose'to!

That's why when you co-develop on a project you use spaces, otherwise the source only looks good in your IDE with your particular tab spacing.

If you have no tabs in your source, it will align perfectly in code tags on the board.

gg
Codeplug is offline   Reply With Quote
Old 04-17-2004, 12:10 PM   #117
Registered User
 
Codeplug's Avatar
 
Join Date: Mar 2003
Posts: 3,844
Code:
_device->SetTextureStageState(0,D3DTSS_COLORARG1,D3DTA_TEXTURE);
//                                            Crazy Space  ^^ 
Weird....

gg
Codeplug is offline   Reply With Quote
Old 04-17-2004, 03:00 PM   #118
End Of Line
 
Hammer's Avatar
 
Join Date: Apr 2002
Posts: 6,240
Quote:
Originally Posted by Codeplug
Code:
 _device->SetTextureStageState(0,D3DTSS_COLORARG1,D3DTA_TEXTURE);
 //                                            Crazy Space  ^^ 
Weird....

gg
This appears to come about as the result of a very long "word". Eg, Here are 65 A's in a row with no spaces (on my part at least).
Code:
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
__________________
When all else fails, read the instructions.
If you're posting code, use code tags: [code] /* insert code here */ [/code]
Hammer is offline   Reply With Quote
Old 04-17-2004, 03:21 PM   #119
The Defective GRAPE
 
Lurker's Avatar
 
Join Date: Feb 2003
Posts: 949
Quote:
Originally Posted by Thantos
But tabs in code are a bad thing
I use them, but that's because I used to use Notepad and I was too lazy to press space twice. Now, I can just set tab size !
__________________
Do not make direct eye contact with me.
Lurker is offline   Reply With Quote
Old 04-17-2004, 05:19 PM   #120
Carnivore ('-'v)
 
Hunter2's Avatar
 
Join Date: May 2002
Posts: 2,865
I prefer to hit tab once, and have everything line up like it's supposed to, than accidentally miss hitting space the fourth time, or hitting it an extra time, and ending up with code that's all over the place. And, I prefer hitting tab once over hitting space four times anyday.
__________________
Just Google It. √

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

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Strange side effects? _Elixia_ C Programming 4 08-16-2005 03:25 PM
Strange file problem. tilex C++ Programming 1 12-29-2004 12:32 AM
strange linked list problem maes Windows Programming 0 09-06-2003 09:28 AM


All times are GMT -6. The time now is 05:45 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0 RC2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22