Tagged Questions
C# is a multi-paradigm programming language encompassing strong typing, imperative, declarative, functional, generic, object-oriented (class-based), and component-oriented programming disciplines.
0
votes
0answers
3 views
How do I plot the spectrum of a wav file using FFT?
NOTE: This is not a duplicate, I have specific requirements other than related questions.
To start with, I want to plot the spectrum of an audio file (.wav) just like what audacity does (similar: How ...
0
votes
0answers
5 views
Read class methods properties in mvc4 T4 template
i am working on T4 Templates in web api project in ASP.Net MVC3. i need to get classes and methods from business layer and create cs files using .tt files. also i aneed to get methods only have ...
0
votes
0answers
4 views
Windows Store App binding a control to two properties
I saw several questions about binding a control to two properties in wpf .
Is it possible to do that in windows store apps?
I habe a combobox and want to fill it with a value that will be calculated ...
0
votes
0answers
3 views
How to process PropertyGrid changes with Invoke on InvokeRequired?
I'm working with COM object provided by Activator.
It also provide events when properties is changed there but my PropertyGrid can't update them in-time because it comes from another thread and I'm ...
0
votes
1answer
27 views
Random Bug in a Regexp
I`m using the code below to search for the data in a web page and return the data to da datagridview.
When I use it with a web page that has many rows like 100, some time it will return a buggy line
...
0
votes
0answers
6 views
Multiple Content Presenters in a WPF User control
I am creating a WPF user control, its like a window where most of the layout has been setup. But there are few sections where I want users to place their controls. To achieve this I believe I need to ...
-1
votes
0answers
18 views
i have developed one browser with gecko firefox control but now i want to open new tab in that browser
i have developed one browser with gecko firefox control but now i want to open new tab in that browser because the site i have used redirecting page to new tab. So how can i force that link to open a ...
0
votes
0answers
3 views
Invalid Key Code in SAP crystal report
I am using SAP crystal report 13.0.1 with VS2010 in WPF. Initially working fine for some days, that when I opened report I got “ invalid key code” and showing blank report .
I have do Google but ...
0
votes
4answers
30 views
how to use class object being created in stack
I am new to c# . So cant figure out the below mentioned concept .
using System;
namespace vivek
{
class viku
{
public void func1()
{
Console.WriteLine("Base");
...
0
votes
0answers
7 views
Label content change for wpf localization
I've used IValueConverter for avoid null values of label content. XAML code as below.
<nc:NConverter x:Key="nConverter"/>
</Window.Resources>
<ComboBox ...
0
votes
1answer
9 views
Itextsharp rendering html as html source
I am having following code in itextsharp
productCell.AddElement(new Phrase(Server.HtmlDecode((this.Product.Description != null) ? this.Product.Description : ""), "Arial"));
But the page is rendered ...
0
votes
0answers
4 views
Nunit shadow copy dbghelp.dll issue
To ensure that my C# and MC++ application uses a defined version of the dbghelp.dll (from the Debugging Tools) I put it in the appliation directory where all assemblies reside. This works fine on ...
0
votes
0answers
16 views
How to upload and download documents
I designed a system using C# and LINQ TO SQL, which processing a people CVs, so I need to knew how to upload and download documents which is store in column its type binary in Win forms?
0
votes
2answers
37 views
DateTime.TryParse for any culture
There are lots of thread for this , but I am still blocked at the following:
What I have:
I am trying to build windows phone App which will pick Date of Birth of an individual
Code Behind:
string ...
0
votes
0answers
8 views
Bypass the login control authentication, but getting the permissions same like it
In my project I have used Login control to authenticate the users and have set the permissions in web.config like this:
<authentication mode="Forms">
<forms ...