The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
3answers
646 views

Share Config file for Web and Window App (Best Way)

I have created a Class Library (Core Processing Component) using C# in Visual Studio 2008 and added the reference in Website. Website accessing the class library successfully. Web.config having some ...
5
votes
2answers
4k views

How can I assign the 'Close on Escape-key press' behavior to all WPF windows within a project?

Is there any straightforward way of telling the whole WPF application to react to Escape key presses by attempting to close the currently focused widow? It is not a great bother to manually setup the ...
2
votes
4answers
2k views

How to run any exe with administrator privileges?

I am using makecert to create certificate i need to do it though c# program the command doesnot execute as it requires administrator privileges. Please suggest me how to run any exe using ...
1
vote
2answers
3k views

How to generate Calendar in c#.net windows application

I want to Generate Calendar in c#.net to enter daily attendance.I have used jquery calendar for similar purpose in web. Is there any ways to create calendar control and get click event to mark and ...
0
votes
1answer
264 views

how to use console/windows app without focus on it?

im going to create a KEylog application that enables me to write all data typed(keys pressed) on a text file/database how can i do this without focus on the windows app/console app? for a reason , ...
1
vote
5answers
491 views

Conversion failed when converting datetime from character string

I am trying to pass parameters from windows application to a stored procedure. there are two parameters '@dt' & '@dt2' which get value from datetimepickers. whenever i execute the stored procedure ...
0
votes
1answer
74 views

My application crashed when snapped with items in listviews

So, im currently working on a project using C#/XAML for a Windows 8 Store App and I've encountred a problem. When the user navigates to a Page a ListView with some Controls shows up. Then when the ...
0
votes
1answer
716 views

How to retrieve image from SQL Server 2008 R2 to Datagridview in C# [Windows Application]

Hi friends i have inserted image to Sql Server and i need to retrieve image from SQL Server 2008 R2 to Datagridview Column in C# [Windows Application].Is there any possible to show the image in Data ...
0
votes
1answer
199 views

Call a function/event or pass data to Website(C#) whenever value of variable changed in Web-service

I have one windows application which is listening to events of a device attached(on USB port) and passing event name to web service(In Real Time). And I have a website on which I want to perform ...
0
votes
5answers
918 views

windows form GUI gets freezed when calling the thread from the while loop. How to make Gui responsive?

class ... { onClick() { while(true) { //call the thread from here threadpool(request)//send request to thread using thread pool } } //the function for ...
0
votes
4answers
1k views

ExecuteNonQuery() Not Working

Referring post : C# - ExecuteNonQuery() isn't working with SQL Server CE I have the same problem with an attached Access Database to my Project and indeed i try to Insert records but all in vain, it ...