all groups > visual studio .net ide > july 2003 > threads for july 22 - 28, 2003
Filter by week: 1 2 3 4 5
Can you copy IDE colors & settings to another machine?
Posted by NoSpamPlz at 7/28/2003 1:38:44 PM
Is this possible? I've setup a very appealing (to my eyes) color scheme and
want to port this easily to my home pc. I'm wondering if its as easy as
moving a config file of some sorts... ? ?
... more >>
VSS/IDE Integration.
Posted by arnold at 7/27/2003 8:37:22 PM
I would like to completely turn off VSS/IDE integration
for .NET 2003 and Visual Studio 6.0. I use to konw of
registry setting that did this nicely but I can't seem to
locate it these days. I'm running on Windows 2000
Professional and soon to update to XP - Professinal.
TIA,
arnold... more >>
Howto copy dialogs from one project to another
Posted by Michael Wade at 7/27/2003 10:26:28 AM
I want to reuse some dialogs that I created with another
project. Unfortunately I cannot just cut & paste the
dialogs from one Visual Studio .NET 2003 Session to
another. Does anybody know how to do this?
Thanks... more >>
VS.Net 2002 Conflict
Posted by Gian U. Uy at 7/27/2003 3:27:53 AM
I know this is kinda wierd, but there is a problem when you are using the
Visual Database Tools & even the XML Schema viewer for Visual Studio.Net
2002 on an AMD athlon machine with Office 2003 Beta 2 (Technical Refresh
Edition) Professional. I tried connecting to a database using the Server
Exp... more >>
I can't get HELP Search Results to display!!!
Posted by Larry Woods at 7/25/2003 6:18:03 AM
HELP!
I can't see any results from any Help Search that I try. There is a small
"tab" at the bottom of my screen with text "Search Results for blah" but I
can't see anything. I have tried various searches, many of which I know
would have results.
What's happening?
Thanks.
Larry Wood... more >>
.NET 7.1 Build issues
Posted by Franklin at 7/24/2003 5:53:00 PM
Hi,
I have been trying to automate our builds through scripts
and have come across this problem:
When I open a solution and build via the IDE, the build
will succeed. However if I run "devenv /build debug
<solutionFile>" then the build will not succeed.
I have narrowed down the problem... more >>
Signing Deployment Projects
Posted by Brett Robichaud at 7/24/2003 3:04:19 PM
I have a setup/deployment project where I'm using Authenticode to sign the
resulting msi. I've found that I can't specify a relative path to the
Certificate and Private Key files. VSNet seems to use the current IDE
directory when using these relative paths rather than the directory of the
Setu... more >>
Upgrading to VS.Net
Posted by Michael at 7/24/2003 1:43:54 PM
I'm a version 6 developer. VS6, VB6 and classic ASP. I
want to start transitioning to .NET. I wanted to know if
there are any issues with upgrading from VS6 to VS.Net.
Either with the software,platform or being able to work on
existing classic ASP or VB6 apps. I'm running Win2K
Server, SQL... more >>
Don't see what you're looking for? Search DevelopmentNow.com.
Database Joins
Posted by Adrian Martin at 7/24/2003 10:46:40 AM
Hi all,
Is there any way to stop VS.net convertting theta style joins to ANSI
style, as some of the DBs we use can do ANSI yet( one version off! )
ie if you type
select
c.name,
a.number ,
a.street
from
customers c ,
addresses a
where
c.id = a.id
vs.ne... more >>
Intellisense on MC++
Posted by Simon at 7/24/2003 9:58:04 AM
I'm using .h file automatically generate from ide when I choose to create a
new form, and after I using .cpp to writing functions, event code , but the
intellisense on public, protected or private pointer variables don't work.
It's give me this message 'No additional information available'. Why... more >>
Need help getting Visual Studio to fully support my custom control.
Posted by Ken Varn at 7/24/2003 9:33:46 AM
I have a custom control that I build that derives from UserControl. I added
my control to the controls Toolbox for use in the VS.NET Windows Form
Editor. The form editor recognizes my control and allows me to drop it onto
a form. So far so good.
The problem that I am having is that my contr... more >>
Auto Formatting is not formatting
Posted by Samuel Sweet at 7/24/2003 3:44:06 AM
All righty... this one is starting to aggravate me.
I was digging on the way vs.net2k3 auto format's your
code.
i.e. blocking the if...else..endif, select case, subs
etc...
Now for no reason whatsoever, it has stopped.
It doesn't auto indent, nor auto case lines anymore until
I build t... more >>
Starting VisStudio.Net programatically
Posted by Wanderer at 7/23/2003 5:37:27 PM
Hello,
In a dll I'm building, I do this:
CLSIDFromProgID(L"VisualStudio.DTE", &clsid);
HRESULT hr = GetActiveObject(clsid,NULL, &punk);
If that fails (VisStudio isn't running), I'd like to start it.
CComPtr<EnvDTE::_DTE> pDTE;
hr = pDTE.CoCreateInstance(clsid, 0, CLSCTX_... more >>
Word-wrapped links
Posted by Armin Zingler at 7/22/2003 11:13:02 PM
Hi,
after using the VB.NET 2003 upgrade wizard, there are comments like
'UPGRADE_WARNING: .... 'ms-help://bli/bla/blub'
As the lines are often very long, I enable word-wrapping (wrapping at the
right border of the screen). This also results in wrapped links, like
'UPGRADE_WARNING: ....... more >>
changing location of a solution
Posted by Jeremy Chapman at 7/22/2003 3:44:21 PM
I have created a solution in vs.net which has two projects in it. One of
the projects is located where I want it, but the other (main project created
with the solution) is not. I want to move it somewhere else. how do I do
that?
... more >>
How to get open project default namespace?
Posted by Ben Fidge at 7/22/2003 2:50:55 PM
From within an Add-In, how would I obtain the currently opened project'
Default Namespace?
Thanks
Ben
... more >>
Instance EnvDTE.DTE
Posted by Jindrich Hora at 7/22/2003 11:51:46 AM
This code is in MSDN as example for attach to active instance EnvDTE.DTE.
(example in C#)
EnvDTE.DTE myDTE = (EnvDTE.DTE)
System.Runtime.Interopservices.Marshal.GetActiveObject("VisualStudio.DTE");
I run application and my VS.NET 2002 advise error in casting. Why ?
Thanks for help.
Jin... more >>
Leading underscore and withevents
Posted by Phil Bird at 7/22/2003 10:51:37 AM
I'm seeing something I think is odd.
When defining a Variable withevents it appears the same
variable is also implicity declared with a leading
underscore.
For example
public withevents mybox as textbox
mybox = "abc"
_mybox = "abc"
First of all this works ??? which threw me.
Se... more >>
strange characters when opening existing asp
Posted by Jeremy at 7/22/2003 9:47:44 AM
i've started a project to convert our existing web
application to asp.net. when i include the existing asp
files in my project, and then open one to start working on
it, it displays a combination of non-printing characters,
wingdings and chinese characters. the documents open just
fine i... more >>
"Expects a newer version of Windows. Upgrade your Windows version" problem
Posted by vcotirlea NO[at]SPAM hotmail.com at 7/22/2003 7:07:22 AM
Hi all,
I'm having an application (.exe) that I'm building on Win 2000. When
running the .exe on a Windows 98/NT I get the following error:
"Expects a newer version of Windows. Upgrade your Windows version"
I'm building the application using a makefile that looks like:
!include <win32.mak>
... more >>
|