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

Visual Basic

 
AnswerRe: How to associate a cursor with my App Pin
Hesham Amin27-Aug-03 22:00
Hesham Amin27-Aug-03 22:00 
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 
I have tried to figure something out that I want to write in code, but I couldn't find the solution. Until now. I found the following piece of code on the Internet today. Unfortunately, it is in the language of C (I think so), a language that I don't know anything about. So, I would be very grateful if anyone could translate it to Visual Basic code.

<br />
#include iostream.h<br />
<br />
//Fakultetsfunktion<br />
int fak(int n);<br />
<br />
void main()<br />
{<br />
   int x=5;<br />
<br />
   cout<< x << "!=" << endl;<br />
   cout<< fak(x) << endl;<br />
   cout<< 5*4*3*2*1 << endl;<br />
}<br />
<br />
//Rekursiv fakultetsfunktion<br />
int fak(int n)<br />
{<br />
   if (n<=0)<br />
      return 1;<br />
<br />
   else<br />
   {<br />
      int a = n*fak( n-1 );<br />
      return (a);<br />
   }<br />
}<br />


//OT
GeneralRe: Translation needed Pin
Ian Darling27-Aug-03 0:01
Ian Darling27-Aug-03 0:01 
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 

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.