Click here to Skip to main content
15,886,724 members
Home / Discussions / C#
   

C#

 
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 
GeneralRe: C# loading data Pin
Mycroft Holmes29-Aug-10 2:20
professionalMycroft Holmes29-Aug-10 2:20 
JokeRe: C# loading data Pin
dan!sh 29-Aug-10 6:58
professional dan!sh 29-Aug-10 6:58 
QuestionPassing an unmanaged buffer to DataObject Pin
Code-o-mat28-Aug-10 8:27
Code-o-mat28-Aug-10 8:27 
AnswerRe: Passing an unmanaged buffer to DataObject Pin
Luc Pattyn28-Aug-10 14:05
sitebuilderLuc Pattyn28-Aug-10 14:05 
GeneralRe: Passing an unmanaged buffer to DataObject Pin
Code-o-mat28-Aug-10 22:24
Code-o-mat28-Aug-10 22:24 
GeneralRe: Passing an unmanaged buffer to DataObject Pin
Luc Pattyn29-Aug-10 1:40
sitebuilderLuc Pattyn29-Aug-10 1:40 
GeneralRe: Passing an unmanaged buffer to DataObject Pin
Code-o-mat29-Aug-10 1:47
Code-o-mat29-Aug-10 1:47 
AnswerRe: Passing an unmanaged buffer to DataObject Pin
Luc Pattyn29-Aug-10 1:51
sitebuilderLuc Pattyn29-Aug-10 1:51 
GeneralRe: Passing an unmanaged buffer to DataObject Pin
Code-o-mat29-Aug-10 2:18
Code-o-mat29-Aug-10 2:18 

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.