The .NET framework is a software framework designed mainly for the Microsoft Windows operating system. It includes an implementation of the Base Class Library, Common Language Runtime (commonly referred to as CLI) and Dynamic Language Runtime. It supports many programming languages, including C#, ...

learn more… | top users | synonyms (3)

0
votes
0answers
12 views

how to verify that an XML file implements a specific schema

This is slightly different from just Schema validation. I'm asking how in C# you can check that not only is the document valid against a schema, but also validate that the schema actually applies to ...
-1
votes
0answers
9 views

Which of the following differentiate a UserControl from a Custom Server control?

I've studied a lot about Usercontrol and Custom Controls. and i got a lots of differences between both of them, but i'm quite confuse to resolve below question. Only option is true in this question. ...
2
votes
0answers
12 views

Dynamically Loaded Assembly - Settings & Communication

Ok so... I have a WPF application (let's call it Launcher.exe) which loads and executes another WPF application (let's call it Loaded.exe) dynamically using something like this: Byte[] assemblyData; ...
0
votes
0answers
4 views

Connecting from C# app to WS Management of an Azure IaaS server

I'm trying to connect to WS Management of a remote Windows IaaS server (Win2012 Server machine). Connection is made from outside of the workgroup and subdomain of the machine. winrm has been enabled ...
1
vote
2answers
18 views

Implementing Bind() (SelectMany in LINQ) without yield (in C++)

I'm trying to implement Ana, Cata and Bind (from this video) in C++. I've managed Ana and Cata, but Bind eludes me. Here's what I have for Ana and Cata: #define FEnumerable ...
1
vote
2answers
42 views

Why does this multithreaded multiconnection TCP server only accept one connection?

story behind all of this I'm trying to write an open source RPG inventory server, usable for more than 1 RPG at once, and will make a game for it later on. My first version doesn't support a lot of ...
0
votes
0answers
4 views

Printing an IHTMLDocument2 / IHTMLWindow3 to a file

I would like to print the contents of an mshtml.IHTMLDocument2 or its cast parent window, an mshtml.IHTMLWindow3 to a file. The IHTMLWindow3 interface has a print method exposed, but calling it ...
3
votes
1answer
22 views

Validating XML documents with XSD correctly

As a developer with a good deal of XML consuming and producing experience, I've never really interacted with schemas before. For the first time this is actually occurring for me. I've run across a ...
0
votes
1answer
18 views

How to create .xlsx file for Excel version 2010 in c#?

This is my code again. Using this code i have .xls file which can store up to 65k rows, but i need more. I know, that Excel file from version 2007 can store 1 mln rows. Do I need to add special ...
1
vote
2answers
34 views

Call C# dll from Java on Google App Engine

Does anyone know if it's possible to invoke C# methods/classes (from a dll) in a Google App Engine Java app (server side)? If it's possible, do you have any idea how it could be achieved? EDIT - Any ...
0
votes
0answers
7 views

Sonar runner on a project containing c# and javascript

I have been trying to get Sonar code analysis work on a c# project. Since it's a web project I'd also like to run analysis on JavaScript. However, as mentioned in the following link, you cannot run ...
1
vote
1answer
33 views

HttpContext.Current.Session[“accesstoken”].ToString() is null when value should be set

I'm setting my accesstoken retreived from facebook in Session["accesstoken"]. When I try to retreive it I get hit by a nullreferenceexception. Why? It did work before I started working on the ...
1
vote
1answer
20 views

Multiply copies of assemblies are loaded into the memory by ASP.NET server

I have web server witch hosts ASP.NET. I used SysInternal process explorer and find that the several version of each dll from server bin folder are loaded. Assemblies are loaded from \Temporary ...
0
votes
3answers
21 views

Not able to bind dependency property

I have a very simple WPF Application which has a slider and a button. I am trying to bind one of the properties in my class to the value of the slider and displaying the value in a messagebox whenever ...
0
votes
0answers
4 views

Can end-users change workflow using windows workflow foundation?

I'm trying to develop a system that runs various external tools, in a specific order. this system needs to be very dynamic, so that end-users could change this workflow in an easy manner. I recently ...
0
votes
1answer
28 views

How to pass an instance to another appdomain?

