Click here to Skip to main content
15,909,896 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: I might become another person... Pin
glennPattonWork35-Nov-16 3:54
professionalglennPattonWork35-Nov-16 3:54 
GeneralRe: I might become another person... Pin
Sander Rossel5-Nov-16 4:02
professionalSander Rossel5-Nov-16 4:02 
GeneralRe: I might become another person... Pin
dandy724-Nov-16 3:29
dandy724-Nov-16 3:29 
GeneralComedy wildlife photography awards 2016 Pin
Jörgen Andersson3-Nov-16 11:19
professionalJörgen Andersson3-Nov-16 11:19 
GeneralRe: Comedy wildlife photography awards 2016 Pin
Mark_Wallace3-Nov-16 12:27
Mark_Wallace3-Nov-16 12:27 
GeneralRe: Comedy wildlife photography awards 2016 Pin
Mycroft Holmes3-Nov-16 14:19
professionalMycroft Holmes3-Nov-16 14:19 
GeneralRe: Comedy wildlife photography awards 2016 Pin
Super Lloyd3-Nov-16 14:59
Super Lloyd3-Nov-16 14:59 
GeneralFFS Format Your XAML Already!!! Pin
Kevin Marois3-Nov-16 8:42
professionalKevin Marois3-Nov-16 8:42 
People who code XAML like this deserve to be locked into a dungeon and starved into submission!!!

How hard is it it press ENTER after a keyword?????
<Label Grid.Column="1" Grid.Row="7" Content="Up: " FontFamily="Arial" FontSize="16"
           VerticalAlignment="Center" FontWeight="Bold"/>
<TextBox Grid.Column="2" Grid.Row="2" Text="{Binding BayMagnetRaisedValue, Mode=OneWay, StringFormat={}{0:0.00}}" Width="Auto" Height="Auto"
           VerticalAlignment="Center" Background="{Binding BayMagnetUpTestResult, Converter={StaticResource ResultToBrushConverter}}"/>
<Label Grid.Column="1" Grid.Row="3" Content="Down: " FontFamily="Arial" FontSize="16" FontWeight="Bold" VerticalAlignment="Center"/>
<Label Grid.Column="1" Grid.Row="8" Content="Down: " FontFamily="Arial" FontSize="16" FontWeight="Bold" VerticalAlignment="Center"/>
<TextBox Grid.Column="2" Grid.Row="3" Text="{Binding BayMagnetLoweredValue, Mode=OneWay, StringFormat={}{0:0.00}}" Width="Auto" Height="Auto"
           VerticalAlignment="Center" Background="{Binding BayMagnetDownTestResult, Converter={StaticResource ResultToBrushConverter}}"/>
<StackPanel Grid.Column="4" Grid.Row="7" Orientation="Horizontal">
    <Label Content="Min:" FontFamily="Arial" FontSize="14" FontWeight="Bold" VerticalAlignment="Center"/>
    <Label Content="{Binding LRMMagnetUpMin, Mode=OneWay, StringFormat={}{0:0.00}}" FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
    <Label  Grid.Column="4" Grid.Row="1" Content="Max:" FontFamily="Arial" FontSize="14" FontWeight="Bold"
                        VerticalAlignment="Center" Margin="5,0,0,0"/>
    <Label  Grid.Column="5" Grid.Row="1" Content="{Binding LRMMagnetUpMax, Mode=OneWay, StringFormat={}{0:0.00}}"        FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
</StackPanel>
<TextBox Grid.Column="2" Grid.Row="7"  Text="{Binding LRMMagnetRaisedValue, Mode=OneWay, StringFormat={}{0:0.00}}" Width="Auto" Height="Auto"
           VerticalAlignment="Center" Background="{Binding LRMMagnetUpTestResult, Converter={StaticResource ResultToBrushConverter}}"/>
<TextBox Grid.Column="2" Grid.Row="8"  Text="{Binding LRMMagnetLoweredValue, Mode=OneWay, StringFormat={}{0:0.00}}" Width="Auto" Height="Auto"
           VerticalAlignment="Center" Background="{Binding LRMMagnetDownTestResult, Converter={StaticResource ResultToBrushConverter}}"/>
<StackPanel Grid.Column="4" Grid.Row="8" Orientation="Horizontal">
    <Label Content="Min:" FontFamily="Arial" FontSize="14" FontWeight="Bold" VerticalAlignment="Center"/>
    <Label Content="{Binding LRMMagnetDownMin, Mode=OneWay, StringFormat={}{0:0.00}}" FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
    <Label  Grid.Column="4" Grid.Row="1" Content="Max:" FontFamily="Arial" FontSize="14" FontWeight="Bold"
                        VerticalAlignment="Center" Margin="5,0,0,0"/>
    <Label  Grid.Column="5" Grid.Row="1" Content="{Binding LRMMagnetDownMax, Mode=OneWay, StringFormat={}{0:0.00}}" FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
