|
Visual Studio .NET screen shots
Troy Marchand of Dundas Software kindly provided some screen shots of the Visual Studio .NET preview. Troy mentioned that component creation using C# and VB is extremely quick and easy, and the Visual Studio .NET IDE seems to be stable. There is a bit of instability with the .NET framework, and system crashes are very common. Microsoft highly recommend installing the preview on a fresh install of W2K on a non-critical system.
More screen shots here.
More screen shots
Here's a few more shots for those that don't have access to a copy of Visual Studio 7.

The above pic shows a C# form in design mode. Creating C# GUI applications is seriously easy stuff. It's very similar to VB, except that as you drag and drop WinForms onto the form the IDE creates code in your forms' InitializeComponent method. Double click on a WinForm and you can edit the code underneath. Below is the C# code for a simple form that has a label and a button, and when you click on the button a message box pops up. Time to create - less than a minute, as you'd expect. namespace Project2
{
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.WinForms;
using System.Data;
public class Form1 : System.WinForms.Form
{
private System.ComponentModel.Container components;
private System.WinForms.Label label1;
private System.WinForms.Button button1;
public Form1()
{
InitializeComponent();
}
public override void Dispose()
{
base.Dispose();
components.Dispose();
}
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.button1 = new System.WinForms.Button();
this.label1 = new System.WinForms.Label();
button1.Location = new System.Drawing.Point(120, 24);
button1.Size = new System.Drawing.Size(75, 23);
button1.TabIndex = 0;
button1.Text = "Push Me!";
button1.AddOnClick(new System.EventHandler(button1_Click));
label1.Location = new System.Drawing.Point(16, 32);
label1.Text = "Text Label";
label1.Size = new System.Drawing.Size(100, 23);
label1.TabIndex = 1;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.Text = "Form1";
this.ClientSize = new System.Drawing.Size(256, 125);
this.Controls.Add(label1);
this.Controls.Add(button1);
}
protected void button1_Click(object sender, System.EventArgs e)
{
System.WinForms.MessageBox.Show("Hello");
}
public static void Main(string[] args)
{
Application.Run(new Form1());
}
}
}
These two pictures show the Visual Studio Start page. You can customise everything about Visual Studio to make it look like the environment you are used to - or make it a suitable environment for the language you are workin in. There are preset environment layouts you can use, or you can customise a new one.

These two pictures show one of the coolest features of Visual Studio 7 - the dynamic help. As you type, the dynamic help window displays context sensitive help topics. You can view the help from within the environment (a la Visual Studio 4) or externally. The help window is updated extremely quickly. Note how as we move from being in an empty OnDraw function to having the cursor next to a CRect declaration the dynamic help changes to reflect our current area of interest. Sweet.

I included this shot of the installation process since it answered a question many have been asking: what is the next version of the MFC DLL to be called? Look closely - you'll find MFC70.dll.
| You must Sign In to use this message board. |
|
| | Msgs 1 to 25 of 76 (Total in Forum: 76) (Refresh) | FirstPrevNext |
|
|
 |
|
|
 |
|
|
 |
|
|
Or may be it can remain as in the 'classic' section
Nobody can give you wiser advice than yourself. - Cicero ப்ரம்மா
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
Hey , Even I had the same problem while installing VS.NET . I think the Extensions are only for Windows 2000 Service Pack 1. I guess SP 2 does not require that . So you can start the VS.NET setup straight away , by running x:\setup\setup.exe , where 'x' is your CD-ROM drive with the first CD Visual Studio.NET .
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
I have downloaded .NET Framework from MS Site, but they say VS.Net is only for the subscribers. Do I have to pay money to get VS.Net Beta.?. Can anybody tell me where to download it from?

