How to use VS2005 Documentation

  • Thread starter Thread starter XJ
  • Start date Start date
X

XJ

yes, VS2005 documentation is a very powerful and complete
documentation, but some how when i try to use "example" , the i stuck
there, that is no any "help" to tell "how" the user going to handle the

sample code (add-on to our existing program), is create a class then
copy everything and dump it ??? or just try to understand the long huge

code line by line ?

pls give some advise, it may a most simple question, but i cant find
the answer in google groups / MSDN .
 
Hello XJ,

Can u explain problem more wide? Can't understand your problem

X> yes, VS2005 documentation is a very powerful and complete
X> documentation, but some how when i try to use "example" , the i stuck
X> there, that is no any "help" to tell "how" the user going to handle
X> the
X>
X> sample code (add-on to our existing program), is create a class then
X> copy everything and dump it ??? or just try to understand the long
X> huge
X>
X> code line by line ?
X>
X> pls give some advise, it may a most simple question, but i cant find
X> the answer in google groups / MSDN .
X>
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsch
 
Hi Michael,
very happy to get ur response, the problem i face is dont know
HOW to test or run the "sample code" ( is create a empty class then
copy all the coding and paste it and runt it ??).

pls give advise , many thanks
 
Hello XJ,

Do you have VS 2005/.NET SDK where you can build samples? Or you just has
MSDN? You need .net compiler to build and run samples

X> Hi Michael,
X> very happy to get ur response, the problem i face is dont know
X> HOW to test or run the "sample code" ( is create a empty class then
X> copy all the coding and paste it and runt it ??).
X>
X> pls give advise , many thanks
X>
---
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsch
 
Ya, ofcouse i have MSDN, but when after i clicked the example, then
will show the code below ( button help ), then what should i run the
sample ? copy all the code into a new class ? or i need to create a new
form, then copy the code into the form ? this is my doubt, do u catch
me ? many thanks for ur reply ,..

Private Sub InitializeMyButton()
' Create and initialize a Button.
Dim button1 As New Button()

' Set the button to return a value of OK when clicked.
button1.DialogResult = DialogResult.OK

' Add the button to the form.
Controls.Add(button1)
End Sub 'InitializeMyButton
 
Back
Top