private void btnEditView_ButtonClick(object sender, ButtonPressedEventArgs e) { try { var checkConnect = SEDInternetConnection.CheckConnectTimeOutWait(splashScreenManagerWebPage); if (checkConnect == false) return; var getLink = gvShowFeeds.GetRowCellValue(_index2, "Link").ToString(); var frmViewPosts = new PR03FrmViewPosts { Title = gvShowFeeds.GetRowCellValue(_index2, "Title").ToString(), Link = gvShowFeeds.GetRowCellValue(_index2, "Link").ToString(), PubDate = gvShowFeeds.GetRowCellValue(_index2, "PubDate").ToString(), Image = gvShowFeeds.GetRowCellValue(_index2, "Image").ToString(), Description = gvShowFeeds.GetRowCellValue(_index2, "Description").ToString(), Content = GetPatern(getLink), IdScategories = _idCateChoice }; frmViewPosts.Show(); } catch { /* ignored*/ } }
private void btnEditView_ButtonClick(object sender, ButtonPressedEventArgs e) { try { var checkConnect = SEDInternetConnection.CheckConnectTimeOutWait(splashScreenManagerMultiplePage); if (checkConnect == false) return; var idScate = Convert.ToInt32(gvShowFeeds.GetRowCellValue(_indexShowFeeds, "IdRssPage").ToString()); ; var getLink = gvShowFeeds.GetRowCellValue(_indexShowFeeds, "Link").ToString(); var frmViewPosts = new PR03FrmViewPosts { Title = gvShowFeeds.GetRowCellValue(_indexShowFeeds, "Title").ToString(), Link = gvShowFeeds.GetRowCellValue(_indexShowFeeds, "Link").ToString(), PubDate = gvShowFeeds.GetRowCellValue(_indexShowFeeds, "PubDate").ToString(), Image = gvShowFeeds.GetRowCellValue(_indexShowFeeds, "Image").ToString(), Description = gvShowFeeds.GetRowCellValue(_indexShowFeeds, "Description").ToString(), IdScategories = idScate, Content = GetPatern(getLink, idScate) }; frmViewPosts.Show(); } catch { // ignored } }