473,396 Members | 1,755 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

VS 2008 Edit and Continue broken

Title says it all. I have reinstalled this "terrible" version of VS now 4
times and I am having trouble with why MS released this.

I do a simple one line addition and it tells me thing are not sync'ed. Well
sync them IDE.

MS are you there??????

LS

Jun 30 '08 #1
9 1969
On 2008-06-30, Lloyd Sheen <a@b.cwrote:
Title says it all. I have reinstalled this "terrible" version of VS now 4
times and I am having trouble with why MS released this.

I do a simple one line addition and it tells me thing are not sync'ed. Well
sync them IDE.

MS are you there??????

LS
Sure sorry your having so much trouble... But, I have had zero problems with
VS2008. Maybe it's VB thing though, because I mostly work in C#.

--
Tom Shelton
Jun 30 '08 #2
How about actually describing what you want to do and how you are attempting
to do it and what you are getting for a response instead of just ranting?
"Lloyd Sheen" <a@b.cwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Title says it all. I have reinstalled this "terrible" version of VS now 4
times and I am having trouble with why MS released this.

I do a simple one line addition and it tells me thing are not sync'ed.
Well sync them IDE.

MS are you there??????

LS

Jun 30 '08 #3

"Scott M." <s-***@nospam.nospamwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
How about actually describing what you want to do and how you are
attempting to do it and what you are getting for a response instead of
just ranting?
"Lloyd Sheen" <a@b.cwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
>Title says it all. I have reinstalled this "terrible" version of VS now
4 times and I am having trouble with why MS released this.

I do a simple one line addition and it tells me thing are not sync'ed.
Well sync them IDE.

MS are you there??????

LS

Ok I inserted the following lines (new) into an executing procedure.

Dim toFolderName As String
toFolderName = Path.Combine(toFolder.FolderName,
Path.GetFileName(folderName))
This made the code in the procedure:

Dim toFolder As FolderInfo = CType(foldersListBox.SelectedItem,
FolderInfo)
Dim fromFolder As String = folderName
Dim toFolderName As String
toFolderName = Path.Combine(toFolder.FolderName,
Path.GetFileName(folderName))

FileSystem.MoveDirectory(fromFolder, toFolderName)
Me.DialogResult = Windows.Forms.DialogResult.OK
Close()
Now when I attempted to set the executing line to the first line ( one time
I noticed in the watch window that toFolder was nothing after a change) I
get a first message that I cannot set the execution to that line. When I
get that I do not want to execute the sub any further so I attempted to set
the executing line to setting the dialogresult. This resulted in the error
and I had to shut down VS 2008.

LS

Jun 30 '08 #4
I've given up on Edit-and-Continue in VB.NET. I now restart every time I make
a change.

Pity, it was one of the great features of MS BASIC going back to QuickBasic.

I don't know enough about the plumbing of .NET but I suspect that now
programs are all JIT Compiled, rather than interpreted, it is too hard to
implement properly.

All I know is Edit-And-Continue makes the IDE unreliable, so I don't use it.
Even Stop-and-continue can be a problem if you use third party or COM objects
- viewing a property can execute code underneath, I suppose.

--
David Streeter
Synchrotech Software
Sydney Australia
"Lloyd Sheen" wrote:
>
"Scott M." <s-***@nospam.nospamwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
How about actually describing what you want to do and how you are
attempting to do it and what you are getting for a response instead of
just ranting?
"Lloyd Sheen" <a@b.cwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Title says it all. I have reinstalled this "terrible" version of VS now
4 times and I am having trouble with why MS released this.

I do a simple one line addition and it tells me thing are not sync'ed.
Well sync them IDE.

MS are you there??????

LS

Ok I inserted the following lines (new) into an executing procedure.

Dim toFolderName As String
toFolderName = Path.Combine(toFolder.FolderName,
Path.GetFileName(folderName))
This made the code in the procedure:

Dim toFolder As FolderInfo = CType(foldersListBox.SelectedItem,
FolderInfo)
Dim fromFolder As String = folderName
Dim toFolderName As String
toFolderName = Path.Combine(toFolder.FolderName,
Path.GetFileName(folderName))

FileSystem.MoveDirectory(fromFolder, toFolderName)
Me.DialogResult = Windows.Forms.DialogResult.OK
Close()
Now when I attempted to set the executing line to the first line ( one time
I noticed in the watch window that toFolder was nothing after a change) I
get a first message that I cannot set the execution to that line. When I
get that I do not want to execute the sub any further so I attempted to set
the executing line to setting the dialogresult. This resulted in the error
and I had to shut down VS 2008.

LS

Jul 1 '08 #5

"SurturZ" <su*****@newsgroup.nospamwrote in message
news:67**********************************@microsof t.com...
I've given up on Edit-and-Continue in VB.NET. I now restart every time I
make
a change.

Pity, it was one of the great features of MS BASIC going back to
QuickBasic.

I don't know enough about the plumbing of .NET but I suspect that now
programs are all JIT Compiled, rather than interpreted, it is too hard to
implement properly.

All I know is Edit-And-Continue makes the IDE unreliable, so I don't use
it.
Even Stop-and-continue can be a problem if you use third party or COM
objects
- viewing a property can execute code underneath, I suppose.

--
David Streeter
Synchrotech Software
Sydney Australia
"Lloyd Sheen" wrote:
>>
"Scott M." <s-***@nospam.nospamwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
How about actually describing what you want to do and how you are
attempting to do it and what you are getting for a response instead of
just ranting?
"Lloyd Sheen" <a@b.cwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Title says it all. I have reinstalled this "terrible" version of VS
now
4 times and I am having trouble with why MS released this.

