what will happen to the previous post?
We can get them?
what will happen to the previous post?
We can get them?
ISAC SOTO maybe that one from yesterday it is lost. Can you write it again?
I had a Database Problem. Sorry for that
looks nice...
Liked!
hope that this also resolves issue with font size defaulting or shrinking to zero when creating or editing posts...
hope that this also resolves issue with font size defaulting or shrinking to zero when creating or editing posts...
is this a issue that is actual or from the last version?
this was an issue with previous one. have not seen it since update.
Not sure if anyone else was affected but for me it was a very common issue, specially when using Chrome.
for a while i attributed it to my browser or machine but eventually found out that i got same result regardless which machine or browser i used - although IE for example was less affected it was not immune (and who used IE nowdays...). so after trying many alternatives (different computer, browser etc.) the only common factor was me or my account.
also when pasting some text into browser text box, entire box (including text already in there) was changing font size, plus it would get sprinkled with bunch of closing tags for font or size.
so... pleased to see it gone.
i got used to typing in text editor and just pasting in forum... much easier to fix when issue strikes.
Looks great, looking forward to seeing what the brand-specific sections will look like.
you can check them now
One small annoyance I'm noticing: copy-pasting into the Quick Reply box strips all indenting when I paste code into them.
So, if my original program code looks like:
IF Variable THEN
DoSomething()
ENDIF
When I copy&paste it into the quick-reply window, it looks like:
IF Variable THEN
DoSomething()
ENDIF
It's a minor thing, but I rely on indenting to make my code more readable.
Using the "Reply" button instead of the quick-reply window has the same issue.
ah I understand, there is no TABs pasting in.
I don't think this can be fixed, but i give a try.
It gets weirder. I indented the DoSomething in one of my examples, but when I hit REPLY, the indenting got stripped. I just went back and edited that post to put the indenting back in, and it got stripped out again, as soon as I hit REPLY.
That's using spaces -- I can't type tabs into the reply box.
For the Code tagging... hm. I was pasting my code into the Replay window, then framing it with the Code tags (out in the regular threads, not here). Let me try making the Code tags first, then pasting inside them:
GLOBAL DEFFCT BOOL TimeOut (FO_nCycFlag :OUT, FI_rTimeLimit :IN)
;FOLD HEADER
;Function that waits for either the cyclic flag
;or the time limit in seconds, whichever comes first
;ENDFOLD HEADER
;FOLD EXECUTABLE
DECL BOOL FO_nCycFlag
DECL REAL FI_rTimeLimit ; seconds
DECL INT _nStopWatch, _nInit, _nAccumulator
FI_rTimeLimit = FI_rTimeLimit * 1000 ; convert to milliseconds
_nInit = ElapsedTime (_nStopWatch) ; init stopwatch
_nAccumulator = 0 ; init accumulator
REPEAT
WAIT SEC 0.06 ; Timeout loop
_nAccumulator = _nAccumulator + ElapsedTime (_nStopWatch)
UNTIL (FO_nCycFlag OR (_nAccumulator > FI_rTimeLimit))
RETURN TRUE
;ENDFOLD EXECUTABLE
ENDFCT
Display More
Okay, that works. So instead of manually adding Code and /Code tags the old fashioned way, I need to use the Code "box" and paste into that. Okay, I can work with that. Thanks, Werner.