• Be sure to join the discussion on our discord at: Discord.gg/serebii
  • If you're still waiting for the e-mail, be sure to check your junk/spam e-mail folders

Programmers

J

jamez

Guest
does any one here know C++ or visual basic or html coz i can do html and vb does any one want to join my programming team?
 

Kal-El

Mush! Mush!
jamez said:
does any one here know C++ or visual basic or html coz i can do html and vb does any one want to join my programming team?
I know all threee but not thoroughly.
 

Kal-El

Mush! Mush!
jamez said:
What type programs do you make Latios and Giga Hertz??
Well so far I'm still learning (Lots I to learn, I have, hm?) but I just make whatever the books tell me to. :p Best thing I've made is either a word count with save options or the Celsius/Farenheit Converter.
 

Kal-El

Mush! Mush!
Am I allowed to copy it into my compiler to work out what it does? :p

Well going by the comments, sounds like it works out prime numbers. :p
 
J

jamez

Guest
sorry abou tmy last description i was kinda think about something else here is my reviesed description

"latios can you please make some code that makes the 3 digits change and 6 numbers stay when i click randomize it randomly chooses the last 3 numbers could you code it for vb"

Latios said:
C isn't a graphical programming language like Visual Basic is. So there's no such thing as "click". And what you've described doesn't make sense.

And if you're asking about VB, sorry, I forgot most of how that worked.
 

Kal-El

Mush! Mush!
Latios said:
No, I forgot how to code in Visual Basic. Unless you could tell me how to print out a statement in a text box.
OH I KNOW THAT ONE! I think. Give me about ten minutes.

EDIT:
Private Sub cmdDisplay_Click() 'Assuming that the command is called cmdDisplay
txt*.Text = "Whatever you want here" 'Replace * with what the text box is called
End Sub

That help?
 
Last edited:
J

jamez

Guest
Help

Giga Hertz can you please make some code that makes the 3 digits change and 6 numbers stay when i click randomize it randomly chooses the last 3 numbers could you code it for vb
 
J

jamez

Guest
Latios said:
Jamez, you're still not making any sense. You want three numbers to change and six to stay the same?

And I have a grave feeling you're doing this so someone else can do your homework.


yes i want 3 to stay the same and six to change, and i just want the code or the vb file because i want a random number generator and i want it to be so that it generates 3 random numbers and six or what ever number you want stays the same i want to see how you coded it because i know a bit of vb but im having problems making a ramdom number generator were 3 changed and 6 or so stay the same
 
Surprisingly I practice C++ but haven't worked with Vb and I don't have it, roughly...

I have Visual Basic on AutoCAD, but don't know if it's the same (I'm worried it has some modules programmed in already)

Anyways, I thought Latios may know if they're they same or not, if so, I think I can work it out using the VB in AutoCAD.


[EDIT]

Right, manage to work out how VB works ¬_¬; Took me a while...

Right, I assume that it works the same way as the VB in AutoCAD, using the UserForms.


Create 6 Textboxes - these will contain the 6 numbers that you enter and don't change through randomization.
Create 3 Labels - these will contain the 3 numbers that will be randomize, hence can not be changed by user.
Create 1 Button - as you mentioned, you want a button for Randomization (I've made my buttonID Randomizer)

HTML:
Private Sub Randomizer_Click()

Dim Number(3) As Integer


For Count = 1 To 3

Number(Count) = Rnd(9) * 10

Next Count

R1(Caption) = Number(1)
R2(Caption) = Number(2)
R3(Caption) = Number(3)

End Sub


This is bad health for my programming routines o_O o_O

But cool \(^.^)/ now I can program new macros or new tools into AutoCAD XD


Oh yeah, out of curiosity, it can't be that simple that you randomly want a 9 digit randomizer. So, what exactly are you doing? Something to do with Key/ID Numbers? I'm interested in programming as well : P
 
Last edited:
J

jamez

Guest
dont worry forget my last request i coded it my self, Mods Please DELETE OR CLOSE THIS TOPIC
 
Top