|
-
Jan 15th, 2004, 06:35 PM
#1
-
Jan 15th, 2004, 06:37 PM
#2
-
Jan 15th, 2004, 07:10 PM
#3
Frenzied Member
In Build HTML Documentation Browse button does not work, and if 'Build' faces a problem, the progress bar remains at the position it was.
'Heading for the automatic overload'
Marillion, Brave, The Great Escape, 1994
'How will WE stand the FIRE TOMORROW?'
Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979
-
Jan 15th, 2004, 07:11 PM
#4
Originally posted by Lunatic3
In Build HTML Documentation Browse button does not work, and 'Build' faces a problem, the progress bar remains at the position it was.
umm yeah, only use the Import menu... other things dont work now. I'm just trying to make sure it can load a solution file
umm another problem that I found: I forgot to add support for Interfaces so it doesnt detect any interfaces right now... fixing that
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 15th, 2004, 10:41 PM
#5
Frenzied Member
If a soultion contains a setup project it just shows the name of the setup project and nothing else from that project. Is that by desing?
'Heading for the automatic overload'
Marillion, Brave, The Great Escape, 1994
'How will WE stand the FIRE TOMORROW?'
Eloy, Silent Cries and Mighty Echoes, The Vision - Burning, 1979
-
Jan 15th, 2004, 10:51 PM
#6
Originally posted by Lunatic3
If a soultion contains a setup project it just shows the name of the setup project and nothing else from that project. Is that by desing?
hmm I never even thought of a setup project hehe
If you have a setup project, in vs.net click on View/Class View. I tried it with a blank setup project and the classview is empty (makes sense because it doesnt have any objects in it I guess). My app is supposed to show the items as they would appear in the ClassView of the visual studio (at least similar to it).
My app detects the following items:
Solutions
Projects
Namespaces (doesnt work at the moment but detects them)
Classes
Modules
Structures
Variable Declarations
Properties
Subs/Functions
Events
Delegates
Enums (and the declarations inside it)
Interfaces (just added this, have to download the file again from the first post)
I guess none of the above is to be found in a setup project becuase setup projects dont have code (I think this is the case, right?)
anyways, is there anything else that I should add to that list? am I missing anything?
umm bunch of problems right now:
-doesnt add the namespaces correctly
-doesnt work with multiline definitions (if you have a "_" at the end of the line and you continue your code on another line)
Last edited by MrPolite; Jan 15th, 2004 at 10:56 PM.
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 16th, 2004, 02:15 PM
#7
works with namespaces now
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 16th, 2004, 03:27 PM
#8
It doesn't do Events or at least doesn't show the name in the treeview although the actual info does show in the form (on the right).
Correction it works fine if you declare the event like a method (i.e Public Event OnSomething(ByVal sender As Object, ByVal e As System.EventArgs)) but not if you declare the event as a delegate, the same way you would in C# (i.e. Public Event OnSomething As EventHandler).
-
Jan 16th, 2004, 03:28 PM
#9
Originally posted by Edneeis
It doesn't do Events or at least doesn't show the name in the treeview although the actual info does show in the form (on the right).
hmm can you give me the line of code for that/
and by even, you mean an event declaration (like Event someEvent?) or and event handler?
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 16th, 2004, 03:31 PM
#10
Here is what I mean:
-
Jan 16th, 2004, 03:33 PM
#11
Originally posted by Edneeis
Here is what I mean:
Thanks, that;s a result of my dumbness I didnt even know you can declare an event like that I'll try to fix it
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 16th, 2004, 03:35 PM
#12
aah btw I uploaded the wrong file (or for some reason the file didnt get updated when I edited the post ).. thsi is newer, lotsa things fixed... download this
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 16th, 2004, 03:38 PM
#13
It also doesn't show inherited items that are not overridden. Also the treeview will let you edit the text of the nodes, its not set to read-only.
Also I have a solution with over 40 classes in it, but I can't upload it. It has 3 projects the most 1 project has is about 25 classes. It loads fine though and I like the new one with the namespaces.
-
Jan 16th, 2004, 03:39 PM
#14
Originally posted by Edneeis
It also doesn't show inherited items that are not overridden. Also the treeview will let you edit the text of the nodes, its not set to read-only.
umm yeah I didnt make it readonly on purpose... in case you want to change/edit something
what do you mean by inherited items though?
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 16th, 2004, 03:47 PM
#15
For instance view this class:
VB Code:
Public Class ClickableToolbarButton
Inherits ToolBarButton
Private _ClickHandler As EventHandler
Public Property ClickHandler() As EventHandler
Get
Return _ClickHandler
End Get
Set(ByVal Value As EventHandler)
_ClickHandler = Value
End Set
End Property
Public Sub New()
MyBase.new()
End Sub
Public Sub New(ByVal text As String, ByVal clickHandler As EventHandler)
MyBase.new(text)
_ClickHandler = clickHandler
End Sub
End Class
It doesn't show any of the properties it inherits from the Toolbar class. Although in another class I inherit but override a lot of the methods and the ones I override do actually show up but the others don't.
-
Jan 16th, 2004, 03:48 PM
#16
-
Jan 16th, 2004, 03:55 PM
#17
Are you just parsing the text to get the info? Or are you using the CodeDom object?
If the items were already compiled you could use reflection to get the info easily enough.
-
Jan 16th, 2004, 05:57 PM
#18
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 16th, 2004, 06:35 PM
#19
I've only seen the CodeDom used in add-ins and macros but it works kind of like the XMLDom. You can AddMethods via a method and it writes the method for you sort of. Actually I don't know much about it, see I'm just as dumb as you are.
Actually reading some of the help file article 'Using the CodeDOM' it seems that the CodeDOM is used to create the code not to convert code into an object model.
-
Jan 17th, 2004, 01:01 AM
#20
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!!
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
|