Click here to Skip to main content
15,913,722 members
Home / Discussions / C#
   

C#

 
GeneralRe: Keeping the record on hold Pin
Steven Campbell28-Jun-04 13:35
Steven Campbell28-Jun-04 13:35 
GeneralRe: Keeping the record on hold Pin
Serge Lobko-Lobanovsky28-Jun-04 23:51
Serge Lobko-Lobanovsky28-Jun-04 23:51 
GeneralMultiple Forms Pin
Jon_Slaughter28-Jun-04 6:44
Jon_Slaughter28-Jun-04 6:44 
GeneralRe: Multiple Forms Pin
Heath Stewart28-Jun-04 6:56
protectorHeath Stewart28-Jun-04 6:56 
GeneralRe: Multiple Forms Pin
Jon_Slaughter28-Jun-04 8:21
Jon_Slaughter28-Jun-04 8:21 
GeneralRe: Multiple Forms Pin
Heath Stewart28-Jun-04 8:57
protectorHeath Stewart28-Jun-04 8:57 
GeneralRe: Multiple Forms Pin
Jon_Slaughter28-Jun-04 9:16
Jon_Slaughter28-Jun-04 9:16 
GeneralRe: Multiple Forms Pin
Heath Stewart28-Jun-04 9:34
protectorHeath Stewart28-Jun-04 9:34 
You've really got me confused. You've gone from displaying two forms to inheritted forms to setting one property that affects two forms to layered windows. Please, be specific about what you're trying to do. I honestly have no idea of what you're trying to do at this point in time.

If that particular chunk of code isn't working in the designer, you can simply "skip" it while in design mode:
protected override System.Windows.Forms.CreateParams CreateParams
{
  get
  {
    System.Windows.Forms.CreateParams cp = base.CreateParams;
    if (!DesignMode)
      cp.ExStyle |= Win32.WS_EX_LAYERED; // 0x00080000
    return cp;
  }
}
Sorry I can't say more, but like I said it's hard to figure out what you're trying to do with the seemingly different tracks you've gone down so far in this thread. Please ellaborate and I'm sure I or someone else can help.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: Multiple Forms Pin
Jon_Slaughter28-Jun-04 11:14
Jon_Slaughter28-Jun-04 11:14 
GeneralRe: Multiple Forms Pin
Heath Stewart28-Jun-04 11:27
protectorHeath Stewart28-Jun-04 11:27 
GeneralMulticast Programming Pin
goodpilot28-Jun-04 6:25
goodpilot28-Jun-04 6:25 
GeneralRe: Multicast Programming Pin
Heath Stewart28-Jun-04 6:47
protectorHeath Stewart28-Jun-04 6:47 
GeneralRe: Multicast Programming Pin
goodpilot28-Jun-04 7:35
goodpilot28-Jun-04 7:35 
GeneralGetting a ConfigurationException and I dont know why Pin
Flack28-Jun-04 6:18
Flack28-Jun-04 6:18 
GeneralRe: Getting a ConfigurationException and I dont know why Pin
Heath Stewart28-Jun-04 6:25
protectorHeath Stewart28-Jun-04 6:25 
GeneralRe: Getting a ConfigurationException and I dont know why Pin
Flack28-Jun-04 6:35
Flack28-Jun-04 6:35 
Questionhow to retrieve the ProductCode? Pin
econnor28-Jun-04 6:15
econnor28-Jun-04 6:15 
AnswerRe: how to retrieve the ProductCode? Pin
Heath Stewart28-Jun-04 6:21
protectorHeath Stewart28-Jun-04 6:21 
GeneralRe: how to retrieve the ProductCode? Pin
econnor29-Jun-04 3:53
econnor29-Jun-04 3:53 
GeneralEnumerations (design question) Pin
mealnumberone28-Jun-04 5:44
mealnumberone28-Jun-04 5:44 
GeneralRe: Enumerations (design question) Pin
Heath Stewart28-Jun-04 6:33
protectorHeath Stewart28-Jun-04 6:33 
Questionneed to send within the current connection ..? Pin
Adel83k28-Jun-04 5:18
Adel83k28-Jun-04 5:18 
AnswerRe: need to send within the current connection ..? Pin
Heath Stewart28-Jun-04 6:29
protectorHeath Stewart28-Jun-04 6:29 
GeneralWindows Service App Pin
japanreddy28-Jun-04 4:37
japanreddy28-Jun-04 4:37 
GeneralRe: Windows Service App Pin
Heath Stewart28-Jun-04 4:55
protectorHeath Stewart28-Jun-04 4:55 

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.