Click here to Skip to main content
15,896,526 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Help with some German translations Pin
CodeWraith19-Mar-19 11:53
CodeWraith19-Mar-19 11:53 
GeneralRe: Help with some German translations Pin
User 483504719-Mar-19 13:21
User 483504719-Mar-19 13:21 
GeneralRe: Help with some German translations Pin
CodeWraith19-Mar-19 13:26
CodeWraith19-Mar-19 13:26 
GeneralRe: Help with some German translations Pin
jsc4219-Mar-19 23:53
professionaljsc4219-Mar-19 23:53 
GeneralRe: Help with some German translations Pin
englebart20-Mar-19 2:37
professionalenglebart20-Mar-19 2:37 
GeneralRe: Help with some German translations (Thanks) Pin
stoneyowl220-Mar-19 2:44
stoneyowl220-Mar-19 2:44 
GeneralWhy EF6 and MS sucks today Pin
#realJSOP19-Mar-19 3:02
professional#realJSOP19-Mar-19 3:02 
GeneralRe: Why EF6 and MS sucks today Pin
OriginalGriff19-Mar-19 3:31
mveOriginalGriff19-Mar-19 3:31 
Way back when V1.0 of .NET was released, it was discovered - and reported - that you can't create a C# abstract UserControl and then bring up derived (concrete) versions in the designer unless you created an interim concrete class to derive from:
C#
public class MyAbstractBase : UserControl 
    { 
    ... 
    }
public class MyConcreteControl : MyAbstractBase 
    { 
    ... 
    }
This gives a designer crash.
C#
public class MyAbstractBase : UserControl 
    { 
    ... 
    }
public class MyConcreteIntermediate : MyAbstractBase{}
public class MyConcreteControl : MyConcreteIntermediate 
    { 
    ... 
    }
Works fine, but pretty much cr@ps over the whole point of abstract classes and almost forces you to have two code bases: release which omits the intermediate, and dev which doesn't.
Which is frankly stupid.

It was reported. And has been with every version of Visual Studio since.
Is it fixed? No chance, there is no money in it.

All I'm saying is: don't hold your breath waiting for a fix ... if there isn't pretty immediate money in it, it probably won't happen.
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!

GeneralRe: Why EF6 and MS sucks today Pin
#realJSOP19-Mar-19 4:03
professional#realJSOP19-Mar-19 4:03 
GeneralRe: Why EF6 and MS sucks today Pin
Mark_Wallace19-Mar-19 8:08
Mark_Wallace19-Mar-19 8:08 
GeneralRe: Why EF6 and MS sucks today Pin
englebart20-Mar-19 2:46
professionalenglebart20-Mar-19 2:46 
GeneralRe: Why EF6 and MS sucks today Pin
RickZeeland19-Mar-19 3:42
mveRickZeeland19-Mar-19 3:42 
GeneralRe: Why EF6 and MS sucks today Pin
Slacker00719-Mar-19 4:56
professionalSlacker00719-Mar-19 4:56 
GeneralRe: Why EF6 and MS sucks today Pin
#realJSOP19-Mar-19 7:37
professional#realJSOP19-Mar-19 7:37 
GeneralRe: Why EF6 and MS sucks today Pin
Slacker00719-Mar-19 8:16
professionalSlacker00719-Mar-19 8:16 
GeneralRe: Why EF6 and MS sucks today Pin
pkfox19-Mar-19 9:40
professionalpkfox19-Mar-19 9:40 
GeneralWebsite authoring & hosting - advice needed Pin
megaadam19-Mar-19 2:39
professionalmegaadam19-Mar-19 2:39 
GeneralRe: Website authoring & hosting - advice needed Pin
theoldfool19-Mar-19 3:47
professionaltheoldfool19-Mar-19 3:47 
GeneralRe: Website authoring & hosting - advice needed Pin
#realJSOP19-Mar-19 3:59
professional#realJSOP19-Mar-19 3:59 
GeneralRe: Website authoring & hosting - advice needed Pin
Marc Clifton19-Mar-19 7:12
mvaMarc Clifton19-Mar-19 7:12 
GeneralRe: Website authoring & hosting - advice needed Pin
Vaso Elias20-Mar-19 0:46
Vaso Elias20-Mar-19 0:46 
GeneralRe: Website authoring & hosting - advice needed Pin
Greg Lovekamp20-Mar-19 2:57
professionalGreg Lovekamp20-Mar-19 2:57 
GeneralRe: Website authoring & hosting - advice needed Pin
Member 1165283220-Mar-19 3:09
professionalMember 1165283220-Mar-19 3:09 
GeneralRe: Website authoring & hosting - advice needed Pin
Kent K20-Mar-19 3:21
professionalKent K20-Mar-19 3:21 
GeneralRe: Website authoring & hosting - advice needed Pin
Lucas Vogel20-Mar-19 5:00
professionalLucas Vogel20-Mar-19 5:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.