Ejemplo n.º 1
0
        public CoderBlogForm(LightStartForm tLightStartForm)
        {
            InitializeComponent();


            LightStartForm = tLightStartForm;

            this.MaximumSize = Screen.PrimaryScreen.WorkingArea.Size;

            CoderBlog = new Infinium.CoderBlog();

            //ActiveNotifySystem.ClearSubscribesRecords(Security.CurrentUserID, LightTile.Name);

            Initialize();

            //LightNewsContainer.PageChanged(null);

            ActiveNotifySystem.ClearSubscribesRecords(Security.CurrentUserID, this.Name);
            //ActiveNotifySystem.ClearModuleUpdates(LightTile.Name);
            //ActiveNotifySystem.ClearCurrentOpenModuleUpdates(this.Name);

            //OnANSUpdate();

            while (!SplashForm.bCreated)
            {
                ;
            }
        }
Ejemplo n.º 2
0
        public AddBlogNewsForm(ref Infinium.CoderBlog tCoderBlog, ref Form tTopForm)
        {
            InitializeComponent();

            TopForm   = tTopForm;
            CoderBlog = tCoderBlog;

            CreateAttachments();
        }
Ejemplo n.º 3
0
        public AddBlogNewsForm(ref Infinium.CoderBlog tCoderBlog, int SenderTypeID, string HeaderText, string BodyText, int iNewsID, DateTime dDateTime, ref Form tTopForm)
        {
            InitializeComponent();

            CoderBlog = tCoderBlog;

            TopForm = tTopForm;

            HeaderTextEdit.Text = HeaderText;
            BodyTextEdit.Text   = BodyText;

            iNewsIDEdit = iNewsID;
            DateTime    = dDateTime;

            CreateAttachments();
            CopyAttachs(iNewsID);
        }