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
7 views

Impersonation of a domain account outside of a domain

I have a click once application that uses Windows Auth to authenticate against WCF services. However I am trying to allow users to run this application at home via a VPN connection. The main issue ...
0
votes
0answers
10 views

Using WebClient to login and download files

I've found different examples of doing this, but haven't been able to get any combination of them to work. Basically, I have an intranet system that can generate documents from a web link, and I know ...
0
votes
0answers
16 views

How can i find the category of website opened in web browser control

I am using .Net windows programming with c#. I got web browser control. How can i find the category of website opened in my web browser control. Category could be of any like "Advertisements", ...
0
votes
0answers
8 views

sn.exe .net in windows xp embedded

I'm trying to use .NET's sn.exe on Windows XP embedded with the command -Vu, but keep getting the following error: Failed to open registry key - The system cannot find the file specified. Looking ...
0
votes
0answers
14 views

Trying to launch a file in an anonymous delegate tied to a toast event fails (C# Winrt)

I have a function that downloads an image, and when the download completes it triggers a toast notification. When the user clicks the toast notification, I want to open the file using the default ...
0
votes
0answers
18 views

Visual Studio 2012 Post Build Events - Error Code 255

Here is my attempt to copy my application executable to another folder changing it's name: IF $(ConfigurationName) == Release ( SET DESTINATION=$(ProjectDir)Output\Distribution IF NOT EXIST ...
1
vote
1answer
50 views

How to use a thread to completion, then reuse the thread?

I'm building a form and I'm trying to use threading in order to get some results from a WMI query to display in a textbox without having the form freeze up on the user. However, when I use the code ...
0
votes
0answers
14 views

How to create passable from C# into C++ delegate with SWIG?

So I have next C++ code: #ifdef WIN32 # undef CALLBACK # define CALLBACK __stdcall #else # define CALLBACK #endif #include <iostream> #include <vector> namespace OdeProxy { ...
0
votes
1answer
14 views

Batch Save to MongoDB C# Driver

I am having difficulty batch saving MongoDB documents using the C# driver. Here's sample code that inserts a Document with a GUID BsonID. Saving one at a time works. If I insert the documents into a ...
1
vote
0answers
15 views

using Naudio to play Stream of Wave

I want to change the bit rate of wave file. so I searched in the net and I figure out that the wave file contain a header which is 44 bytes length , and the 25,26,27 and 28 byte are used to store ...
0
votes
0answers
21 views

how can I make a socket connection non-locally?

I tried to search for similar questions but I couldn't since I don't know how to pronounce this question. My server codes for connection is... server_Listener = new TcpListener(7778); ...
0
votes
0answers
19 views

How to wait until an event is finished without blocking execution in the UI

I’m trying to figure out how can I make sure that the event has fired before letting the rest of the code run. I hook up an event like this: public static class ServiceUrlQueryParameters { ...
1
vote
2answers
57 views

Go To Line in Text Editor

I tried implementing GoTo ling in a basic editor-type app but isn't always accurate. More often than not, it gets the right line, but it seems that the more lines there are, the more of a chance it ...
0
votes
1answer
47 views

Exception.ToString() path

I'm using log4net to maintain an exceptions log of an application. I realized that the log info shows the file path of the development environment even thought it's not published in the same machine ...
0
votes
0answers
21 views

how to authenticate for internal and external users

In my application I have a login page. I want this login page to appear only to the external users. Internal users should directly go to the application using windows sign information. So, if external ...
0
votes
0answers
5 views

Role provider in console/WPF/WinForms application

I have written a role provider which assumes Windows authentication and so far works well with WCF services and ASP.NET. Is it possible to use it also with a console/WPF/WinForm application? I tried a ...
0
votes
0answers
12 views

Reactive Extension databinding

I apologize for asking a n00b question, but I'm only just learning about Rx, and I'm unclear about a way it is supposed to be used. I understand Rx is about observables and if I would like to ...
4
votes
2answers
184 views

Battleship AI - completely lost

I'm building a Battleship game using C#.NET. It's supposed to use a fairly simple scoring mechanism. No ship sinking, if either the player or the computer scores 17 hits, they win. If you score a hit, ...
0
votes
1answer
16 views

DataGridView Cell color change

I have a test program that builds a datatable (26 rows by 6 cols) as datasource for a DataGridView. The datagrid can be edited by selecting cells, and entering values from one of 3 NumUpDown controls. ...
0
votes
0answers
3 views

Custom code access permission throws SecurityException with message “Failure decoding embedded permission set object.”

We have a pretty elaborate authorization system which requires the use of a custom permission somewhat similar to PrincipalPermission. I followed all suggestions on MSDN and looked at the code of ...
0
votes
1answer
26 views

How to login into smtp server

i want to login into smtp server without sending any mail. Code for explanation: Dim S As New SMTP() Dim IsOk As Boolean IsOk = S.Connect("smtp.example.com","994","username","password") IF IsOk ...
2
votes
0answers
28 views

Enumerating container names of the strong name CSP

I'm trying to find some information about how to (if at all possible) enumerate all container names in the Strong Name CSP (Cryptographic Service Provider). Essentially, when you type sn.exe -i ...
0
votes
0answers
13 views

Bug fixing workflow with Nuget

Currently our project use project reference to projects shared across multiple products. We are going to start using Nuget for package management. I'm wondering about best practices for typical ...
0
votes
1answer
11 views

The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception

I am deploying a desktop application to my clients that uses the Crystal Reports API to display and print forms. I am building my installer using InstallShield 2012. I have also included the .NET 4.0 ...
0
votes
0answers
15 views

How to evaluate a path against the System FilesNotToBackup list

I'm attempting to determine whether a given file path matches an entry in the FilesNotToBackup list. From that page... ... Each of the entries in this key is a REG_MULTI_SZ string in the ...
0
votes
0answers
6 views

nAudio Sending directly from a WAV file to a DirectShow Sound Card

This is my first post on stackoverflow (after years of reading it of course :P) and I am very new to nAudio. I am using VB.net to integrate sending a wave file to a specific speaker (exactly what is ...
0
votes
2answers
28 views

Why can't my users find my ClickOnce application's exe?

I have an app and my users need to right click on files they create > Open With > Choose Programs > MyApp.exe - but they can't because they cannot find it on their system. All they can find is a bunch ...
0
votes
1answer
7 views

How to check that multiple Outlook dialogues aren't being created for same Email/Filename?

I am using C#.NET in VS2010. In my below code I check each record in a datagrid for having been selected for Reporting. If selected, I then check each of the 3 available contact fields to see if that ...
0
votes
1answer
19 views

Move cursor to “next” TextBox after n chars

I am writing a .NET (4.0) app where user will be entering e.g. 2 digits in a number of TextBoxes and I would like the cursor to automatically advance to the "next" TextBox after the second character ...
1
vote
2answers
43 views

Why doesn't this INSERT command work?

My system does not come with any errors, but there is not added anything to tblHardware when I try to add. This is my code. private void btnTilfoj_Click(object sender, EventArgs e) { conn = new ...
-1
votes
0answers
20 views

enable API access to forms authenticated site

I have an ASP.NET MVC site that is authenticated through forms authentication. The site uses backbone and for the most part, most requests return JSON and most posts have a content-type of JSON. We ...
0
votes
1answer
26 views

looping through dynamically generated textareas

I am trying to loop through and retrieve the values of a bunch of dynamically generated textareas on my vb.net webpage. The user can add textareas via jQuery, and when they click the save button, I ...
1
vote
0answers
35 views

best way to get a quick printout from C# WPF

I have a WPF where I've been asked to make allow a user to quickly send a screen shot with a click of a button and the only dialog that should be displayed is a printer dialog. I have code already ...
1
vote
1answer
37 views

What is the TPL equivalent of a condition variable?

I'm learning the Task Parallel Library (in conjunction with C# 5.0 async/await), and I want to do something like this: public class Foo { public void UnblockDoSomething() { DoWork(); ...
0
votes
2answers
32 views

Show button when parent cursor in parent control

For my combo boxes in my application, I want to allow the user to edit the collection that the controls are bound to. To do this, I want to have a button that appears when the cursor is over the ...
0
votes
1answer
12 views

set panel default button gives error, must be ibuttoncontrol

I am trying to set default button for asp panel. Instead of asp button I am using button control with type="submit". I am getting error: "The DefaultButton of 'pnlSSN' must be the ID of a control of ...
1
vote
1answer
21 views

Does the .NET Garbage Collector's stop-the-world effect halt or delay the execution of unmanaged threads and timer callbacks?

I have an application that needs to have code executed at very precise intervals. For that purpose I also need Windows' scheduler resolution increased to 1ms via timeBeginPeriod. To do that, I have a ...
0
votes
0answers
4 views

CefSharp/Ajax - Unknown SSL error -12167

I am using v1.19.0.41824 of CefSharp in a VB.NET app targeting .Net 2.0. I have a poller running when the js app loads that sends an AJAX GET request to a REST service. This request fails leaving this ...
0
votes
2answers
19 views

vb.net read text from web .txt file and show it in textbox?

I am trying to read few number from internet .txt file and show it in text box, but without result... These systems are imported: Imports System.IO Imports System.Text Imports System.Net Here is ...
0
votes
0answers
20 views

.Net form is inserting domain name into path

This is pretty bizarre, but after copying my website into a new application directory, by the same name, on GoDaddy, .Net is adding the domain name to all my path references. For instance, I have ...
5
votes
5answers
123 views

Why are you expected to override GetHashCode and Equals when overloading the equality operator?

The title pretty much says it all. Failing to override GetHashCode and Equals when overloading the equality operator causes the compiler to produce warnings. Why would it be a good idea to change the ...
3
votes
1answer
38 views

What are the bad consequences of ThreadAbortException?

I have recently came across a multithreading pattern in legacy codebase, which relies on Thread.Abort() method for canceling simultaneous requests to external systems. One of the bad consequences is ...
0
votes
3answers
21 views

Resize TextFile (Keep X amount of first lines and delete the rest of lines)

I'm trying to delete all the lines after "X" number of line in a textfile, I mean to keep the first "X" amount of lines and delete the rest of lines. I know how to do this by this way: 1. Open the ...
0
votes
1answer
13 views

How to create Expression Tree for multiple column OrderBy Expression

I have create an orderby expression for my EF generic Repository as following string command = orderByDesc ? "OrderByDescending" : "OrderBy"; var type = typeof(T); var property = ...
1
vote
1answer
30 views

Is this safe for Parallel.ForEach?

I have a service that pulls emails for parsing. Each email is parsed by multiple visitors (all implementing a simple IEmailVisitor interface with one method: void Visit(VisitableEmail email). For some ...
0
votes
0answers
15 views

NTLM Windows Authentication and anonymous authentication phantomJS

I would like use Windows authentication for for my application except for some tests which i would like to run using anonymous authentication which run using phantomJS and jasmine. I have added the ...
5
votes
2answers
54 views

MySqlDateTime in LINQ Query

I am trying to do a comparison of a MySqlDateTime object to another MySqlDateTime object, each from two different tables. I am trying to do all of this inside a LINQ query, ex: var ...
0
votes
1answer
26 views

How to copy empty directory to output in visual studio?

I would like to generate an empty folder in my bin, however you can't apply "copy always" to folders, only to items within folders. Is there a cleaner way to do this than to create an empty file in ...
1
vote
4answers
44 views

How to test if Action<…> is null?

Suppose I have a function that looks like this: public void DoSomething(Action<object> something) { something(getObject()); } If something is null, then this code will raise a ...
0
votes
2answers
17 views

Can you switch .net frameworks quickly?

I've only ever used .net 3.5 framework but am looking into getting 4 or possibly 4.5 however if 4/4.5 don't work with the rest of the application I'm working on, is there a quicky way to switch ...

1 2 3 4 5 3090