CTRL+down arrow does this, but only 1 line at a time. Is there a shortcut to skip multiple lines but keep the cusor in the same place? You'd expect CTRL+page down to do it, but this just puts the cursor at the bottom of the screen.
...
I want to get a list of all available datasets (that I'd creat in my Asp.net project)
After that I want to select a Dataet from the list and get The list of Available DataTable included in that Dataset.
Finally I should b able to check all Data Tables Fields
How To Do This ?
Note that I know VS already has a dataset Panel but that...
Just now I found that static libraries in *nix systems, in other words *.a libraries
are nothing but archives of relocatables(*.o files) in ar fromat.
What about static libraries(*.lib files) in windows? Which format are they in?
I found an article: http://www.microsoft.com/msj/0498/hood0498.aspx which explains *.lib file structure. ...
Hi,
I am trying to write an SQL query within Visual Studio TableAdapter Query Wizard
My SQL query is:
DECLARE @SQL varchar(255);
SET @SQL = ' SELECT * FROM dbAddress WHERE 1 = 1'
IF @ApexLine1 = ''
BEGIN
SET @SQL = @SQL + ' AND addLine1 IS NULL '
END
ELSE
BEGIN
SET @SQL = @SQL + ' AND addLine1 = ''' +...
I have a function in a class file called auth_user and its in App_code folder.
I am trying to call that function from random pages that are on the website.
Inside the class file is a function that is simple, basicly check for flags in the sessions, i just wanna have it there so i dont have to type it again and again.
I want to be able ...
(Flat File Location)
Samba Share | Windows Share
(SSIS) _______________________________
| |
XP 32bit | Works | Works
| |
2003 Serv 32bit | Works | Works
| |
Vista 64bit ...
I've created a Silverlight app and VS set up a web app for testing automatically. Worked great - whenever I hit "run" it pointed a browser to the web app page which hosted the Silverlight app.
I've done some renaming of the projects, namespaces, files, etc. - just some general clean up. Now when I press "run" on my Silverlight app, it s...
Our Team Foundation Server has to build three different versions of the same solution. The only difference between them is the app.config file which should be changed for each build. How do I select correct file during the build?
What I want to do is switch app.config file and then build, repeat for each file. Ie:
<Replace file="app.co...
In Visual Studio 2008, after debugging about 1-2 minutes, when I press F10 (Step Over), the debugger hangs and Visual Studio freezes for 5-10 seconds and then go to the next line. Then whatever I do (F10, F5, F11, etc), the debugger continues the execution as if i pressed F5 and all my forms that I was debugging close. I always have to...
In a plain vanilla WinForms app (C++/CLI, set to /clr), I have the following template function, flagged as "unmanaged":
#pragma managed(push, off)
#include <string>
template< class c >
const c& test_alloc()
{
static c test_alloc;
return test_alloc;
}
#pragma managed(pop)
Then in main, I use it before Application::Run():
test_al...
I created a console application, but I want to turn it into a windows forms application.
I found This and it appeared to be what I needed, but I got an error message when I tried to use using System.Windows.Forms;
This is the error message I got:
Error 1 The type or namespace name 'Windows' does not exist in the namespace 'Syst...
Hi!
How can I programmatically refresh Visual Studio Solution Explorer?
I can get a hold of the solution explorer window object, but don't know what to do with it!
var solutionExplorer = (UIHierarchy)DTE.Windows.Item(Constants.vsext_wk_SProjectWindow).Object();
Thanks.
...
So. I've developed a WCF IIS application and am getting really tired of deploying the web application by hand.
I know the web application setup provided by MS only installs to virtual directories, and I need something a little more flexible. I also want to be able to (if possible) not only create the web app in iis, also set advanced i...
I have a Visual Studio 2005 solution with several projects that build independently of each other. The main project statically links the other projects. I'm getting very strange STL vector corruption in one of those statically-linked libraries. For example, I declare a std::vector and then perform a sort( thatVector.begin(), thatVector.e...
I know that it's possible to create MSI installers in Visual Studio using a setup project, but what would be the best way to automatically create a setup file (or packaged file of any kind) for both Windows and Linux?
I like the MSI installer on Windows so the question is rather about Linux. So is there a better solution than writing a ...
I'm running Windows 7 Ultimate (64 bit) using Visual Studio 2010 RC. I recently decided to have VS run/debug my apps on IIS rather than the dev server that comes with it.
However, every time I try to run an MVC app, I get the following error:
HTTP Error 403.14 - Forbidden The Web server is configured to not list the contents of thi...
I'm learning C++ and came across those *.lib files that are obviously used by the linker. I had to set some additional dependencies for OpenGL.
What exactly are library files in this context used for?
What are their contents?
How are they generated?
Is there anything else worth knowing about them?
Or are they just nothing more than r...
I am building a class library, and I am getting an error and I know that I need to add a reference.
Does VS have a feature where it will find the required library automatically, or do I need to know where the library is located and add the reference manually.
In java/eclipse, you may right click like and jars will be found automatically...
I'm trying to use the post build command line to get my class library in the GAC.
It is:
"%programfiles%\Microsoft SDKs\Windows\v6.0A\Bin\x64\gacutil.exe" -if $(TargetPath)
I do not see any errors, but my DLL is not getting into the GAC.
However, I can run this from a DOS prompt and it works.
Anything special I need to do to make this...
Im trying to load an image in a local reportviewer report from the applications root directory.
I can't seem to work out how to reference the applications root directory without hard coding it.
What do I use for the value of the picturebox to get an image from the root/base directory of the application?
I've tried something like:
="...