IMAP in outlook.com

2013-09-12 Thread Ian Thomas
I've only just discovered that IMAP has been introduced to outlook.com. Useful. [link ] There are upgrades to some third-party applications, now incorporating IMAP. _ Ian Thomas Victoria Park

Code commenting

2013-09-12 Thread anthonyatsmallbiz
Anyone suggest a method to autmaticlly comment code when lines have changed? Would be great to be able to see who changed what when viewing the code. At the moment,, we write comments like //xxMOD 12AUG13 XX=PROGRAMMER INITIALS WE use TFS but we like to write comments in code sometimes.

Re: Code commenting

2013-09-12 Thread Joseph Cooney
TFS annotate? On 13 Sep 2013 14:47, wrote: > Anyone suggest a method to autmaticlly comment code when lines have > changed? Would be great to be able to see who changed what when viewing > the code. > > ** ** > > At the moment,, we write comments like //xxMOD 12AUG13 XX=PROGRAMMER > INITIA

RE: out of memory..urgent...Solution

2013-09-12 Thread anthonyatsmallbiz
If you are interested..memeory issue was resolved by doing the following. Public Shared Function byteArrayToString(ByVal b() As Byte) As String Dim ss As New System.Text.UTF8Encoding Dim sString As String Dim sb As New StringBuilder Dim cursor As Integer

Re: Code commenting

2013-09-12 Thread Craig van Nieuwkerk
A lot of source control systems give you that out of the box. I know Git and SVN both do with the BLAME command. I wouldn't want the comments scattered throughout the code. On Fri, Sep 13, 2013 at 2:45 PM, wrote: > Anyone suggest a method to autmaticlly comment code when lines have > changed?

RE: Code commenting

2013-09-12 Thread anthonyatsmallbiz
I like to comment code and remove some of them after a while. Anthony Melbourne StuffUps.learn from others, share with others! http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/ -- NOTI

Re: Code commenting

2013-09-12 Thread Preet Sangha
Anthony, you're asking about some form of automated tool and seriously you're not using the annotate function within TFS? On 13 September 2013 16:55, wrote: > I like to comment code and remove some of them after a while. > > ** ** > > Anthony > > Melbourne StuffUps…learn from othe

Re: Code commenting

2013-09-12 Thread Joseph Cooney
Annotate is the 'glass is half full' name for blame in TFS. On 13 Sep 2013 14:50, "Craig van Nieuwkerk" wrote: > A lot of source control systems give you that out of the box. I know Git > and SVN both do with the BLAME command. I wouldn't want the comments > scattered throughout the code. > > > O

Re: Code commenting

2013-09-12 Thread William Luu
With Visual Studio 2013 Ultimate/TFS2013 there's a new feature called CodeLens which will probably give you something similar to what you're after. See - http://msdn.microsoft.com/en-us/library/vstudio/dn269218(v=vs.120).aspx And - http://blogs.msdn.com/b/zainnab/archive/2013/07/09/visual-studio-2

Re: out of memory..urgent...Solution

2013-09-12 Thread mike smith
Are you doing something odd with generational garbage collection here? On Fri, Sep 13, 2013 at 2:46 PM, wrote: > If you are interested..memeory issue was resolved by doing the following…* > *** > > ** ** > > ** ** > > Public Shared Function byteArrayToString(ByVal b() As Byte) As String*** >

RE: out of memory..urgent...Solution

2013-09-12 Thread anthonyatsmallbiz
What do you mean? Anthony Melbourne StuffUps…learn from others, share with others! http://www.meetup.com/Melbourne-Ideas-Incubator-Stuffups-Failed-Startups/ -- NOTICE : The information contained in this electr

Re: Code commenting

2013-09-12 Thread mike smith
Blame is a useful tool, ofttimes though, I'd call it credit. For instance, you receive a crashdump from an old version, it shows you where the app crashed, and maybe you have a slight idea why. Use blame on a current version, look at changes around the crash line and you've got a lot of the info