SRETNA SEDMICA.

Slides:



Advertisements
Similar presentations
The Important Thing About By. The Important Thing About ******** The important thing about ***** is *****. It is true s/he can *****, *****, and *****.
Advertisements

For(int i = 1; i
Standard Algorithms Find the highest number. ! Your name and today’s date ! Find the maximum Dim numbers(20) As Integer.
True BASIC Ch. 8 Practice Questions. What is the output of this program? LET X = PRINT.
A) 80 b) 53 c) 13 d) x 2 = : 10 = 3, x 3 = 309.
1 Powers of Two: Trace Ex. Print powers of 2 that are  2 N. Increment i from 0 to N. Double v each time. int i = 0; int v = 1; while (i
VB – Event driven Programming Timers & Motion, Sub & Function Arif Zaman.
נוצר ע " י ד " ר ארקדי שטיינבוק Visual Basic for Application VBA כדוגמה VBA ב - WORD.
SAT Score Range Critical Reading: Mathematics: Writings: ACT Composite Score : ACT Score Range.
PROJEKTOVANJE I IZRADA VIŠEKANALNOG KONTROLERA ZA PROGRAMIBILNI LED IZVOR DIPLOMSKI RAD IZ FIZIČKE ELEKTRONIKE.
CS105 Lab 9 – Do-While-Loops Announcements MP2 released today! See website for several important announcements/deadlines CS 105 – Fall
$100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300 $400 $500 $100 $200 $300.
Visual Basic Games: Week 4 Recap Parallel structures Initialization Prepare for Memory Scoring Shuffling Homework: when ready, move on to next game/chapter.
Word Processor Version.2. Methods Visual Basic is –Object Oriented –Event Driven Objects –Properties –Methods.
A: A: double “4” A: “34” 4.
Introduction to Computing Dr. Nadeem A Khan. Lecture 9.
CheckBox i Option Button. Private Sub Command1_Click() Check1 = 1 If Check1 = 1 Then Text1.FontBold = True Else Text1.FontBold = False End If Check2 =
1 Dynamic Arrays ListBoxes, Dynamic Arrays, Dynamic Control Arrays ListBoxes are on pp and dynamic arrays are in Chapter 7 of Deitel, Deitel and.
COM148X1 Interactive Programming Lecture 8. Topics Today Review.
The Testing Process II1 Program Testing Programs must be tested carefully in order to ensure that they work as planned. Testing is not a casual thing.
Chapter 3 - Visual Basic Schneider. Private Sub cmdEvaluate_Click() Dim n As Single, root As Single n = 6.76 root = Sqr(n) picResults.Print root; Int(n);
Lesson 16 Sub Procedures Lesson 17 Functions
KAKO IZRADITI IGRU: Izrežite tabele, sličice, kartice, žetone. Ostavite 1mm bijelog ruba oko okvira. Nalijepite ih na karton u boji (hamer), jako lijepo.
NEPARAMETRIJSKI TESTOVI
Programi zasnovani na prozorima
Petlje WHILE – WEND.
4.1 Vizualni (grafički) HTML uređivači
Review Operation Bingo
Java Petlje i logika - 1.
CheckBox RadioButton RadioGroup
Naredbe ciklusa.
Programiranje u VB Uvod
Programiranje u VB Osnove
Petlje FOR - NEXT.
УБАЦИВАЊЕ ОКВИРА ЗА ДИЈАЛОГ И ТЕКСТ АПЛИКАЦИЈЕ
Kartica Insert.
Page Layout Podešavanje stranica.
InputBox i naredba IF.
MessageBox.
Obrada slike na računaru
Programski jezik C++ - Vježbe - 2. dio
Osnovni simboli jezika Pascal
Do While ... Loop struktura
MagistralA (bus) Milan Milovanovic I6.
TEST II razredi.
Home - Bullets & Numbering -
RAZVRSTAJTE SLIČICE U ODGOVARAJUĆE ĆELIJE!
Programiranje za Internet
KUPOVINA ONLINE.
Skup instrukcija procesora
SEMAFOR.
Naredbe u php-u.
SRETNA SEDMICA.
Programski jezik C++ - Vježbe - 5. dio
Programski jezik Python
CheckBox i Option Button
Programiranje - Naredbe za kontrolu toka programa – 1. dio
INPUT, PRINT P1 PMF Split.
Programiranje - Naredbe za kontrolu toka programa – 3. dio
Programski jezik C++ - Vježbe - 1. dio
10th International Conference on Live Maintenance
KUPOVINA ONLINE.
predavanja v.as.mr. Samir Lemeš
Ponavljanje Pisana provjera
INTERPOLACIJA PO DIJELOVIMA POLINOMIMA
Vježbenica 2: struktura grananja – 2.dio
Hour of Code Coding Jetpack Jumper Mateja Hržica, MSP.
Programski jezik C++ - Vježbe - 2. dio
Iracionalni brojevi
Too much text. This slide has too much text. This slide has too much text. This slide has too much text. This slide has too much text. This slide has too.
Presentation transcript:

SRETNA SEDMICA

Aligment – 2- Center BorderStye 1 – Fixed Single Height – 1000 Width – 1000 Font (po želji)

DUGME POKRENI Private Sub cmdSreca_Click() Image1.Visible = False Funkcija Rnd (random) daje slučajan decimalan broj između 0 i 1 Funkcija Int te brojeve pomnožene sa 10, zaokruži na najbliži cio broj. Private Sub cmdSreca_Click() Image1.Visible = False Label1.Caption = Int(Rnd * 10) Label2.Caption = Int(Rnd * 10) Label3.Caption = Int(Rnd * 10) If (Label1.Caption = 7) Or (Label2.Caption = 7) Or (Label3.Caption = 7) Then Image1.Visible = True Beep End If End Sub

Private Sub Form_Load() Randomize End Sub Ova komanda koristi sistemski sat na računaru, tako da se uvijek određuje slučajna početna vrijednost. Pomoću ove komande program će svaki put počinjati od drugih brojeva i neće postojati nikakvo pravilo izmjene brojeva.