Helpful ReplyHi there!

Author
Beepster
Max Output Level: 0 dBFS
  • Total Posts : 18001
  • Joined: 2012/05/11 19:11:24
  • Status: offline
2012/10/06 16:34:39 (permalink)

Hi there!

I just wanted to post a thread to get the "THIS FORUM SUCKS" thread off the mainpage. It was bothering me. Cheers.
#1
miguelito
Max Output Level: -83 dBFS
  • Total Posts : 391
  • Joined: 2009/12/19 09:18:15
  • Location: Bellingham, WA
  • Status: offline
Re:Hi there! 2012/10/08 10:19:06 (permalink) ☄ Helpful
Good job!

;-)

Mike

A Roseberry racer w/
Win7 Pro (64) fully loaded
RME UFX Fireface;
Sonar X2;
Guitars and amps. 
Axon 100 MKII,
M-Audio Keystation Pro 88,
Komplete 
All software latest revision
 
#2
Middleman
Max Output Level: -31.5 dBFS
  • Total Posts : 4397
  • Joined: 2003/12/04 00:58:50
  • Location: Orange County, CA
  • Status: offline
Re:Hi there! 2012/10/08 11:02:47 (permalink) ☄ Helpful
C #, there I added a developer term to make the thread legit..

Gear: A bunch of stuff.
#3
miguelito
Max Output Level: -83 dBFS
  • Total Posts : 391
  • Joined: 2009/12/19 09:18:15
  • Location: Bellingham, WA
  • Status: offline
Re:Hi there! 2012/10/08 16:29:43 (permalink) ☄ Helpful
Technically that would be C# (no space) ;-). Just saying...

Regards,

Mike

A Roseberry racer w/
Win7 Pro (64) fully loaded
RME UFX Fireface;
Sonar X2;
Guitars and amps. 
Axon 100 MKII,
M-Audio Keystation Pro 88,
Komplete 
All software latest revision
 
#4
Middleman
Max Output Level: -31.5 dBFS
  • Total Posts : 4397
  • Joined: 2003/12/04 00:58:50
  • Location: Orange County, CA
  • Status: offline
Re:Hi there! 2012/10/08 16:40:06 (permalink) ☄ Helpful
Those semantics will kill you when you compile.

Gear: A bunch of stuff.
#5
miguelito
Max Output Level: -83 dBFS
  • Total Posts : 391
  • Joined: 2009/12/19 09:18:15
  • Location: Bellingham, WA
  • Status: offline
Re:Hi there! 2012/10/09 09:53:15 (permalink) ☄ Helpful
Those semantics will kill you when you compile.

 
Ain't that the truth!
 
/// <summary>
/// Cycles through all of the controls seeking out the TextBoxes and ComboBoxes then get the label immediately
/// to the left of the Control and assign the Control to the label and the Labels.Click event to our EventHandler
/// </summary>
/// <param name="tloX">TableLayoutPanel</param>
private void MapControlsToLabels(TableLayoutPanel tloX)
{
try
    {
        foreach (Control c in tloX.Controls)
        {
            if ((c is TextBox) || (c is ComboBox))
            {
                TableLayoutPanelCellPosition pcpX = tloX.GetCellPosition(c);
                Control label = tloX.GetControlFromPosition((pcpX.Column - 1), pcpX.Row);
                if (c is TextBox)
                {
                    ((
TextBox)c).KeyUp += new KeyEventHandler(this.TextEnterKeyUp);
                }
 
                if ((label is Label) && (((Label)label).Tag == null))
                {
                    ((
Label)label).Tag = c; ///// assign our control to this labels Tag
                    label.Click += new EventHandler(AllLabelsClick); ///// then assign the click event a handler
                }
                else
                {
                    break;
                }
            }
        }
    }
    catch (Exception ex)
    {
        MyTools.ExceptionHandler(new AnvilApplicationException(ex.Message, "AobMain:MapControlsToLabels"));
    }
}
 
// Just saying... ;-)

Mike

A Roseberry racer w/
Win7 Pro (64) fully loaded
RME UFX Fireface;
Sonar X2;
Guitars and amps. 
Axon 100 MKII,
M-Audio Keystation Pro 88,
Komplete 
All software latest revision
 
#6
Beepster
Max Output Level: 0 dBFS
  • Total Posts : 18001
  • Joined: 2012/05/11 19:11:24
  • Status: offline
Re:Hi there! 2012/10/09 16:10:44 (permalink)
It got all sorts o' nerdy up in here. lol
#7
miguelito
Max Output Level: -83 dBFS
  • Total Posts : 391
  • Joined: 2009/12/19 09:18:15
  • Location: Bellingham, WA
  • Status: offline
Re:Hi there! 2012/10/09 22:28:13 (permalink)
Sorry Beep, didn't mean to hi-jack your thread...or did I?

Regards,

Mike

A Roseberry racer w/
Win7 Pro (64) fully loaded
RME UFX Fireface;
Sonar X2;
Guitars and amps. 
Axon 100 MKII,
M-Audio Keystation Pro 88,
Komplete 
All software latest revision
 
#8
Beepster
Max Output Level: 0 dBFS
  • Total Posts : 18001
  • Joined: 2012/05/11 19:11:24
  • Status: offline
Re:Hi there! 2012/10/10 12:28:02 (permalink)
There wasn't much to jack. ;-)
#9
Beepster
Max Output Level: 0 dBFS
  • Total Posts : 18001
  • Joined: 2012/05/11 19:11:24
  • Status: offline
Re:Hi there! 2012/10/10 21:17:42 (permalink)
It's back again. Therefore... bump.
#10
Fog
Max Output Level: 0 dBFS
  • Total Posts : 12302
  • Joined: 2008/02/27 21:53:35
  • Location: UK
  • Status: offline
Re:Hi there! 2012/10/15 08:15:12 (permalink)
I'd say +1

or should that be ++ ?

there is a lot of rubbish spam for gold sellers on this bit


#11
Jump to:
© 2024 APG vNext Commercial Version 5.1