Click here to Skip to main content
16,015,351 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: accessing the html content of a webpage in the ie browser from vb.net Pin
chiyankrishna3-Jul-07 22:02
chiyankrishna3-Jul-07 22:02 
Questionproblem with category attribute of properties Pin
anujose29-Jun-07 1:00
anujose29-Jun-07 1:00 
AnswerRe: problem with category attribute of properties Pin
originSH29-Jun-07 1:26
originSH29-Jun-07 1:26 
AnswerRe: problem with category attribute of properties Pin
olgoe29-Jun-07 1:27
olgoe29-Jun-07 1:27 
AnswerRe: problem with category attribute of properties Pin
Dave Kreskowiak29-Jun-07 4:03
mveDave Kreskowiak29-Jun-07 4:03 
Questioncan i get a event when i click on a cell of grid... Pin
koolprasad200329-Jun-07 0:54
professionalkoolprasad200329-Jun-07 0:54 
AnswerRe: can i get a event when i click on a cell of grid... Pin
Dave Kreskowiak29-Jun-07 4:01
mveDave Kreskowiak29-Jun-07 4:01 
QuestionComments in editor for self made classes Pin
Johan Hakkesteegt29-Jun-07 0:11
Johan Hakkesteegt29-Jun-07 0:11 
Hi all,

I am working on an application that is ever growing in functionality. I have started writing it a couple of years ago. To simplify coding, I have also created several small classes that allow me to manipulate strings and such, which I can then call from the rest of the code.
When calling a standard .NET class in the code editor, you usually get a short explanation of what a certain property does, when you leave it selected.

Can anyone tell me whether it is at all possible to mimic this with self made classes, and if yes, then how?

A simplified example:
Public Class DateString<br />
Inherits System.ComponentModel.Component<br />
Public Shared ReadOnly Property ToDayLong() As String<br />
Get<br />
Return LongNumber(Now.Day)<br />
End Get<br />
End Property<br />
Public Shared Function LongNumber(ByVal value As String) As String<br />
If Len(value) < 2 Then<br />
LongNumber = "0" & value<br />
Else<br />
LongNumber = value<br />
End If<br />
End Function<br />
End Class


Where / how should I write the explanation?

All suggestions appreciated.

Johan

My advice is free, and you may get what you paid for.

AnswerRe: Comments in editor for self made classes Pin
Christian Graus29-Jun-07 0:36
protectorChristian Graus29-Jun-07 0:36 
GeneralRe: Comments in editor for self made classes Pin
Johan Hakkesteegt29-Jun-07 1:06
Johan Hakkesteegt29-Jun-07 1:06 
AnswerRe: Comments in editor for self made classes Pin
Dileep_Vickey29-Jun-07 1:03
Dileep_Vickey29-Jun-07 1:03 
GeneralRe: Comments in editor for self made classes Pin
Johan Hakkesteegt29-Jun-07 1:13
Johan Hakkesteegt29-Jun-07 1:13 
AnswerRe: Comments in editor for self made classes Pin
Kevin McFarlane29-Jun-07 1:25
Kevin McFarlane29-Jun-07 1:25 
GeneralRe: Comments in editor for self made classes Pin
Johan Hakkesteegt29-Jun-07 2:02
Johan Hakkesteegt29-Jun-07 2:02 
GeneralRe: Comments in editor for self made classes Pin
Kevin McFarlane29-Jun-07 3:49
Kevin McFarlane29-Jun-07 3:49 
GeneralRe: Comments in editor for self made classes Pin
Johan Hakkesteegt1-Jul-07 19:58
Johan Hakkesteegt1-Jul-07 19:58 
Questionget file Extension Pin
Rupesh Kumar Swami28-Jun-07 23:26
Rupesh Kumar Swami28-Jun-07 23:26 
AnswerRe: get file Extension Pin
Sonia Gupta28-Jun-07 23:36
Sonia Gupta28-Jun-07 23:36 
GeneralRe: get file Extension Pin
Rupesh Kumar Swami28-Jun-07 23:45
Rupesh Kumar Swami28-Jun-07 23:45 
GeneralRe: get file Extension Pin
Sonia Gupta29-Jun-07 2:38
Sonia Gupta29-Jun-07 2:38 
QuestionWindow Services Pin
Navneet Hegde28-Jun-07 23:01
Navneet Hegde28-Jun-07 23:01 
AnswerRe: Window Services Pin
Sonia Gupta28-Jun-07 23:39
Sonia Gupta28-Jun-07 23:39 
GeneralRe: Window Services Pin
Navneet Hegde29-Jun-07 0:06
Navneet Hegde29-Jun-07 0:06 
GeneralRe: Window Services Pin
aamironline29-Jun-07 1:44
aamironline29-Jun-07 1:44 
GeneralRe: Window Services Pin
Navneet Hegde29-Jun-07 2:59
Navneet Hegde29-Jun-07 2:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.