| / | Forum |
|
7bit
2010.02.07 21:03
Posting code snippets in this forum is almost impossible. Everytime I try to post code or answer a posting with code in the quotation it is pure luck when the formatting doesn't get messed up completely. formatted text 3 spaces
now try to quote this without messing up the indentation. Could the admins please fix this? This forum is centered around programming, why on earth doesn't it have comfortable functions to poste code? It isn't fun to discuss coding topics here because of this dysfunctional broken forum software, so i mostly post in other forums where they dont have these problems. |
|
Championship 2006 changed much in the developers' views. Participants of the last-year Championship drew the conclusion that it was very important to review their trading strategies fundamentally, choose other analytical tools or systems of risk and money management. |
|
7bit
2010.02.07 21:04
7bit wrote >>
Posting code snippets in this forum is almost impossible. Everytime I try to post code or answer a posting with code in the quotation it is pure luck when the formatting doesn't get messed up completely. formatted text 3 spaces
now try to quote this without messing up the indentation. Could the admins please fix this? This forum is centered around programming, why on earth doesn't it have comfortable functions to poste code? It isn't fun to discuss coding topics here because of this dysfunctional broken forum software, so i mostly post in other forums where they dont have these problems. already messed up when posting, it didn't even allow me posting something with indentations :-( |
|
7bit
2010.02.07 21:14
test 123 |
|
7bit
2010.02.07 21:15
|
|
meikel
2010.02.07 21:15
1 2 3 4 |
|
meikel
2010.02.07 21:17
|
|
7bit
2010.02.07 21:17
thats all i see. no code in the quotation anymore |
|
7bit
2010.02.07 21:19
|
|
gordon
2010.02.08 04:52
I think that's intentional, code is usually long, and replies with long quoted blocks become hard to read. Just copy paste the code, the formatting (incluidng the pink block) is retained. |
33780 |
Rosh
2010.02.08 09:26
Use special button "Insert code", it should be better.
|
|
WHRoeder
2010.02.08 19:04
Pasting code has never kept the formatting for me after pressing the Post button: Normal text (variable width - spacing lost): //++++ These are adjusted for 5 digit brokers. Code (fixed width - spacing still lost): //++++ These are adjusted for 5 digit brokers. //++++ These are adjusted for 5 digit brokers. double pips2points, // slippage 3 pips 3=points 30=points pips2dbl; // Stoploss 15 pips 0.0015 0.00150 int Digits.pips; // DoubleToStr(dbl/pips2dbl, Digits.pips) int init() { if (Digits == 5 || Digits == 3) { // Adjust for five (5) digit brokers. pips2dbl = Point*10; pips2points = 10; Digits.pips = 1; } else { pips2dbl = Point; pips2points = 1; Digits.pips = 0; } |