I do a simple one line addition and it tells me thing are not sync'ed.
Well sync them IDE.

MS are you there??????

LS


Ok I inserted the following lines (new) into an executing procedure.

Dim toFolderName As String
toFolderName = Path.Combine(toFolder.FolderName,
Path.GetFileName(folderName))
This made the code in the procedure:

Dim toFolder As FolderInfo = CType(foldersListBox.SelectedItem,
FolderInfo)
Dim fromFolder As String = folderName
Dim toFolderName As String
toFolderName = Path.Combine(toFolder.FolderName,
Path.GetFileName(folderName))

FileSystem.MoveDirectory(fromFolder, toFolderName)
Me.DialogResult = Windows.Forms.DialogResult.OK
Close()
Now when I attempted to set the executing line to the first line ( one
time
I noticed in the watch window that toFolder was nothing after a change) I
get a first message that I cannot set the execution to that line. When I
get that I do not want to execute the sub any further so I attempted to
set
the executing line to setting the dialogresult. This resulted in the
error
and I had to shut down VS 2008.

LS

Under VS 2005 I never had a problem. One thing I think causes a problem in
VS 2008 is Linq. I know you cannot edit linq statements and I have many in
my code.

LS

Jul 1 '08 #6
Sure sorry your having so much trouble... *But, I have had zero problems with
VS2008. *Maybe it's VB thing though, because I mostly work in C#.
Doesn't seem to be a VB thing, I work almost exclusively in VB now,
and most of the developers I work with are doing 95% VB. I don't know
of any problems from the other guys and I haven't had a single problem
since 2008 was released. I am however running Team Suite so perhaps a
version difference is to blame?

Thanks,

Seth Rowe [MVP]
http://sethrowe.blogspot.com/

Jul 1 '08 #7
On Jul 1, 6:57*am, rowe_newsgroups <rowe_em...@yahoo.comwrote:
Sure sorry your having so much trouble... *But, I have had zero problems with
VS2008. *Maybe it's VB thing though, because I mostly work in C#.

Doesn't seem to be a VB thing, I work almost exclusively in VB now,
and most of the developers I work with are doing 95% VB. I don't know
of any problems from the other guys and I haven't had a single problem
since 2008 was released. I am however running Team Suite so perhaps a
version difference is to blame?

Thanks,

Seth Rowe [MVP]http://sethrowe.blogspot.com/
LOL

Apparently I just jinxed myself. I just received my first crash in
Visual Studio 2008. When using Ctrl+M+L to expand my code file the
Visual Basic Compiler went kaboom.

That'll teach me to say I haven't had any problems! :-)

Thanks,

Seth Rowe [MVP]
http://sethrowe.blogspot.com/
Jul 1 '08 #8
terrible? Wow haven't used VS2005 much have you? Haven't had a single
problem with 2008 yet... 2005 was almost unbarable to use at times...
"Lloyd Sheen" <a@b.cwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
Title says it all. I have reinstalled this "terrible" version of VS now 4
times and I am having trouble with why MS released this.

I do a simple one line addition and it tells me thing are not sync'ed.
Well sync them IDE.

MS are you there??????

LS

Jul 1 '08 #9

"Smokey Grindel" <no****@nospam.comwrote in message
news:%2****************@TK2MSFTNGP04.phx.gbl...
terrible? Wow haven't used VS2005 much have you? Haven't had a single
problem with 2008 yet... 2005 was almost unbarable to use at times...
"Lloyd Sheen" <a@b.cwrote in message
news:%2****************@TK2MSFTNGP03.phx.gbl...
>Title says it all. I have reinstalled this "terrible" version of VS now
4 times and I am having trouble with why MS released this.

I do a simple one line addition and it tells me thing are not sync'ed.
Well sync them IDE.

MS are you there??????

LS

Used VS 2005 for about 3 years without a hickup.

LS

Jul 1 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Andrew Brampton | last post by:
Hi, I read a few months back that Edit & Continue was going to be added to VS2003 for C# and the other .Net languages... However I'm sitting in front of my newly installed Visual Studio 2003 and...
5
by: viza | last post by:
Hi! Suppose I have int i,j,k; for(i=0;i<I;++i){ /* loop 1 */ for(j=0;j<J;++j){ /* loop 2 */ for(k=0;k<K;++k){ /* loop 3 */ if(test){
46
by: Keith K | last post by:
Having developed with VB since 1992, I am now VERY interested in C#. I've written several applications with C# and I do enjoy the language. What C# Needs: There are a few things that I do...
4
by: WayneM | last post by:
Is there a Edit and Continue capability in VB.NET yet? I realize it may not be the same as VB6, but I thought there was going to be some form of this? Thanks for any info, WayneM
2
by: Oenone | last post by:
I am developing an assembly that can be used either by a Windows Forms application or from within an ASP.NET web site. When running within the Forms app, I can break into the code while it is...
4
by: Bryce K. Nielsen | last post by:
I am *extremely* annoyed by this, but apparently in VS2005 you cannot edit any of your source files while the debugger is running. Why is that? Is there an option I can set that will let me do...
5
by: Diane Yocom | last post by:
I'm using VS2005 and am trying to get Edit and Continue to work while debugging. I've gone to the Tools-Options-Debugging dialog box and made sure "Enable Edit and Continue" is checked, but when I...
59
by: Jeremy | last post by:
Is a worthwhile feature? I've lived just fine without it for years... don't see much value in using it. Am I missing something? Thanks!
6
by: Gianluca Pezzoli | last post by:
I have used edit And Continue for months in Winforms applications with VS 2005 TeamEdition x Software Developers. I have windows vista with all updates. Also VS has all available updates. But...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.