Thanks George
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
Hi,
I looked everywhere for this but could not find it. Microsoft now have a habit of selling Beta products in this way. I have since ordered the beta 2 CD which should be with me in about 4 weeks and cost $15. I would be interested if you do find a site which has the Beta software available for download.
Paul.
P.J.Hale paul.hale@wapsprinter.com www.wapsprinter.com
iwonder who developed this web site? www.iwonder.co.uk
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
Good day,
Really? I tried to see if I could just get the beta CD's rather than subscribing to the Microsoft Subscription. Where could I go on Microsoft's site if I just wanted to order the CD's?
Duane Leem ASP/ADO/SQL Programming Specialist Duane@leemfamily.com
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
Go the site http://msdn.microsoft.com/vstudio/nextgen/beta.asp
It seems the CDs have only the SDK and you have to order the DVD to get the .NET framework and IDE.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
i got a link http://www.desenvolvedor.com.br/Download_res/VSNETdisco1.zip Cd1 http://www.desenvolvedor.com.br/Download_res/VSNETdisco2.zip Cd2 its a brasilian site but its in english hahah
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
i visited the site. but i think the link is broken and unfortunately i dont know brasilian. so i am stuck
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
Go the site http://msdn.microsoft.com/vstudio/nextgen/beta.asp
It seems the CDs have only the SDK and you have to order the DVD to get the .NET framework and IDE.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
hi all
I generated default addin code selecting option
"Add menu item in the Tools menu" using Studio.Net,
after compiling this default code, generate an error + these problems i am facing:
How to rename the menu item name generated by this default code also
How to add my own icon along this menu caption??
Currently this menu item name appear like this : ProjectName.Progid.AddinName
i want to replace this whole caption with my given title + icon.
waiting for early reply
Virda
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
hi all
I generated default addin code selecting option
"Add menu item in the Tools menu" using Studio.Net,
after compiling this default code, generate an error + these problems i am facing:
How to rename the menu item name generated by this default code also
How to add my own icon along this menu caption??
Currently this menu item name appear like this : ProjectName.Progid.AddinName
i want to replace this whole caption with my given title + icon.
waiting for early reply
Virda
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
I am trying to order the beta cd from http://msdn.microsoft.com/vstudio/nextgen/beta.asp and their site is down...this sucks man and i came home from work today hoping to get a good look at this thing..can;'t even download it...can someone tell me of an alternate site to download it
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
here the link to download .NET framework beta 1
http://msdn.microsoft.com/downloads/default.asp?URL=/code/sample.asp?url=/msdn-files/027/000/976/msdncompositedoc.xml
dogu tumerdem dogu_research@hotmail.com
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
 |
|
|
How stable is the .NET runtime and how stable is Visual Studio .NET? For a new project is it ok to go for C#? When will the first official release of Visual Studio .NET come out
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
The runtime and IDE seem reasonably-kinda-sorta stable. The debugger seems to bring the system down a fair bit though. With the preview release Microsoft are fairly clear that if you stray from the pre-tested demos then you are entering intop dangerous territory (stay off the moors!)
cheers, Chris Maunde
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
Does anyone know if there are any new common controls in Visual Studio .NET, such as the Outlook Bar in MS Outlook
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
There are few new controls in this version, but some new features will be added to almost control, like Dock(Align in Delphi), Anchors, etc. Some components, like mainmenu, contextmenu, splitter is more likely coming from Borland Delphi or C++ Builder instead of Visual Basic. I always think about it as a mixture of Java's syntax, VB's user interface and Delphi's component
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
Depending on what product you are comparing to, there are lots of new controls.
For Windows applications, the new WinForms part of the .NET Framework has all the standard controls (TabControl, Label, Button, etc.) and also has: * LinkLabel - hyperlink style control * Hierarchical DataGrid * Splitter * ErrorProvider - see below * PropertyGrid - yes, the PropertyGrid is now a *reusable* control that you can use in your applications. * ...
The ErrorProvider requires a bit of explanation. Basically this control allows you to have a small icon appear next to other controls to indicate an error or some other state. The control ties into the data binding model, so if you encounter a data error (required field, etc) you can have an exclamation point appear next to the required field.
Also many of the standard controls have been enhanced. For example you can now put an animated GIF on the face of a button!
In addition to the Windows based controls there is a completely new UI package for writing web based applications called ASP.NET. This has a whole host of controls (datagrid, validators, etc.) that you can use to write rich web applicaitons.
|
| Sign In·View Thread·PermaLink | |
|
|
|
 |
|
|
 |
|
|
General News Question Answer Joke Rant Admin
|