0
votes
5answers
71 views

why would an interface have properties in them

why would an interface have a property in it? I understand that an interface is a contract but why would you ever need a property within an interface? many thanks
0
votes
1answer
13 views

GridView and XMLDataSource

I want to display xml content at aspx page. There is my aspx code: <asp:GridView ID="gvXML" runat="server" AutoGenerateColumns="True" DataSourceID="xmlData"> ...
3
votes
0answers
25 views

XNA weird terrain tearing

Let me post the images first... Solid shot where tearing occurs And wireframe shot of that place I am mostly using mostly using Riemers tutorial while the render code is.. Main render ...
1
vote
1answer
16 views

send DateTime through a Ajax.BeginForm #c

I'm trying to use Ajax.BeginForm. I want to send a DateTime through a html form. The problem is in the controller the Datetime is not initialised. I get the default DateTime. Any idea ? Thanks for ...
-1
votes
2answers
38 views

Putting a thread to sleep for decimal value

This question is about System.Threading.Thread.Sleep(int). I know there is no method for a decimal value, but I really need to work with decimals. Here is the situation I have a device which takes ...
-1
votes
3answers
38 views

Why is this failing to compile?

I have an requirement to execute an expression which contains math and conditional statements and a switch statement. What I've tried is this: 20 + 10 + (if (20 > 10){ return 0.2; } else { return ...
4
votes
1answer
69 views

Lambdas and type inference

I'm having a bit of trouble understanding the reason behind why the following code is giving me an error: var funs = Enumerable.Range(0, 10).Select(x => (int y) => x + y); foreach (var fun in ...
3
votes
4answers
67 views

String caching. Memory optimization and re-use

I am currently working on a very large legacy application which handles a large amount of string data gathered from various sources (IE, names, identifiers, common codes relating to the business etc). ...
1
vote
1answer
29 views