</StackPanel>
<Label Grid.Column="2" Grid.Row="0"  Content="Bay Magnet" FontFamily="Arial" FontSize="16" FontWeight="Bold" VerticalAlignment="Center"/>
<Label Grid.Column="2" Grid.Row="5"  Content="LRM Magnet" FontFamily="Arial" FontSize="16" FontWeight="Bold" VerticalAlignment="Center"/>
<StackPanel Grid.Column="4" Grid.Row="1" Orientation="Horizontal" >
    <Label Content="Min:" FontFamily="Arial" FontSize="14" FontWeight="Bold" VerticalAlignment="Center"/>
    <Label Content="{Binding BayMagnetDownMin, Mode=OneWay, StringFormat={}{0:0.00}}" FontStyle="Italic" VerticalAlignment="Center"
           Width="Auto" FontSize="14"/>
    <Label Content="Max:" FontFamily="Arial" FontSize="14" FontWeight="Bold" VerticalAlignment="Center" Margin="5,0,0,0"/>
    <Label  Grid.Column="5" Grid.Row="1" Content="{Binding BayMagnetDownMax, Mode=OneWay, StringFormat={}{0:0.00}}" FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
</StackPanel>
<StackPanel Grid.Column="4" Grid.Row="2" Orientation="Horizontal">
    <Label Content="Min:" FontFamily="Arial" FontSize="14" FontWeight="Bold" VerticalAlignment="Center"/>
    <Label Content="{Binding BayMagnetUpMin, Mode=OneWay, StringFormat={}{0:0.00}}" FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
    <Label Content="Max:" FontFamily="Arial" FontSize="14" FontWeight="Bold"
                                VerticalAlignment="Center" Margin="5,0,0,0"/>
    <Label Content="{Binding BayMagnetUpMax, Mode=OneWay, StringFormat={}{0:0.00}}" FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
</StackPanel>
<StackPanel Grid.Column="4" Orientation="Horizontal" Grid.Row="3" >
    <Label Content="Min:" FontFamily="Arial" FontSize="14" FontWeight="Bold" VerticalAlignment="Center"/>
    <Label Content="{Binding BayMagnetDownMin, Mode=OneWay, StringFormat=\{0:0.00\}}" FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
    <Label Content="Max:" FontFamily="Arial" FontSize="14" FontWeight="Bold" VerticalAlignment="Center" Margin="5,0,0,0"/>
    <Label  Grid.Column="5" Grid.Row="1" Content="{Binding BayMagnetDownMax, Mode=OneWay, StringFormat=\{0:0.00\}}"      FontStyle="Italic" VerticalAlignment="Center" Width="Auto" FontSize="14"/>
</StackPanel>
If it's not broken, fix it until it is.
Everything makes sense in someone's mind.
Ya can't fix stupid.

GeneralRe: FFS Format Your XAML Already!!! Pin
PIEBALDconsult3-Nov-16 8:49
mvePIEBALDconsult3-Nov-16 8:49 
GeneralRe: FFS Format Your XAML Already!!! Pin
Kevin Marois3-Nov-16 8:51
professionalKevin Marois3-Nov-16 8:51 
GeneralRe: FFS Format Your XAML Already!!! Pin
Richard MacCutchan3-Nov-16 9:00
mveRichard MacCutchan3-Nov-16 9:00 
GeneralRe: FFS Format Your XAML Already!!! Pin
Kevin Marois3-Nov-16 9:06
professionalKevin Marois3-Nov-16 9:06 
GeneralRe: FFS Format Your XAML Already!!! Pin
Marc Clifton3-Nov-16 9:06
mvaMarc Clifton3-Nov-16 9:06 
GeneralRe: FFS Format Your XAML Already!!! Pin
Kevin Marois3-Nov-16 9:49
professionalKevin Marois3-Nov-16 9:49 
GeneralRe: FFS Format Your XAML Already!!! Pin
Richard Deeming3-Nov-16 9:11
mveRichard Deeming3-Nov-16 9:11 
GeneralRe: FFS Format Your XAML Already!!! Pin
ZurdoDev3-Nov-16 9:29
professionalZurdoDev3-Nov-16 9:29 
GeneralRe: FFS Format Your XAML Already!!! Pin
Kyle Moyer3-Nov-16 9:50
Kyle Moyer3-Nov-16 9:50 
GeneralRe: FFS Format Your XAML Already!!! Pin
Brisingr Aerowing3-Nov-16 11:29
professionalBrisingr Aerowing3-Nov-16 11:29 
GeneralRe: FFS Format Your XAML Already!!! Pin
Kyle Moyer3-Nov-16 11:42
Kyle Moyer3-Nov-16 11:42 
GeneralRe: FFS Format Your XAML Already!!! Pin
Brisingr Aerowing3-Nov-16 14:29
professionalBrisingr Aerowing3-Nov-16 14:29 
GeneralRe: FFS Format Your XAML Already!!! Pin
Vark1113-Nov-16 9:15
Vark1113-Nov-16 9:15 
AnswerRe: FFS Format Your XAML Already!!! Pin
Super Lloyd3-Nov-16 13:25
Super Lloyd3-Nov-16 13:25 
GeneralRe: FFS Format Your XAML Already!!! Pin
Kevin Marois3-Nov-16 13:56
professionalKevin Marois3-Nov-16 13:56 
GeneralRe: FFS Format Your XAML Already!!! Pin
Mycroft Holmes3-Nov-16 14:28
professionalMycroft Holmes3-Nov-16 14:28 
GeneralRe: FFS Format Your XAML Already!!! Pin
abmv4-Nov-16 23:04
professionalabmv4-Nov-16 23:04 

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.