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
6 views
ASP.NET posting data to payment service with HttpHandler
I'm trying to post some data to a payment service and render the response back through and HttpHandler. The response is a form the user fill out to make their payment. It's a web forms app, so I can't ...
0
votes
0answers
4 views
Cannot find the X.509 certificate when running wcf service as LocalSystem
I have a problem using X509Store.Certificates.Find function when running my windows service as LocalSystem.
The StoreLocation is 'LocalMachine' and the StoreName is 'My'.
When running my service as ...
0
votes
0answers
6 views
TFS WorkItemChangedEvent fires twice
I have a TFS2012 plugin that uses the
public EventNotificationStatus ProcessEvent()
to get the WorkItemChangedEvent. It doesn't do much, it just adds the WorkItemChangedEvent into a Message ...
0
votes
0answers
9 views
How to export an SDF-file to an Excel file (xls or xlsx) through c#?
I have an question,
How do I export an SDF database to an excel file?
Thanks!
0
votes
0answers
47 views
c# query with space in Sqlt table
Is there someone who can help me?
I have to do a query in a database which was created by someone else. The problem I encounter is that the name of the table contains three spaces.
Example of the ...
0
votes
0answers
7 views
GridViewColumn Header Binding Fails When In A Style
I have a ListView where the View contains a GridView and a number of column definitions.
As Below:
<ListView Name="SampleListView" ItemsSource="{Binding SomeSource}" >
...
0
votes
1answer
9 views
fluent nhibernate copy a full entity
how can I best copy an entity instance in fluent nhibernate 3.3.1;
I read an object out of the database, I got an object, now I change some values of this object. This object with little changes want ...
1
vote
0answers
10 views
Extracting content from OneNote to Sql Server
i need to know if there is any way possible for me to extract content in a OneNote notebook/section to a sql server database.
basically what i need to do is.. read the content from OneNote and insert ...
0
votes
0answers
8 views
Show rdlc report in ReportViewer without tableadapter
How can I show my rdlc report in the ReportViewer without using tableadapters ? Is it possible ? Please refer me somewhere, or help me on your own. Thanks :)
0
votes
0answers
8 views
C# Facebook API - The user hasn't authorized the application to perform this action
I am having a headache in trying to figure out how to post updates to my Facebook page as I keep receiving the error: "(OAuthException - #200) (#200) The user hasn't authorized the application to ...
5
votes
0answers
13 views
Is there a managed API to manage IIS 8?
In IIS7, you used to be able to use the Microsoft.Web.Administration dll to manage IIS.
I have added this reference to my project, however running the following code results in a ...
0
votes
0answers
8 views
Web App Hangs on OracleConnection constructor
We're having a situation where the OracleConnection (Oracle.DataAccess.Client) constructor hangs. There's no exception, it just hangs for 5-10 minutes, and then starts working normally while the app ...
0
votes
1answer
41 views
best method to store and retrieve images
I facing a bit of trouble right now.. I have an image gallery for which I store images in a folder. Now if I want to access the images without any processing I must keep the folder there where I can ...
-3
votes
0answers
40 views
Comparing list of string with the list of boolean
I have list of booleans properties and another list of string . I want a generic method to return the values of each boolean property true/false if specific string item is present in the string list.
...
-6
votes
0answers
47 views
Application has stopped working
I have the following code:
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
if (agrs != null ...