Welcome to the Visual Basic IDE forum!

Hi all, and welcome to theVisual Basic IDE forum.

I'm Paul Yuknewicz - I'm one of the Program Managers on the Visual Basic product team, and starting today, I'll be moderating these forums. For more info about me, check out
my blog. Note there is aVB Team blogas well.

In this forum we will cover questions and discussions regarding the all things in the Visual Basic IDE (integrated development environment). This covers Intellisense, debugging, ErrorCorrect, ClickOnce deployment, code snippets, colorization, smart tags, key bindings, Object Browser, Refactor! for Visual Basic 2005?, etc.

The team and I look forward to joining you in discussions about VB.

Best,
Paul

[1123 byte] By [PaulYuk_MS] at [2007-12-24]
# 1
I'm very happy to see you here. I'm new to VB.net. if I have any probs I'll inform you. Thanks
ChennaiBOY at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 2

Cool...

I'm new to Vb.net programming and I'm from Sri Lanka.

Hope to clear my doubts from you very soon....

Thanks

J>mayooresan

J.Mayooresan at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 3

Hi Paul,

I am using visual basic.net 2003.

How can i make the IDE work faster. It's driving me nuts.

Thanks.

iAMssGOH at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 4

Hi-

Performance problems can be caused by a number of factors. Would you mind taking a moment to outline some details about your project and where exactly you experience slowless? I suggest posting this in a new forums post. My team will keep an eye for this and respond.

Best,

Paul

PaulYuk_MS at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 5

My problem in short is like this.

When I want to add codes behind a control. I dbl-click it it takes a long while before the text editor comes on line. Meanwhile, I can see that VB is busy saving stuff (hard disk light blinking).

When I move back to design view after putting in my codes, again it takes a long while before the design view becomes editable.

If I use tab strips the problems sometimes gets worst. My tabs becomes re-arranged (i.e. not in the order I had intended it to be).

Did I do something wrong in my installation?

Help appreciated as I am losing "train of thought" because of this.

Thanks.

iAMssGOH at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 6

OK, Spotty I will give it a try. Thanks.

luisfigueredo at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 7

Hi again Spotty: Itried what you said. I read the entire chapter, which shows only several lines of code. And a lot of reading. That is not what I need. What I need is to see the entire VB 2005 program for the Northwind database, to learn how they do things.

However, I thank you for trying.

Luis

luisfigueredo at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 8

Hi Luis,

The topic "Walkthrough: Displaying Related Data on a Form in a Windows Application" shows how to create a Parent/Child relationship using the Customers and Orders tables from the Northwind database.

http://msdn2.microsoft.com/en-us/library/803kw7az.aspx

There are also several other data walkthroughs that may be of help:

http://msdn2.microsoft.com/en-us/library/fxsa23t6.aspx

Steve Hoag

Visual Basic

shoagMSFT at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 9

Steve thanks, it worked very well.

Two more questions:

Is Crystal Reports included in VB 2005 Express?

Luis

luisfigueredo at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 10

Hi Luis,

No, Crystal Reports isn't included - for that you would need the full edition. Does that answer both of your questions :-)

Steve Hoag

shoagMSFT at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 11

Thanks again. Yes you answered the question, I know there is a 30 day trial but it may not be enough.

Luis

luisfigueredo at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 12

Hi All,

I'm facing problem as below:

Dim d As Double
d = 127.4
d = d / 18.2
MsgBox (d = 7#)

It's should return as true like what's we get from calculator, but it's not!

Workaround that I have encountered and seen so far are as below

  1. Declare d as Single instead Double

Dim d As Single
d = 127.4
d = d / 18.2
MsgBox (d = 7#)

  1. Convert the results to string and convert it back to double

Dim d As Double
d = 127.4
d = CDbl(CStr(d / 18.2))
d = d / 18.2
MsgBox (d = 7#)

Both message box will now return True.

Does anybody has a better solution or provide the logical explanation behind this results?

cht at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 13

When will the VB Team simply make vs 2005 VB.NET actually work ( read usable on anything other than example projects), and preferably not crash each and every day, and behave as a compiler, i.e detect syntax and compile errors!!

It would also be nice if it could actually compile lage programs without locking up and needing a re-boot.

All I see is look what we will do next, what we are looking for is "we will actaully produce a commercial product"..

See numerious threads on google about why VB.NET is luck to be a "beta" product..

And before I get the flame, yes I know I shoudl have stuck with VB6...

RayDyce at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...
# 14

Hi everybody,

You might like to get the FREE Add-Ins VSIP DVD, i've just got mine.

See http://msdn.microsoft.com/vstudio/extend/partnerdvd/ for details.

Regards,

S_DS

Spidermans_DarkSide at 2007-8-31 > top of Msdn Tech,Visual Basic,Visual Basic IDE...