Click here to Skip to main content
15,892,965 members
Home / Discussions / C#
   

C#

 
GeneralRe: Automatically Install Updated Application Version Pin
PDTUM31-Aug-10 9:24
PDTUM31-Aug-10 9:24 
AnswerRe: Automatically Install Updated Application Version Pin
Matthew Klein31-Aug-10 10:24
Matthew Klein31-Aug-10 10:24 
QuestionCOM PORT SETTING THROUGH C# IDE Pin
venkat swaminathan29-Aug-10 7:40
venkat swaminathan29-Aug-10 7:40 
QuestionUIS Application\MainDialog.Designer.cs Pin
zhiyuan1629-Aug-10 5:19
zhiyuan1629-Aug-10 5:19 
AnswerRe: UIS Application\MainDialog.Designer.cs Pin
Luc Pattyn29-Aug-10 5:24
sitebuilderLuc Pattyn29-Aug-10 5:24 
GeneralRe: UIS Application\MainDialog.Designer.cs Pin
zhiyuan1629-Aug-10 5:31
zhiyuan1629-Aug-10 5:31 
GeneralRe: UIS Application\MainDialog.Designer.cs Pin
Dan Mos29-Aug-10 5:41
Dan Mos29-Aug-10 5:41 
GeneralRe: UIS Application\MainDialog.Designer.cs Pin
zhiyuan1629-Aug-10 5:45
zhiyuan1629-Aug-10 5:45 
GeneralRe: UIS Application\MainDialog.Designer.cs Pin
Dan Mos29-Aug-10 6:02
Dan Mos29-Aug-10 6:02 
GeneralRe: UIS Application\MainDialog.Designer.cs Pin
Luc Pattyn29-Aug-10 5:43
sitebuilderLuc Pattyn29-Aug-10 5:43 
QuestionA simple question. Persistence block in C# text editor? Pin
Fred 3429-Aug-10 3:50
Fred 3429-Aug-10 3:50 
AnswerRe: A simple question. Persistence block in C# text editor? Pin
Abhinav S29-Aug-10 4:10
Abhinav S29-Aug-10 4:10 
GeneralRe: A simple question. Persistence block in C# text editor? Pin
Fred 3429-Aug-10 23:06
Fred 3429-Aug-10 23:06 
AnswerRe: A simple question. Persistence block in C# text editor? Pin
PIEBALDconsult29-Aug-10 5:18
mvePIEBALDconsult29-Aug-10 5:18 
Questiongetting "attempted to read or write protected memory in .net" when trying to create a AVI file. Pin
Member 425763228-Aug-10 20:36
Member 425763228-Aug-10 20:36 
AnswerRe: getting "attempted to read or write protected memory in .net" when trying to create a AVI file. Pin
Luc Pattyn29-Aug-10 1:46
sitebuilderLuc Pattyn29-Aug-10 1:46 
QuestionC# loading data Pin
C.CoderCreator28-Aug-10 16:23
C.CoderCreator28-Aug-10 16:23 
This is my code

Note newNote = new Note();
Search newSearch = new Search();
SRLS newSRLS = new SRLS();
Alarm newAlarm = new Alarm();
QuickLaunch newQuickLaunch = new QuickLaunch();
Calender newCalender = new Calender();
Time newformtime = new Time();
private void Form1_Load(object sender, EventArgs e)
{
    notifyIcon1.Visible = true;

    if (timeToolStripMenuItem.Checked == true)
    {
        newformtime.Show();
    }
    if (alarmToolStripMenuItem.Checked == true)
    {
        newAlarm.Show();
    }
    if (calenderToolStripMenuItem.Checked == true)
    {
        newCalender.Show();
    }
    if (sRLSToolStripMenuItem.Checked == true)
    {
        newSRLS.Show();
    }
    if (searchToolStripMenuItem.Checked == true)
    {
        newSearch.Show();
    }
    if (noteToolStripMenuItem.Checked == true)
    {
        newNote.Show();
    }
    if (quickLaunchToolStripMenuItem.Checked == true)
    {
        newQuickLaunch.Show();
    }


    timeToolStripMenuItem.Checked = Settings.Default.timecheck;
    alarmToolStripMenuItem.Checked = Settings.Default.calendercheck;
    calenderToolStripMenuItem.Checked = Settings.Default.alarmcheck;
    sRLSToolStripMenuItem.Checked = Settings.Default.srlscheck;
    searchToolStripMenuItem.Checked = Settings.Default.searchcheck;
    noteToolStripMenuItem.Checked = Settings.Default.notecheck;
    quickLaunchToolStripMenuItem.Checked = Settings.Default.quickLaunchcheck;

}


So id some one checks the box then closes the program and then reopens it the other form should be visible can anyone see the problem in my code? coz I can't
AnswerRe: C# loading data Pin
dan!sh 28-Aug-10 18:54
professional dan!sh 28-Aug-10 18:54 
GeneralRe: C# loading data Pin
C.CoderCreator28-Aug-10 18:55
C.CoderCreator28-Aug-10 18:55 
GeneralRe: C# loading data Pin
dan!sh 28-Aug-10 19:21
professional dan!sh 28-Aug-10 19:21 
GeneralRe: C# loading data Pin
C.CoderCreator28-Aug-10 20:00
C.CoderCreator28-Aug-10 20:00 
GeneralRe: C# loading data Pin
dan!sh 28-Aug-10 20:06
professional dan!sh 28-Aug-10 20:06 
GeneralRe: C# loading data Pin
C.CoderCreator28-Aug-10 20:11
C.CoderCreator28-Aug-10 20:11 
GeneralRe: C# loading data Pin
harold aptroot29-Aug-10 22:38
harold aptroot29-Aug-10 22:38 
AnswerRe: C# loading data Pin
Luc Pattyn29-Aug-10 1:49
sitebuilderLuc Pattyn29-Aug-10 1:49 

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.