I am trying to make use Oracle's ability to deploy and invoke .NET assemblies within it. This requires connecting as SYSDBA. The weird thing is that I can connect as Normal and as SYSDBA from within PL/SQL Developer and I can connect as Normal from within Visual Studio, but get an "insufficient privs" error connecting as SYSDBA from Visu...
Hello, I have recently switched from Java development and Eclipse IDE to C# .NET and VisualStudio 2010. What I really miss is the Alt+/ Eclipse short-cut for word completion. I am NOT speaking about IntelliSense auto completion stuff. I mean, I would like the text editor to finish writing words that already exist somewhere in the documen...
Hello,
I am trying to download a file from an ftp site only if it's newer than my local file. Can anyone help how to incorporate to check for the file properties? right now it downloads the file, but just need if newer. The purpose is to update a .mdb with the contents of the file, so don't want to download file and run an update everyt...
I'm having some problems (as some of you will see from another question I asked) with getting a program I made in Visual Studio 2010 to run on another computer.
My computer is Windows 7 x64
The destination computer is Windows XP x86 (SP2)
I've already checked to see that I'm compiling for x86.
Anyway, my question is: Is there a debugge...
I'm not certain when this problem started occuring, but it was approximately a few weeks ago when I upgraded from Visual Studio 2008 to 2010. I am on Windows XP Professional. The share is on a server running Windows Server 2003. I have a solution which contains a web site (accessed via UNC path, network share) and some class projects tha...
After some time mainly .net development, i need to work in c++ in a cross platform manner.
I don't want to give up visual studio, so my hope was that it is possible to use visual studio and the windows target as a testbuild, and then every once in a while through means of a vm test the code on linux or mac.
Does anyone have experience ...
Why do I get this warning in C# with Visual Studio 2010?
"Unreachable expression code detected"
from the following code (DateTime.Now underlined in green squiggly):
public DateTime StartDate
{
get
{
DateTime dt = (DateTime)ViewState["StartDate"];
return ((dt == null) ? DateTime.Now : dt);
}
}
...
I have inherited a very large ASP.NET app that needs to be modified to use a State Server instead of in-proc sessions. I need to track down all classes used in session throughout the app and then determine if they can be serialized. Are there any tools that can be used to analyze the code to determine the classes used in session?
...
I'm writing a custom tool for Visual Studio and am currently using the IVsSingleFileGenerator interface. This works for the most part, but now I'd like to generate more than one file output.
Does anyone know how do go about doing this? I'm really hoping there is just a different interface to implement.
...
Hello!
I'm building static libraries (right now libpng) in Microsoft Visual Studio 2008 SP1.
Do I have any possibility to build single library (one file) for both Debug and Release modes assuming that my library has only C code in it?
As far as I remember, gtkmm, for instance, has it's pre-built package, where C++ based libraries are ...
I am attempting to debug a preprocessed T4 template and I am not able to step into the class created by running the preprocessed template. I am able to create an instance of the class but as soon as I try to step into while debugging, a new window pops up that says
No source available. There is no source code available for the curren...
I am looking for an extension to Visual Studio 2010 which would allow for better organization of the solution, projects, folders and files. I would really like to be able to color code specific project and folders. For example, my team is working on and ASP.Net webforms site and integrating ASP.Net MVC. I would love to be able to colo...
I need an input box in a UI program that is already written derived from the CWinnApp class and using MFC.
I see it is using message boxes but I don't see any examples of input boxes....
How do I do this?
(Using Visual Studio 6.0 in C++)
Thank You.
...
I'm trying to divorce myself from my mouse in order to become more product and in order to do this I must find key-combos for common operations.
Every time I launch the object browser in VS, the focus is on the tree of namespaces and classes.
How can I shift this focus to the search box?
Better yet: How can I launch the Object browse...
This may seem weird but I have a problem in one of my programs where I have a class A which needs a variable of class B inside it, and the class B needs a pointer to class A inside it, so that i can determine which class is attached to what....
i get errors because in class A it says that the class B is not defined yet, and in class B i...
My case: I have an app.exe and several dlls for it -- a.dll, b.dll, c.dll, etc (they come from single VS solution which consists of many projects). I would like to merge (ilmerge) all dlls into one so I would have: app.exe + x.dll.
Now, there is a problem -- the application expects to have all dlls so when I put just single file x.dll i...
I have tried creating a syntax highlighter for a custom file definition. I get an exception when its loaded. I have added the /log parameter to devenv to get a log.
335 ERROR System.Exception: Duplicate EditorFormatDefinition exports with identical NameAttribute metadata exist. Duplicate name attribute is COMMENT Editor or Editor Ext...
Hi,
How can i generate a dynamic calendar controls in Asp.net 2.0 or above?
Following requirements should be met
Calendar Should NOT be an Asp.net default calendar control
Calendar should NOT be created by using CALENDAR object (i.e. dim calendar1 = new calendar() )
calendar Generated should display current month date (august 1 - aug...
I just added an image resource to my assembly via the Resources tab in the project properties of my project. The resource is a PNG image. Now when I load the assembly, I'm getting the error shown below. This is occurring in VS 2010.
System.Resources.MissingManifestResourceException: Could not find any resources
appropriate for the spe...
How can I make a component that resides in the components tray like the Timer? So that you can place them from the toolbox but they are not visible on the form. Hopefully this is possible.
...