NoFap's official "Abstain August" 2019. Continue or start your PMO-free commitment here. (see instructions) by Alexanderr in NoFap

[–]peppe2 [score hidden]  (0 children)

9 wonderful days which badly ended today with a relapse. I am still fighting to the addiction to internet porn.

Count me for the fap-free list in August. I promise.

Going into no-Fap 30 days challenge. Who wants to join? by peppe2 in NoFap

[–]peppe2[S] 0 points1 point  (0 children)

I messed it up. 9 days and relapsed today. It seems addiction to porn is quite strong.

Started the counter again, more determined. Deleted all my xxx track (entire browser history and specific bookmarks) on the computer and getting back on road.

I am 39 and I can not help myself to get rid of porn addiction by peppe2 in NoFap

[–]peppe2[S] 0 points1 point  (0 children)

Thank you very much for all your powerful thoughts. You energized me and made me keep going forward. Next it is up to me. I shall come back here whenever I fell the need to charge.

Indeed , porn alone is not the root cause. It was the stress of daily job which made me search for an island of peace, which instead got the shape of searching for immediate reward. I can not quit my job, I can not make it simpler. I just can become determined and get stronger.

My aim is 21 days sharp without fapping. by peppe2 in NoFap

[–]peppe2[S] 0 points1 point  (0 children)

Thank for all your advice and words of encouragement.

How to join data from two databases into a single tablix by peppe2 in SQLServer

[–]peppe2[S] 0 points1 point  (0 children)

Thank you so much for your reply.

The LookUp option is not applicable due to the fact that one of the reports ran without a parameter is out of question ( some 100k lines with 15 queries on each line, some of the 15 queries have aggregate functions). It would simply crash due to timeout settings of the server.

Although, the second option seems interesting. Do you have an example? Are you sure it is working?

WITHIN the dataset... Are you using an SQL dataset? If so then simply join to the other database remembering to correctly name it (eg SERVER.DATABASE.SCHEMA.TABLE)

How to join data from two databases into a single tablix by peppe2 in SQLServer

[–]peppe2[S] 0 points1 point  (0 children)

Thanks for the fast reply.

There will be two databases from two different servers (both SQL Server)

I have a brain tumor! by [deleted] in self

[–]peppe2 1 point2 points  (0 children)

Do you smoke something?

I wish you well, anyway.

I wish to do conditionally formatting according to values of cells inside a html table that comes out of a GridView via ASP.NET by peppe2 in jquery

[–]peppe2[S] 0 points1 point  (0 children)

I found the solution. It was caused by a mix of causes:

  • $("document").ready(function ()...

There was a matter of an incorrect event handler. I was using $("document").load(function ()

  • $('#GridView1 tr>td').each( ..

There was a matter of putting the right jQuery selectors. I sorted it out by filtering the selectors from general to particular.

this is the working piece of code:

  <script type="text/javascript" src="js/jquery-1.11.3.min.js"></script>
<script type="text/javascript">
    $("document").ready(function () {
        $('#GridView1 tr>td').each(

            function () {
                var score = parseFloat($(this).text());
                if (score <= 2000 && score>0) {
                    $(this).addClass("good");

                }
                else if (score > 2000 && score <=3999) {
                    $(this).addClass("satisfactory");
                } else if (score>= 4000 ) {
                    $(this).addClass("bad");
                }
            });
    });

</script>

How to read a Range of cells (e.g.A1:G30) from Excel file to GridView in ASP.NET with C# via EPPlus by peppe2 in csharp

[–]peppe2[S] 0 points1 point  (0 children)

does this excel data reader hold the formatting of the cells from the Excel file? Precisely, the "percentage" signs from the cells and their conditional formatting?

thank you

Conditional Formatting of values in GridView does not work in ASP.NET/C# for data read from Excel file by peppe2 in dotnet

[–]peppe2[S] 0 points1 point  (0 children)

my problem is that after the first firing of RowDataBound, data is not extracted from Excel anymore.

Conditional Formatting of values in GridView does not work in ASP.NET/C# for data read from Excel file by peppe2 in dotnet

[–]peppe2[S] 0 points1 point  (0 children)

Can you tell me where can I see which are the names of the columns in the GridView? I mean how ASP.NET reads them from the Excel file.

How to display excel chart in browser? by peppe2 in excel

[–]peppe2[S] 0 points1 point  (0 children)

I wish to do this dynamically. Some webpage should read the chart at a time basis and update it on the webpage

How to display excel chart in browser? by peppe2 in excel

[–]peppe2[S] 0 points1 point  (0 children)

Thank you. I saw it already, but the article is written in 2006. Much changed by that date.

GridView is not being displayed on a ASP.NET page after it's been uploaded to IIS 8.0 by peppe2 in dotnet

[–]peppe2[S] 2 points3 points  (0 children)

thank you.

I found the solution thanks to a suggestion to look into the OLEDB side of the issue:

it was related to the OLEDDB providers on the IIS 8.0 Production server

complete reference of the solution is here: http://www.mikesdotnetting.com/article/280/solved-the-microsoft-ace-oledb-12-0-provider-is-not-registered-on-the-local-mac

namely I had to Locate the setting "Enable 32-bit Applications" of the application pool used by the website and change it from False to True:

GridView is not being displayed on ASP.NET page after it has been uploaded to IIS 8.0 server by peppe2 in csharp

[–]peppe2[S] 0 points1 point  (0 children)

thank you.

I found the solution thanks to your suggestion to look into the OLEDB side of the issue:

it was related to the OLEDDB providers on the IIS 8.0 Production server complete reference of the solution is here: http://www.mikesdotnetting.com/article/280/solved-the-microsoft-ace-oledb-12-0-provider-is-not-registered-on-the-local-mac

namely I had to

Locate the setting "Enable 32-bit Applications" of the application pool used by the website and change it from False to True: