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
Connecting Through Proxy, using inbuilt WebBrowser
I am trying to use proxy in my c# .net program. I am developing it using Microsoft Visual Studio 2010, and I have used inbuilt WebBrowser function to make my WebBrowser. I came across a code for using ...
0
votes
0answers
9 views
enum values in drop down list in mvc4
How to create a dropdown list using enum value in mvc4
I have a class Language.cs
public enum Language {
English = 0
}
And my property is
public Language Language { get; set; }
How will i ...
0
votes
0answers
7 views
Make the exe run on lower version of framework
i creating an exe from my c# application and adding some dlls like
SFXmaker.cp = new System.CodeDom.Compiler.CompilerParameters();
cp.ReferencedAssemblies.Add("System.Drawing.dll");
...
0
votes
1answer
17 views
Locking object in c#
Hi all I am having a code where user can select a record from gridview and make payment, now I guess of a situation if multiple users select the same record at a time and proceed to the payment then ...
0
votes
1answer
10 views
How to render Chart via Ajax request?
Controller:
public FileResult CreateChart()
{
Chart chart = new Chart
{
ImageType = ChartImageType.Jpeg,
ImageStorageMode = ImageStorageMode.UseImageLocation,
...
1
vote
0answers
7 views
Property Grid Custom Editor
I have a custom form Names "Form1" that I want to open through propertygrid control.
Code here
[CategoryAttribute("Extended Properties"),
...
0
votes
2answers
27 views
c# how to write to a ini file
I would like to know how i should write text to a ini file. The reading of the file is already done. Now i just have to know how to write to the file.
It should look like this when its in the INI ...
0
votes
0answers
6 views
Creation of folder on FTP fails when running on remote server
I have written code for creating folder on FTP server when a button clicks..When running my project locally, It works properly and creates a folder on FTP.. But when it running on remote server the ...
0
votes
2answers
13 views
How To Pass Button Properties from XAML to .CS File
I am new to c#. i want to pass button properties from xaml file to .cs file. How can i do it?
<Button Content="myButton" x:Name="{Binding assignment_title}" click="btn_Click()"/>
Here I want ...
1
vote
1answer
28 views
error The process cannot access the file because it is being used by another process
In this i am trying to convert word to pdf file. But i am getting an error The process cannot access the file because it is being used by another process.
Microsoft.Office.Interop.Word.Application ...
0
votes
0answers
42 views
Identity conversion constraint in C# generics? [closed]
I am reading C# 4 specification and C# in depth.I can not understand type conversion contraint clearly.
Can some one explain with example what is type conversion contraint?
0
votes
0answers
9 views
DependencyInjection on WinRT Pages?
In a WinRT Page how can inject dependencies?
I am thinking of doing something like this:
/// <summary>
/// A page that displays an overview of a single group, including a preview of the items
...
0
votes
0answers
7 views
Developing custom add on for Internet Explorer
I am looking for developing an add-on in Internet Explorer and below is the requirement. I am looking for developing this using Visual Studio & C#. Hope i can develop using these platform with ...
0
votes
1answer
30 views
What is the reason of try-catch-rethrow without additional processing in catch block?
Sometimes i meet the following construction exploring ServiceStack's code base:
try
{
...
}
catch (Exception)
{
throw;
}
In my oppinion this construction does nothing. What is the possible ...
3
votes
7answers
63 views
How to test a null value variable if it's a string?
Is it possible to test if a variable is defined as a string if the value inside it is null?
If I write:
string b = null;
bool c = b is string;
Then c will be false because is looks at the content, ...
0
votes
0answers
12 views
dynamically set style to jquery tooltip
I am using jquery tooltip for label within a grid,for setting color to the tooltip is used this style
<style type="text/css">
.ui-tooltip
{
background: ...
0
votes
0answers
37 views
How can I detect that users lock Windows and then log them off
We've got a plan to write a script or develop c# code to detect all users that lock their system instead of logging off so we can force them to log off by programming.
I couldn't find anything ...
1
vote
1answer
27 views
Unable to connect to the remote server C#
SmtpClient smtpClient = new SmtpClient("smtp.gmail.com", 587);
smtpClient.Credentials = new System.Net.NetworkCredential("gmailId", "Password");
smtpClient.DeliveryMethod = ...
0
votes
0answers
39 views
Route a button to a static IP address in C#
I'm still a baby in the world of .NET and I've been given a task that I just can't seem to resolve.
I need an application to connect to multiple databases. The databases have static IP addresses.
...
1
vote
2answers
39 views
ASP.NET MVC different routing for different actions
I am building a Site using ASP.NET MVC. In RouteConfig, I modified the method like this:
public static void RegisterRoutes(RouteCollection routes)
{
...
1
vote
0answers
20 views
Image slide-show for updated blog post
I have a blog table ,
BlogTable
======
ID
Image ( image to show in home page's slide-show )
Title ( blog title to show in slide-show )
Body
PostedDate
PostedBy
Flag ( flag to show or hide the blog ...
1
vote
0answers
13 views
WPF Custom Control Default Databinding
I'm just now entering the realm of WPF, and I would like to create a custom control. I'm not too concerned about the styling of it, but rather the functionality.
I'm trying to create a custom Tree ...
1
vote
1answer
19 views
StackOverflowException when invoking the Invoke method of the MakeGenericMethod class
I'm currently developing OData API based on the WCF Data Service Toolkit Library.
My current problem is happened when a Lambda expression has many operators.
From my experiments ...
2
votes
0answers
13 views
What could i implement to learn .net GC in depth
I know some details of how it works by Richter's book, but i want to "feel" it in practice. I see some variants:
Write my own GC implementation by .NET standard (just kidding, it is too hardcore to ...
0
votes
1answer
6 views
Cant search users in LDAP with name containing *
My problem is that i cant search for users when their name contains *. The search string i used is just *.
I have read in:
http://msdn.microsoft.com/en-us/library/aa746475%28VS.85%29.aspx
that if ...
1
vote
0answers
20 views
Parser Error Message: Could not load type error comming
I have uploded asp.net website.
Getting error:
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error ...
1
vote
1answer
11 views
No WS-Security header found
I am trying to consume a service which demo url is as follow
[https://demo.unicommerce.com/services/soap/uniware13.wsdl?facility=01][1]
when i add this service and try to use this in my code as ...
0
votes
2answers
21 views
XML Document SelectSingleNode returns null
I am trying to read XML from stream reader and am also getting response XML. But when i try to read its nodes it is always returning null.
var request = (HttpWebRequest) WebRequest.Create(address);
...
1
vote
1answer
28 views
Regex to substring then compare
I have the below code in my mvc application:
[Required(ErrorMessageResourceName = "CustomerEnrollment_CardNumberRequiredMessage", ErrorMessageResourceType = typeof (Messages))]
...
1
vote
0answers
13 views
Monitoring File lock release with a timeout in multithreading context
I am using FileSystemWatcher to notify me whenever a file arrives in a folder of my system.
Sometimes, they arrive with a lock (by some other program)
I want to perform something like below:
If ...
2
votes
1answer
28 views
SQL data transfer from local to live server
I am working on a university project. What I need is to write a C# program that periodically updates the server based on changes in local. Basically the program is for a large geographical data set ...
0
votes
0answers
17 views
Adding an updatepanel trigger using a control in a user control
Before someone marks this as a duplicate, I have looked at every other question I could find on this and only one indirectly addresses what I'm trying to do and it doesn't work for some reason.
I ...
1
vote
0answers
13 views
FCL Stack class thread safety and it's version field
I discovered an odd implementation of Stack class in FCL.
As I see, Stack class provides SyncRoot property intended to allow external users to block the entire collection and work with it in a thread ...
1
vote
0answers
42 views
How can I create a separate data system for my program?
Is it possible to create a separate file system for your program to boot from? Let me expand on my issue:
I wish to set my program up to check for updates at runtime. If any are found, it will ...
1
vote
0answers
26 views
How to add cookie in my web browser control?
I want to add cookie in my web browser control.
webBrowser1.Navigate(new Uri(serverUrl));
Basically i need to put cookie value at the time of the navigation.How can i add cookie to this type ...
0
votes
0answers
18 views
Getting InvalidOperationException Exception from mongodb c# driver for queries that return large dataset
I have a restful service in c#.net that talks to mongodb. When I return about 20,000 records to client the service works fine. But increasing the returned data set causes below exception on server ...
0
votes
1answer
17 views
Queued Method invocation in its own thread with callbacks
After asking a similar question (thanks for the answers) I would like to add another Feature to the queue but unfortunately I have no idea how to implement this: I would like to add an optional ...
2
votes
3answers
67 views
What is the purpose of &= and |= operator in C#
I'm not sure what these operators are accomplishing:
byteInfo[x, y, z] |= (byte)info;
as well as:
byteInfo[x, y, z] &= (byte)255 - (byte)info;
From msdn:
class AndAssignment
{
static ...
0
votes
3answers
34 views
Deploying MVC Area as a self standing web site
I have an MVC Application with multiple Areas. They share a lot of common code and components, so I do not want to break them up into separate Projects. But I would like to deploy them to separate ...
-2
votes
0answers
24 views
Import reference from Microsoft Hawaii SDK
I downloaded Microsoft Hawaii SDK and I don't know how to get a reference to this project from my application.
0
votes
0answers
25 views
Communicating unmanged code (C++ with Qt or C++) with managed code (C#)
I want to emit a signal from the Qt based application it should call a delegate of C# based application similarly I call a delegate it should call the appropriate slot in Qt.
I have gone through the ...
0
votes
1answer
16 views
Getting User ID after OAuth Login
I'm trying to integrate OAuth registration/login into my ASP.NET MVC 4 site. I'm having trouble getting the user's ID and/or username after login though. For login, I have:
AuthenticationResult ...
0
votes
0answers
7 views
How to put protobuf in path?
I am transitioning to c# and taking over a project and I need to put Google's protobuf utilities into my path, but I'm not sure if this means the Windows path or a specific path reference inside ...
0
votes
0answers
23 views
Object in ViewModel Null on Post MVC3
I've looked pretty hard for an answer on this and I can't tell exactly what I'm doing wrong.
I have a partial view with its own Model
@model ViewModels.NotificationPartialViewModel
@if ...
-1
votes
1answer
59 views
Splitting array within array
I have an array for my KPI system as follow
[3374,0,[,,,,,[[18650505,[297688,1,1,500.00,0.00],[0.7,-0.9]],[18650506,[297688,3,1,500.00,7.50],[-0.86,0.6]]],,,0],[[],[],,0],[[],[],[]]]
Currently I am ...
0
votes
1answer
17 views
How to integrate Paypal into ASP.Net c# server side code
How to integrate PAYPAL Sandbox Account in my ASP.net webpages?
Please give me complete example of source code or URL.
I don't have Any experience to develop any payment system . So please help me.
...
1
vote
2answers
42 views
Can't add button to aspx page
I tried the following code to the Webform.aspx page:
<asp:Button ID="btnShowAssignLecturer" runat="server"
onclick="btnShowAssignLecturer_Click" Text="Assign Lecturer To Room" />
It ...
0
votes
0answers
8 views
Binding Ninject and Cron Task Manager. Without using the controller
I want to have it periodically executes the code and the data loaded into the database. On the Internet I found the following class http://crontaskmanager.codeplex.com/documentation. Please tell me ...
0
votes
1answer
21 views
Richtextbox Object reference not set to an instance of an object [closed]
Why am I getting this error? My program is using .NET4 Framework. And I got this error below: Object reference not set to an instance of an object.
if ...
1
vote
2answers
77 views
Generating a 4–8 digit random number
Random random = new Random();
int password = random.Next(10000);
This 2-digit and 3-digit numbers also. How do I generate a 4–8 digit random number in C#?






