|
-
Mar 12th, 2004, 10:19 PM
#1
-
Mar 12th, 2004, 10:21 PM
#2
-
Mar 12th, 2004, 10:22 PM
#3
Addicted Member
i already got it from the other thread but thanks again 
wow thanks for the source
[vbcode]
Me.Hide()
[/vbcode]
-
Mar 12th, 2004, 10:25 PM
#4
Originally posted by nahya^^
i already got it from the other thread but thanks again 
wow thanks for the source
hehe np, umm the source is a bit messy, especially the main function that loads the solution
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Mar 12th, 2004, 10:50 PM
#5
Sleep mode
MrPolite , why don't you post the this tool in the VBForums UtilityBank !!
-
Mar 12th, 2004, 11:00 PM
#6
Originally posted by Pirate
MrPolite , why don't you post the this tool in the VBForums UtilityBank !!
umm ok
in my opinon no ones checks those forums out though, at least I don't
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Mar 12th, 2004, 11:14 PM
#7
PowerPoster
The C# section has some errors when identifying comments.
You can have a comment section like this (IDE does this for you):
/*
*
*
*
*/
Also, you can have (which is basically the same as above):
/*
ANY THING CAN GO HERE.
*/
I know you are doing this for yourself, but just thought I would state that in case someone else is using it as a accurate solution.
-
Mar 13th, 2004, 12:51 AM
#8
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Mar 13th, 2004, 12:58 AM
#9
changed it to this, it should work fine now, I guess:
VB Code:
While sr.Peek <> -1
aLine = sr.ReadLine().Trim()
If aLine.Length = 0 Then
codeInfo.EmptiesCount += 1
ElseIf aLine.StartsWith("/*") Then
While sr.Peek <> -1
codeInfo.CommentCount += 1
If aLine.IndexOf("*/") <> -1 Then
Exit While
End If
aLine = sr.ReadLine
End While
ElseIf aLine.StartsWith("//") Then
codeInfo.CommentCount += 1
Else
codeInfo.CodeCount += 1
End If
End While
I'd appreciate some more testers
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Mar 13th, 2004, 10:07 AM
#10
PowerPoster
Looks like it will work.
I didn't get to spend a lot of time looking through, I just wanted to see what you were doing about comments in the code vs. whitespace vs actual code. It looked good from what I seen. I am sure if lots of time were spent on it, it could be refactored a tad, but it works, and I am all about if it works, it is good.
There was another thought about counting C# (and VB for that matter). What about this:
PHP Code:
myVariable = myVariable + "blahblah" +
"Somemore string text, etc";
Is that counted as two lines of code? Should be one (at least from my perspective. Same could be said for VB like so:
VB Code:
myVariable = myVariable & "blahblah" & _
"Somemore string text, etc"
Don't take this as criticism, I am perfectly happy with what you provided us. I was just thinking about what has to be done to get a completely accurate count. I am not knocking your app, it works quite well, just a couple cases that it could produce different results. Even the one above is a controversal one. I mean, someone could call it two lines, I call it one. All in how you look at it I guess....lol.
Thanks for the app, I like it.
-
Mar 13th, 2004, 05:14 PM
#11
-
Mar 13th, 2004, 07:25 PM
#12
yay gay
You could add it as plugin for VS.NET. You could press a menu or whatever that would run your program with the project name as argument.
\m/  \m/
-
Mar 13th, 2004, 07:25 PM
#13
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Mar 14th, 2004, 05:09 AM
#14
Sleep mode
As more ideas , you could add this as add-ins and integrates it with VS.NET IDE .
-
Mar 14th, 2004, 01:52 PM
#15
MrPolite, whats the deal with the sexy looking titlebar on that screenshot?
Is that effect your own work or is it something I've missed out on completely:
I don't live here any more.
-
Mar 14th, 2004, 01:53 PM
#16
New Project...Other Projects...VS.net Add-in Project.
I think you need the Pro version though.
I don't live here any more.
-
Mar 14th, 2004, 02:00 PM
#17
Addicted Member
Originally posted by wossname
MrPolite, whats the deal with the sexy looking titlebar on that screenshot?
Is that effect your own work or is it something I've missed out on completely:
it's a windows theme from XPStyles. BlueColor.
EDIT:
actually... something like that is from mandrake linux. trillian uses the same style as mrpolite's theme. not sure whether they're derived from the mandrake linux theme. that one's better, imo.
[vbcode]
Me.Hide()
[/vbcode]
-
Mar 14th, 2004, 02:29 PM
#18
-
Mar 16th, 2004, 04:34 PM
#19
rate my posts if they help ya!
Extract thumbnail without reading the whole image file: (C# - VB)
Apply texture to bitmaps: (C# - VB)
Extended console library: (VB)
Save JPEG with a certain quality (image compression): (C# - VB )
VB.NET to C# conversion tips!!
-
Jan 11th, 2006, 02:13 PM
#20
yay gay
Re: updated-March 16-Line counter program... if you want
it doesn't load up my vs 2005 solutions
FIX IT!
\m/  \m/
-
Jan 11th, 2006, 02:33 PM
#21
Re: updated-March 16-Line counter program... if you want
[wayne-campbell]Yeah, get the .net (2005). Are you mental?[/wayne-campbell]
I don't live here any more.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|