.net-3.5 Questions
2
I'm have to use the facebook c# sdk for a new poject in .net 3.5 , I'm aware that the latest version has examples for 4 - but it's also compiled against the 3.5 so works completely.
Anyway, and fo...
Jamila asked 20/1, 2011 at 14:56
4
Solved
I'm trying to execute a prepared sql query which updates CLOB fields in an Oracle 10g database (10.2.0.1).
If I execute the following query from inside SQL Developer and supply the values for the ...
8
I receive this error when I view an application.
HTTP Error 500.22 - Internal Server Error (An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.)
.Net ...
Excitable asked 10/9, 2011 at 8:22
4
Solved
I have a Windows Forms application developed using C# in .NET framework 3.5, Service pack 1. The application can be published based on the development database as well as the production database. I...
Syd asked 15/3, 2011 at 19:25
5
Solved
I updated my ClickOnce application and then when the user runs they are asked if they want to install the new version.
I am working in a highly controlled environment. When an update is available ...
Theis asked 28/10, 2009 at 15:37
4
Solved
The behaviour described below is specific to .net-3.5 only
I just ran across the most astonishing behavior in the C# compiler;
I have the following code:
Guid g1 = Guid.Empty;
bool b1= (g1 ==...
2
The title says it all...
Is it possible to get line numbers/positions from a System.Xml.XmlNode when working with a System.Xml.XmlDocument?
I want the information so that I can inform the user of...
2
Solved
When I instance my "Entities" object in Entity Framework, and make a couple of queries using that Entities object, what happens to connections?
Does it open a connection when I instance the objec...
Allman asked 15/8, 2009 at 19:44
5
Solved
I am trying to enable Net 3.5 Framework on Windows Server 2012. However, all the instructions I find on the Internet say I must have DVD of Windows Server 2012.
http://en.community.dell.com/techcen...
Rosalbarosalee asked 13/5, 2014 at 12:45
7
Solved
If objects contains null or empty then how to validate or check the condition for the same?
How to bool check whether object obj is null or Empty
I've code as follows:
class Program
{
static vo...
5
Solved
In Winforms you can say
if ( DesignMode )
{
// Do something that only happens on Design mode
}
is there something like this in WPF?
3
Solved
How to check whether an Xml file have processing Instruction
Example
<?xml-stylesheet type="text/xsl" href="Sample.xsl"?>
<Root>
<Child/>
</Root>
I need to read the...
Selective asked 23/6, 2010 at 9:12
7
Solved
I start my application which spawns a number of Threads, each of which creates a NamedPipeServer (.net 3.5 added managed types for Named Pipe IPC) and waits for clients to connect (Blocks). The cod...
Mays asked 3/3, 2009 at 19:52
2
Solved
I have an abstract class that is inherited by two classes. Both classes represent tables in the database. I am having troubles mapping expressions though in the abstract class and therefore I keep ...
Myrlmyrle asked 3/6, 2016 at 18:27
2
We are using a NotifyIcon to alert the user when they receive a new message that needs their attention. In the event that someone else gets to the message first, the notify icon should get hidden a...
Flier asked 16/12, 2013 at 15:57
10
Solved
I'm creating a console app in Visual Studio 2010 with c#. I want this app to be stand alone, in that all you need is the exe, and you can run it from anywhere. I also want to use app.config to stor...
Criticism asked 3/1, 2011 at 16:26
4
Solved
Has anyone created a .NET application that reads and parses an EDI file?
EDI file - used by shipping industries to provide information on shipment invoice.
4
Solved
I am using the DataGrid from the WPF toolkit in .NET 3.5.
I have a datagrid column bound to a boolean property from my source object.
The checkbox is calling the boolean's properties get accessor...
Gaylagayle asked 18/5, 2012 at 10:46
13
Solved
I want to display a progress bar while doing some work, but that would hang the UI and the progress bar won't update.
I have a WinForm ProgressForm with a ProgressBar that will continue indefinite...
Closeup asked 23/12, 2009 at 11:21
5
Solved
I have a .NET 2.0 website (VB) running in my IIS6 (XP Pro SP2) and a .NET 3.5 (configured as .NET2 under IIS's ASP.NET tab, of course) hosting an ASMX web service.
In Chrome, I can call the ASMX a...
Compte asked 19/7, 2010 at 16:5
5
Solved
Suppose I wanted to do this, so I can find the current position of the mouse relative to a Visual, without needing access to a specific mouse event:
public static Point GetMousePosition(this Visua...
4
Solved
I am trying to databind a DataGridView to a list that contains a class with the following structure:
MyClass.SubClass.Property
When I step through the code, the SubClass is never requested.
I d...
Lauber asked 25/3, 2009 at 22:34
7
Solved
Something like String.Join(",", new string[] { "a", "b" });, but for Guid[]
var guids = new Guid[] { Guid.Empty, Guid.Empty };
var str = /* Magic */
// str = 00000000-0000-0000-0000-000000000000...
3
I am having trouble with System.SystemSounds.Beep.Play() not making any sound for a particular user. It seems to be working for everyone else (a fairly large user base with generally 24/7 use) but ...
0
I'm limited to .net 3.5 and want to use Reactive Extensions with F# 3.0.
Apparently, F# and RX introduce different versions of System.IObservable<T>
open System.Reactive
open System.Timers
...
Subtract asked 27/6, 2016 at 14:29
© 2022 - 2024 — McMap. All rights reserved.