|
I was in the middle of an update when you saw this so once the update was complete things went back to normal
cheers
Chris Maunder
|
|
|
|
|
Thanks for answering
M.D.V.
If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about?
Help me to understand what I'm saying, and I'll explain it better to you
Rating helpful answers is nice, but saying thanks can be even nicer.
|
|
|
|
|
Hi all,
I just a mail from Chris for MVP 2019, I see the rep points in history.
But rep total did not update.
Is it a bug or update is just lagged ?
Patrice
“Everything should be made as simple as possible, but no simpler.” Albert Einstein
|
|
|
|
|
Rep total have just updated with new day.
Problem solved.
Patrice
“Everything should be made as simple as possible, but no simpler.” Albert Einstein
modified 2-Jan-19 2:46am.
|
|
|
|
|
The avatars and names of forum posters seem to be getting mixed up. The images are not being shown, but the hint is overlaying the name. See How to clone a videoPlayer trackbar? - C# Discussion Boards[^] for examples.
[edit]
It may have something to do with what looks like a new category (MVE).
[/edit]
[edit]
Additionally it appears that MVA could be one of two things ... see CodeProject MVP 2019[^].
[/edit]
modified 1-Jan-19 13:36pm.
|
|
|
|
|
Images are Not showing for this post kindly fix this error.
https://www.codeproject.com/Articles/1033978/Office-Authentication-using-Visual-Studio-MVC-appl
|
|
|
|
|
The author has linked to offsite images, and that site is not able to load them. Nothing that CodeProject can do to fix it. You could try posting a message in the forum at the end of the Article, the author may then respond.
|
|
|
|
|
The link in the email reconfirm email is incorrect and won't work as sent. It's missing the dot after codeproject and before com:
Click here: https://www.codeprojectcom/script/Membership/ConfirmEmail.aspx?tg=[snip]
|
|
|
|
|
Can you please forward me that email? (chris@codeproject.com)
We saw this issue years and years and years ago and it was a mail server issue. I'm hoping it's just a bad template on our end this time.
cheers
Chris Maunder
|
|
|
|
|
4 Articles need approval, "Open Dyno Real Time Control System 1-4".
But when I click one of them it Shows "This article was marked as deleted at 26 Nov 2014."
E.g: The first of this series: Open Dyno Real Time Control System[^]
Btw: I think this time not a Caching issue... 2018-2014
It is History
It does not solve my Problem, but it answers my question
modified 19-Jan-21 21:04pm.
|
|
|
|
|
I think the author might be trying to restore these. Looks like I deleted them four years ago, but I can't find any record of why.
Thanks,
Sean Ewington
CodeProject
|
|
|
|
|
So it is ok that you delete my Report.
I can feel with you, just Need to extend a Software Piece implemented before 15 years
It does not solve my Problem, but it answers my question
modified 19-Jan-21 21:04pm.
|
|
|
|
|

It does not solve my Problem, but it answers my question
modified 19-Jan-21 21:04pm.
|
|
|
|
|
Dear admin,
Please delete or if cannot, please stop my account in codeproject.com
Thanks
Regards
M.H. Erfani
modified 1-Feb-19 21:01pm.
|
|
|
|
|
You can close it yourself:
Look in the top right of this page, and hover the mouse over your username.From the menu that appears, select "My Settings".(Or follow this link:https://www.codeproject.com/script/Membership/Modify.aspx[^] )
The settings page is organised into tabs: pick the "Privacy" tab.Near the middle of the page, under "Account Status" there is a checkbox "Close my account"Check this, and a dialog will appear: "Are you sure? Once you deactivate your account you will lose access to your posts, articles and data." Select "OK".Now check the "Forget me. Forever." box under "Forget me Forever", and OK the dialog that appears.Make sure "I have read and agree to the Privacy Policy and Terms of Service for this site" is also checked, and press the "Save my Settings" button.Your account is gone.Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
Community menu[^]
That's taken in Pale Moon, but it's the same in Maxthon, Firefox, Opera, and (shudder) IE.
The Soapbox goes missing sometimes, too, which makes a huge difference to my lifestyle.
I wanna be a eunuchs developer! Pass me a bread knife!
|
|
|
|
|
|
That's because code tags: <code>code</code> are meant for inline highlighting - variable names and such like. If you use it for actual code then it looks very poor:
public static DataTable ToDataTable<T>(this IList<T> data)<br />
{<br />
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(typeof(T));<br />
bool[] visibility = new bool[properties.Count];<br />
DataTable dt = new DataTable();<br />
for (int i = 0; i < properties.Count; i++)<br />
{<br />
PropertyDescriptor property = properties[i];<br />
AttributeCollection ac = property.Attributes;<br />
visibility[i] = true;<br />
if (ac.Contains(BrowsableAttribute.No))<br />
{<br />
visibility[i] = false;<br />
continue;<br />
}<br />
dt.Columns.Add(property.Name, property.PropertyType);<br />
}<br />
foreach (T item in data)<br />
{<br />
List<object> values = new List<object>();<br />
for (int i = 0; i < properties.Count; i++)<br />
{<br />
if (visibility[i])<br />
{<br />
values.Add(properties[i].GetValue(item));<br />
}<br />
}<br />
dt.Rows.Add(values.ToArray());<br />
}<br />
return dt;<br />
}
If you use pre tags <pre>lump of code</pre> (via the code widget):
public static DataTable ToDataTable<T>(this IList<T> data)
{
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(typeof(T));
bool[] visibility = new bool[properties.Count];
DataTable dt = new DataTable();
for (int i = 0; i < properties.Count; i++)
{
PropertyDescriptor property = properties[i];
AttributeCollection ac = property.Attributes;
visibility[i] = true;
if (ac.Contains(BrowsableAttribute.No))
{
visibility[i] = false;
continue;
}
dt.Columns.Add(property.Name, property.PropertyType);
}
foreach (T item in data)
{
List<object> values = new List<object>();
for (int i = 0; i < properties.Count; i++)
{
if (visibility[i])
{
values.Add(properties[i].GetValue(item));
}
}
dt.Rows.Add(values.ToArray());
}
return dt;
}
Then it looks fine.
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I use pre tags, but the code still not easy to read. There are no space between each line.Previously it had, but now no.
|
|
|
|
|
It does with mine - where is the "bad example" posted: can you give us a URL to the message or question?
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
|
That's your forum settings: Look above the messages on this page, and you will see an Orange bar below the "New Discussion" button. Check your "Spacing" setting: I'm guessing you have "Tight", and want "Compact". Change that, and click the "Update" button on the right hand end of the bar.
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
|
Nope:

I see you are running Chrome, but an older version. I'm on Version 71.0.3578.98 (Official Build) (64-bit), under Windows 10. That looks like Android you are using (or maybe Chromebook?) - though not sure which version.
If I look at it on my Nexus 7 (Android V4.4) it's fine as well. It looks good on my Android phone as well (if hard to read because of the small screen)
I'd suspect fonts myself - my desktop is showing the code font as font: 9pt Consolas,"Courier New",Courier,mono; - what do you see when you inspect the page?
Sent from my Amstrad PC 1640
Never throw anything away, Griff
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...
AntiTwitter: @DalekDave is now a follower!
|
|
|
|
|
I have updated Chrome version to the latest but the issue still there.
Perhaps this issue only happened to Linux's users ?
|
|
|
|