How to get 1D column array and 1D row array from 2D array? (C# .NET)

i have double[,] Array;. Is it possible to get something like double[] ColumnArray0 = Array[0,].toArray() and double[] RowArray1 = Array[,1].toArray() without making a copy of every elemet(using for)? ...
1
vote
2answers
39 views

Prepare enum list and find an enum value from List<enum>

I decided to write the below code for Access Control List permission check. My database will return a record like EmployeeDetFeature,Create,Edit I would like to Parse Create and add it to a Feature ...
1
vote
2answers
38 views

All references in list point to 'this'

Running c# .NET 3.5 code in Unity is producing a really weird issue class X { static List<X> _l = new List<X>(); public X() { _l.Add(this); ...
0
votes
0answers
25 views

I need some explain on Rx behavior

When I use Reactive Extensions (Rx) with linq filter what happen under the hood? Is this, var move = Observable.FromEventPattern<MouseEventArgs>(frm, "MouseMove"); ...
0
votes
0answers
26 views

Custom ToolStrip renderer - DropDown items not appearing on hover

I have a ContextMenuStrip with a custom renderer class that paints the items according to the user's color choices. However, when the custom class is active, the items in the ContextMenuStrip must be ...
2
votes
3answers
68 views

NULL value checking

I am trying to run the following code but the error occurin says you have error near the @tid. The parameter is supposed to be taking NULL value. public static DataTable ...
0
votes
1answer
31 views

.NET web service with many requests

i have a .net web-service in some server. this web-service gets lots of requests per day. there is an android project that allot of people using it and exchange data with this ws. something like 20 ...
0
votes
0answers
24 views

Generated C# classes with XML schema versioning

I'm working on an C#/.NET application where we're handling XML documents corresponding to an external XSD schema. We've used XSD.exe to generate C# proxy classes from the XSD for easy serialization ...
0
votes
2answers
50 views

Combobox items from a list c#

I'm new to C# a little help please. I'm trying to set items of a combobox from another class's method. public void Province(String province) { //NAConst obj = new NAConst(); province = ...
0
votes
0answers
8 views

Get user Id in instagram

I try to using instagram api within vs using [c#,windows form] and I try with calling the url to get the access token and no problem with this issue but I need to know how to get the user id number ...
0
votes
1answer
19 views

Loading managed assemblies in a unit test project seems to slow Visual Studio 2010 down

I am loading multiple managed assemblies in a unit test. The assemblies are from within the solution and not third party, not that it matters. I notice that Visual Studio tends to increase memory ...
0
votes
3answers
33 views

Two xml declaration in single xml file error

My requirement is to create xml file and add xml elements to the existing xml file. First I tried creating new xml file by following code. using (XmlWriter xmlWriter = XmlWriter.Create(fStream, ...
0
votes
0answers
21 views

I can't implements DoDragDrop Operation on second dialog

Well I struggled this problem a lot. I tried to do a simple drag and drop operation, so I did it in the main form(the one that operate from the Main thread) and it was as easy as it sounds. the code ...
3
votes
1answer
64 views

Copy executing files from a UNC path

I am writing an application that needs to copy files from a network directory, where the files are currently executing. I have tried opening the file with using (var source = new ...
0
votes
0answers
17 views

Oledb loading blank instead of Excel data in DataGrid

Why am I unable to see any data in my data grid when there is heaps of data in my Excel File. It's just showing Blank Page instead of data. My code is using System; using System.Data; using ...
5
votes
3answers
81 views

Convert Unicode string made up of culture-specific digits to integer value

I am developing a program in the Marathi language. In it, I want to add/validate numbers entered in Marathi Unicode by getting their actual integer value. For example, in Marathi: ४५ = 45 ९९ = 99 ...
-5
votes
0answers
43 views

i have to create Task Manager using C# can any one help me how to create task manage [closed]

i have to create Task Manager using C# can any one help me how to create task manage.
0
votes
1answer
21 views

Why list show strange behaviour?

Work on Vs2010 EF,C#. Have two list(oLisTranItem,oListTaxItem) ,need to copy one list properties values in another list ,then I need to work on new list.Problem is after copy content element one ...
1
vote
2answers
29 views

Prevent Range Validator to show error message with regular expression validator in asp.net

I have one textbox with id txtNumOfBooks which I am validating against following 3 validators: <asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ...
0
votes
0answers
36 views

C# downloading from Web

I am trying to develop a TurboIt downloader with C#. The program does the following correctly. Given the file URL it sends initial web request. Based on the response it sends regular download ...
0
votes
2answers
51 views

How would it be possible to have a Windows Phone 8 application interact directly with a Windows PC ? (Using WP8 as an input device for Windows 8)

I'm trying to create a Windows Phone 8 application that can send mouse movements from the phone to a Windows 8/7 PC. Can't find a good place to start with this being that there's no documentation of ...
3
votes
3answers
104 views

high frequency timing .NET

I'm looking to create a high frequency callback thread. Essentially I need a function to execute at a regular high frequency (up to 100Hz) interval. I realize that windows has a normal thread ...
0
votes
1answer
37 views

Simple way to check how many rows I have in my database

I'm connected to a database through the SqlConnection class. Is there any simple why to check how many rows are in the database or do I have to create a SqlDataReader and increment till the last row ...
-1
votes
1answer
20 views

Sorting a generated table in my view (visual studio .net)

<h2>Documenten</h2> <table border="1""> <tr> <th"> title </th> <th> description </th> <th> ...
1
vote
1answer
43 views

WPF GUI starving network messages

I am developing a Window7, C#/WPF based GUI using Blend/XAML and I want to show H.264 video which I get from the RTP stream of a video call. I am using a C based open source library for making the ...
-1
votes
2answers
77 views

Get text from dynamically created TextBox

I have a button when clicked creates textboxes dynamically: for (int i = 0; i < length; i++) { Name.Add(new TextBox()); System.Drawing.Point locate = new ...
0
votes
1answer
39 views

Sending data from childwindow to parentwindow

I did a small library HomeDAL where I have a class with functions like connect,disconnect,add,delete,showbooks etc. to manage my database. Now I'm doing a client in WPF. In MainWindow, I have a ...
1
vote
1answer
16 views

How to remove the speech event handler?

Please have a look at the following code SpeechRecognizer sr2 = new SpeechRecognizer(); ... sr2.SpeechRecognized += new EventHandler<SpeechRecognizedEventArgs>(sr2_SpeechRecognized); ... ...
1
vote
2answers
94 views

What is the return type for an Event in .NET?

I would like know what's the default return type for an Event: somebody says Event has not return type; others says Event has return type. Thanks.
0
votes
0answers
42 views

Intermittent 'Could not find a part of the path' error upon file stream initialization

I've just moved some software to a new Windows 2012 server. The problem I'm troubleshooting relates to a Windows service that does background processing when it finds jobs to run. In the first week ...
1
vote
3answers
40 views

Creating Webservice which has child parent concept

I want to create web service as below. i get result as list for 1 people, but i just want common things as it's parent and have many child i.e. Detail in it's child level. <person> ...
8
votes
1answer
60 views

Detect whether the mouse is touching the ground or if it is in the air

My sister and me are writing a program to help people, that suffer from tremor (trembling in hands). The program recognizes if the mouse cursor is getting slower and then makes the cursor easier ...
0
votes
0answers
31 views

Alpha shape (concave hull) algorithm in C#

I'm in need of concave algorithm to outline shape from set of points, is there implementation in AForge.NET that I could use, I have read somewhere that AForge.NET has implementation of that algorithm ...
1
vote
1answer
51 views

How do submit a form without clicking submit button BUT with code in (C# web browser control)

Hi is there a way to submit a form WITHOUT clicking the submit button? Keep in mind this is inside the webBrowser1 control in C# . So if i click a button in my C# application it should ...
1
vote
2answers
32 views

Move rows from table to table

I try to move rows that expired from one table to another with this: MySqlConnection connect = new MySqlConnection(connectionStringMySql); MySqlCommand cmd = new MySqlCommand(); cmd.Connection = ...
1
vote
1answer
37 views

Generating big files in .NET

I would like to ask on two things about .NET executables: .NET executable is in PE format. Does it mean that address generated by CIL compiler is from the beginning of the file ...
0
votes
2answers
32 views

Not able to set dropdownlist at page load

I am getting first time this kind of problem I am setting value of dropdownlist at page load from dataset But this is auto setting 0 index ..... My code : ddlEbitda.SelectedValue = ...
0
votes
0answers
20 views

Can I have custom required headers on my web api?

I was wondering if can I have custom headers requireds on my web api application. I don't know too much about headers, http protocols and etc. After reading a little, I thought on required the code ...
1
vote
1answer
48 views

BinaryReader overwhelming me by padding byte array

So I have this really simple code that reads a file and spits its data out in a hex viewer fashion. Here it is: using System; using System.Collections.Generic; using System.Linq; using System.Text; ...
0
votes
2answers
58 views

Target .Net 4.0 when using Windows 8 / VS2012

I am having some issues building a merged DLL to target .net4.0 on a windows 8 machine. I can successfully build individual .net4.0 dlls in VS2012 so I do not have this problem: Targeting .NET 4.0 in ...
0
votes
4answers
61 views

IEnumerable<> instead of List<> goes well when reading objects

Consider my following class Album: public class Album { public int? Id { get; set; } public string Name { get; set; } public IEnumerable<Photo> Photos { get; set; } public ...
0
votes
2answers
29 views

How does .net internally call wsdl webservice method?

I'd like to understand the fundamental mechanism : as far as I know .net parse the wsdl (using ServiceDescription class) and generate proxy classes that will make the call. But how are these proxy ...

1 2 3 4 5 1687