I
I
insomnia772015-03-13 13:39:05
visual studio
insomnia77, 2015-03-13 13:39:05

Is it possible to put breakpoints on a certain function in Visual Studio 2013 express? How?

I have a large C# project and I see the "screenshot" function many times. I want to put breakpoints on all screenshots.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vladimir Martyanov, 2015-03-13
@vilgeforce

Put a break on the first line of the screenshot() function.

A
Alexey Sklyarov, 2018-01-09
@unlik

$('button').on('click',function(){
$('#formError').addClass('in');
});

We add the .in class, because you already have fade there, but if you have a bootstrap modal, then you need to hang it on the button:
<button data-toggle="modal" data-target="#formError">открыть</button>

You can also just use JS:
$('button').on('click',function(){
$('#formError').modal('show');
});

And in general, read the bootstrap documentation, everything is clearly described there.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question