I need to pass an instance to (not from) an AppDomain. I've seen a lot of info about how to do the reverse (call create on a domain and use the object locally), but what i want is to pass an instance ...
0
votes
0answers
20 views

Parallelizing a simulation in vb

I'm making a simulator in VB to help me balance a System that I'm creating for my RPG. The program uses two 'Do While' in the simulation: one for the Iterations of the simulation overall (chosen by ...
0
votes
1answer
10 views

How to bind IsSelected ListboxItem property in a windows phone application?

In WPF I used to do this: <ListBox.ItemContainerStyle> <Style TargetType="ListBoxItem"> <Setter Property="IsSelected" Value="{Binding IsSelected}" /> </Style> ...
-2
votes
0answers
21 views

Web platforms security vulnerabilities [closed]

I work mostly in .net and have worked in php before. I'm thinking about expanding my horizons by learning java, since learning the php paradigm helped my coding in .net quite a bit. Anyway, are ...
0
votes
1answer
21 views

Finding and parsing the where clause in a method that has a LINQ expression for a parameter

I have the following method: public AgentContact GetAgentContacts(Expression<Func<AgentContact, bool>> predicate) { return _db.AgentContacts.Where(predicate).First(); } That I call ...
0
votes
0answers
10 views

Adding a .net dll into silverlight project

I use a third party library in my project (Windows Forms) and it works well. Now i want to use the same dll in silverlight, but it says Non Silverlight assemblies cannot be referenced to. So i have ...
1
vote
0answers
62 views

Count the quantity of available rooms between two dates

I have two data tables: tbroom_capacity: roomtype, quantity_room, note CREATE TABLE `tbroom_capacity` ( `id` int(10) NOT NULL DEFAULT '0', `roomtype` varchar(30) COLLATE utf8_bin DEFAULT ...
-1
votes
0answers
20 views

WebPage throws statuscode 200 when really is 404

I'm in this strange problem. This webpage will throw a "404" the first time I check it: http://www.mp3crank.com/releases/12549/page/1 ...But if I try to check it more than once then it will throw a ...
2
votes
4answers
67 views

DateTime Relative conversion issue [closed]

Whilst looking for the best way to do a "Relative time" conversion I came across this post On my first test with a date of March 3 2013 (today is May 25 2013) the realitve time came back as 2 months ...
0
votes
1answer
20 views

Doubts about Admin Privileges

I made a WPF application which reads/writes other processes' memory, makes a large use of registry keys, reads/writes files on disk and downloads/deploys files from a website. LOL no, it's not a ...
0
votes
0answers
15 views

How to calculate aspect ratio of the object in image?

I have an image of the painting. which was photographed at a certain angle. for example: With help of homogrophy matrix I make rectification of this painting: //I'm using EMGU Image<Bgr, ...
0
votes
1answer
22 views

maintaing font and font color state in C# .net winform

I have created a small demo in C# .Net Win-form, below is screenshot of my demo. Above screenshot have two buttons with font color and font named, when I clicked on Font Color then appear a color ...
2
votes
1answer
23 views

Debug.Fail and Debug.Assert

I have a question about the Debug.Fail method which puzzles me. It's from a MeassureUp test and goes like this: To improve the reliability of your code, you want to verify an important value and stop ...
-1
votes
0answers
30 views

.NET Entityframework Code First one to many delete

i am trying to build my first EntityFramework Code First Application. Its an WPF Application. Therefore i implemented a small Test Model. A Club can have many Competitors, and a competitor must have a ...
0
votes
4answers
47 views

Find best matched word in dictionary

I'm creating a program that reads a scanned hand written document and coverts it to text. The recognized words must come from a dictionary of about 300 words that I create. As an example, if the hand ...
0
votes
3answers
25 views

Numeric Specifier for prefixing single digit with 0

I need to numeric format specifier, so as to prefix single digit with 0. I need: 1=01 2=02 : : : 9=09 The two and three digits will remain as it is no changes 10=10 11=11 : :
0
votes
0answers
6 views

How to inject an enum type into a .NET assembly using Reflector and Reflexil

I have successfully inject an empty enum type into the assembly as follows: public enum InjectedEnum { } But I failed to add items to this enum. How can I add items to it? Thanks!
0
votes
1answer
39 views

Why isn't my code working?

Private Sub CommandButton1_Click() Dim rTable As Range Dim lRow As Long Set rTable = Sheets("Revenue ...
1
vote
0answers
37 views

.NET BigInteger fractional power

Is there absolutely no way to raise a BigInteger to a double value? Any library that does this? Any alternative to get the same result? Any ideas? BigInteger result = BigInteger.Pow( someBigInt, ...
0
votes
1answer
12 views

Clicking on treeview node disappears the treeview in asp.net. Why?

I am binding the treeview control in a usercontrol. On Clicking the node, the page dosent show the treeview and Tree_Index_SelectedNodeChanged does not fire. And there is no exception catched in the ...
0
votes
0answers
84 views

Array Sum Challenge [closed]

Array Sum Challenge In this challenge, given an array of integers, the goal is to efficiently find the start and end indices of the subarray that has the greatest value when all of its elements are ...
0
votes
1answer
14 views

Managing dll building

I have the core project with multiple dll's and number of projects, that use these dlls. Each time I rebuild one of core dlls, i should copy this dll to all project's folders that use it, and then ...
0
votes
0answers
21 views

Calling an event from another aspx

I have the next doubt, I have an aspx page where I want to put a button and then I have another aspx page with another button which have this event when you click on it. I want that when you put on ...
0
votes
0answers
40 views

Returing a json string using a webservice in c#.net

I developed an androidapp communicating with a .NET web service using soap messages. But I don't know how to write a web service which returns a json string that will be used to return some values to ...
0
votes
1answer
19 views

Design Require Creating Displaying User Information

I am trying to display a user information with property Id, FirstName, LastName and Email. I would like to know whats the best way, where should i define this property in the Interface or in the ...
2
votes
3answers
41 views

How to get a dynamic control value placed in placeholder

My requirement is like I need to get the dynamically created radio button value or text placed in the placeholder control and how to arrange the controls vertically, below I have attached the snapshot ...
0
votes
4answers
53 views

How to change TextBox's Background color?

I got C# code that is like: if(smth == "Open") { TextBox.Background = ??? } How to change TextBox's background color?
1
vote
2answers
46 views

File.WriteAllBytes does not block

I have a simple piece of code like so: File.WriteAllBytes(Path.Combine(temp, node.Name), stuffFile.Read(0, node.FileHeader.FileSize)); One would think that WriteAllBytes would be a blocking call as ...
4
votes
1answer
25 views

ServiceStack + Swagger ability to group resources differently

Let me start by saying ServiceStack has surpassed all my expectations as a framework. It is amazing what has been accomplished. I am currently using the Swagger UI plugin with ServiceStack and was ...
0
votes
1answer
15 views

Returning multiple resultsets with dataentity framework 5

I am using ef5 and am trying to return multiple result sets with the method GetNextResult<>() however it doesn't seem to be working. My sql sproc is: select * from Questions select * from Skills ...
0
votes
0answers
16 views

.Net application not getting Pen clicks on tablet

I have C#/.NET 3.5 application that runs on Win7 Tablet. Tablet is dual core, with attached Pen. There are issues with getting click events from Pen in app. I attached additional USB mouse. 1) When I ...
-1
votes
0answers
31 views

How to detect Error 404 on this webpage?

This page will launch a 404 error but I can't recognize it in my code. http://www.mp3crank.com/releases/1920/page/1 This is the code: Dim request As HttpWebRequest = ...
1
vote
0answers
21 views

Form: emptytext - display text in empty row at the bottom of a dataGrid

I use CanUserAddRows property in a Windows Forms datagrid to let the user add rows to a grid that is bound to a database table. I would like to show a text on the first column of that empty row to ...
0
votes
1answer
32 views

HttpWebRequest.GetResponse() keeps getting timed out

i wrote a simple C# function to retrieve trade history from MtGox with following API call: https://data.mtgox.com/api/1/BTCUSD/trades?since=<trade_id> documented here: ...
0
votes
4answers
63 views

what is the right syntax for OrderByDescending with condition?

I would like to know what is the correct syntax for OrderByDescending with condition I have the following code, _mobileRepository.GetAllEpisodes().OrderByDescending(x => x.AirDate).ToList(); ...

1 2 3 4 5 3099