Click here to Skip to main content
15,910,358 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How to associate a cursor with my App Pin
Anonymous28-Aug-03 2:28
Anonymous28-Aug-03 2:28 
GeneralRe: How to associate a cursor with my App Pin
Hesham Amin28-Aug-03 4:12
Hesham Amin28-Aug-03 4:12 
Generalneed good books for GUI design Pin
Anonymous26-Aug-03 14:54
Anonymous26-Aug-03 14:54 
GeneralRe: need good books for GUI design Pin
Ray Cassick26-Aug-03 16:42
Ray Cassick26-Aug-03 16:42 
GeneralRe: need good books for GUI design Pin
J. Dunlap26-Aug-03 16:56
J. Dunlap26-Aug-03 16:56 
Generaltrouble with msbind.dll Pin
Marcel Härry26-Aug-03 14:12
Marcel Härry26-Aug-03 14:12 
GeneralTranslation needed Pin
oliver_twistor26-Aug-03 11:24
oliver_twistor26-Aug-03 11:24 
GeneralRe: Translation needed Pin
Ian Darling27-Aug-03 0:01
Ian Darling27-Aug-03 0:01 
(Untested and VB.NET, so replace Integer with Long in VB6)

Function Factorial(ByVal n As Integer) As Integer

  ' AFAIK, you can actually do this as <= 1 instead
  If n <= 0 then
    return 1
  else
    return n * Factorial(n - 1)
  end if

End Function


You might want to read up on recursive functions, as that is all this is.

--
Ian Darling
If I was any more loopy, I'd be infinite.
GeneralRe: Translation needed Pin
oliver_twistor27-Aug-03 4:03
oliver_twistor27-Aug-03 4:03 
GeneralRe: Translation needed Pin
Ian Darling27-Aug-03 4:27
Ian Darling27-Aug-03 4:27 
GeneralRe: Translation needed Pin
oliver_twistor27-Aug-03 22:31
oliver_twistor27-Aug-03 22:31 
GeneralAbout Shaped forms in vb.NET Pin
Romein25-Aug-03 22:52
Romein25-Aug-03 22:52 
GeneralRe: About Shaped forms in vb.NET Pin
Johannes Hansen27-Aug-03 16:49
Johannes Hansen27-Aug-03 16:49 
GeneralRe: About Shaped forms in vb.NET Pin
fume27-Aug-03 20:41
fume27-Aug-03 20:41 
GeneralRe: About Shaped forms in vb.NET Pin
Romein27-Aug-03 22:01
Romein27-Aug-03 22:01 
GeneralRe: About Shaped forms in vb.NET Pin
Johannes Hansen29-Aug-03 3:50
Johannes Hansen29-Aug-03 3:50 
Generalneed simple text editor Pin
iaustin25-Aug-03 14:57
iaustin25-Aug-03 14:57 
GeneralRe: need simple text editor Pin
RichardGrimmer1-Sep-03 4:58
RichardGrimmer1-Sep-03 4:58 
QuestionAnchoring Datagrid? Pin
Anonymous25-Aug-03 7:02
Anonymous25-Aug-03 7:02 
AnswerRe: Anchoring Datagrid? Pin
Ray Cassick27-Aug-03 4:37
Ray Cassick27-Aug-03 4:37 
GeneralInvert RBG into a color variable in vb.NET Pin
Romein25-Aug-03 3:18
Romein25-Aug-03 3:18 
GeneralRe: Invert RBG into a color variable in vb.NET Pin
Roger Alsing25-Aug-03 3:37
Roger Alsing25-Aug-03 3:37 
GeneralYhea exactly!!! 10anx alot! Pin
Romein25-Aug-03 5:01
Romein25-Aug-03 5:01 
GeneralData Binding Problem. Pin
Martin Cross24-Aug-03 11:07
Martin Cross24-Aug-03 11:07 
GeneralRe: Data Binding Problem. Pin
Martin Cross25-Aug-03 22:38
Martin Cross25-Aug-03 22:38 

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.