Click here to Skip to main content
15,867,488 members
Home / Discussions / C#
   

C#

 
GeneralRe: C# classes Pin
#realJSOP11-Jan-17 7:47
mve#realJSOP11-Jan-17 7:47 
GeneralRe: C# classes Pin
OriginalGriff11-Jan-17 8:03
mveOriginalGriff11-Jan-17 8:03 
GeneralRe: C# classes Pin
#realJSOP12-Jan-17 2:06
mve#realJSOP12-Jan-17 2:06 
AnswerRe: C# classes Pin
Daniel Pfeffer10-Jan-17 23:36
professionalDaniel Pfeffer10-Jan-17 23:36 
AnswerRe: C# classes Pin
Pete O'Hanlon10-Jan-17 23:43
subeditorPete O'Hanlon10-Jan-17 23:43 
AnswerRe: C# classes Pin
Gerry Schmitz11-Jan-17 8:26
mveGerry Schmitz11-Jan-17 8:26 
QuestionHow to dynamically Add and Close tab items in Browser click on add and close buttons Pin
Aniruddha.A10-Jan-17 18:53
Aniruddha.A10-Jan-17 18:53 
AnswerRe: How to dynamically Add and Close tab items in Browser click on add and close buttons Pin
Afzaal Ahmad Zeeshan11-Jan-17 0:03
professionalAfzaal Ahmad Zeeshan11-Jan-17 0:03 
Aniruddha.A wrote:
1.Dynamically add some tab items in browser

HTML
<a href="/path.html" target="_blank">Click me</a>
This code will open the content in a new tab. As for JavaScript, you cannot open a new tab because that is user preference and he gets to do that, such as CTRL + Click. JavaScript gets to open a new tab only, unless a browser-specific feature allows such,
JavaScript
var win = window.open('www.google.com', '_blank');
win.focus();
Code from: http://stackoverflow.com/a/11384018/1762944, but browser can still control this.
Aniruddha.A wrote:
.Dynamically close all browser tab items ,still open remaining single tab item.

As mentioned earlier, you do not get to chose this, unless you control the browser-specific API such as Chrome API for tabs — chrome.tabs - Google Chrome and you would then have an extension in the browser that does all of this — and is still not possible through a web application. If you want to create an extension for this, you can refer that documentation I provided and learn how to manage the tabs from your extension. Extensions can have buttons that you can use.
The sh*t I complain about
It's like there ain't a cloud in the sky and it's raining out - Eminem
~! Firewall !~

QuestionUse of LevDan.Exif assembly for DNG files?? Pin
Grahame_20059-Jan-17 23:33
Grahame_20059-Jan-17 23:33 
AnswerRe: Use of LevDan.Exif assembly for DNG files?? Pin
Pete O'Hanlon10-Jan-17 2:30
subeditorPete O'Hanlon10-Jan-17 2:30 
GeneralRe: Use of LevDan.Exif assembly for DNG files?? Pin
Grahame_200510-Jan-17 3:43
Grahame_200510-Jan-17 3:43 
GeneralRe: Use of LevDan.Exif assembly for DNG files?? Pin
Pete O'Hanlon10-Jan-17 4:29
subeditorPete O'Hanlon10-Jan-17 4:29 
QuestionProgrammatically Open A Solution In Current IDE Pin
Kevin Marois9-Jan-17 10:31
professionalKevin Marois9-Jan-17 10:31 
AnswerRe: Programmatically Open A Solution In Current IDE Pin
Afzaal Ahmad Zeeshan11-Jan-17 0:09
professionalAfzaal Ahmad Zeeshan11-Jan-17 0:09 
QuestionNothing happens when CheckBox is checked Pin
Pavlex49-Jan-17 8:00
Pavlex49-Jan-17 8:00 
AnswerRe: Nothing happens when CheckBox is checked Pin
NotPolitcallyCorrect9-Jan-17 8:17
NotPolitcallyCorrect9-Jan-17 8:17 
AnswerRe: Nothing happens when CheckBox is checked Pin
Richard MacCutchan9-Jan-17 22:30
mveRichard MacCutchan9-Jan-17 22:30 
QuestionC# Enumerable Repeat Pin
Pavlex48-Jan-17 4:01
Pavlex48-Jan-17 4:01 
AnswerRe: C# Enumerable Repeat Pin
OriginalGriff8-Jan-17 4:49
mveOriginalGriff8-Jan-17 4:49 
AnswerRe: C# Enumerable Repeat Pin
Pete O'Hanlon8-Jan-17 23:01
subeditorPete O'Hanlon8-Jan-17 23:01 
GeneralRe: C# Enumerable Repeat Pin
harold aptroot9-Jan-17 8:20
harold aptroot9-Jan-17 8:20 
QuestionVisual Studio Debugger Questions Pin
zequion7-Jan-17 21:15
professionalzequion7-Jan-17 21:15 
AnswerRe: Visual Studio Debugger Questions Pin
Slacker0077-Jan-17 21:22
professionalSlacker0077-Jan-17 21:22 
GeneralRe: Visual Studio Debugger Questions Pin
zequion8-Jan-17 19:27
professionalzequion8-Jan-17 19:27 
GeneralRe: Visual Studio Debugger Questions Pin
Dave Kreskowiak9-Jan-17 2:52
mveDave Kreskowiak9-Jan-17 2:52 

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.