Once you have got realized that fashion design is that the career you would like to follow, however does one go finding the education you need? Choosing a fashion designing course is not less of a choice than somebody selecting out a college for engineering or a business degree. You would like to place in the time and effort to analysis the various fashion design school offerings and reputations. Finding the fashion designing college in Delhi for you is that the final goal.
When you are trying into different faculties, you, like everybody else want to additional their education, must take into thought the reputation of the fashion designing institute, its cost, size and what the institute offers. Like any search for a college you'll got to do the following: Decide what area of the fashion design field you would like to figure in; then find faculties that focus on that field. Make a list of things to look for like as cost, location, programs, degree level, and placement. Place along a listing of faculties for consideration; then establish everything possible about every of those schools Apply to the faculties you have got selected, along with any grants or scholarship programs you have got found. Visit the faculties if possible to get a feel of the college and its teachers. Once receiving response from applications start the elimination method to slender down the field, arriving at your final selection of fashion designing college.
Getting Into Fashion Design Institute
Get into a fashion designing courses in Delhi take about the much work as going in any college of higher learning and specialty. You would like to indicate the admissions people that you at least know the basic and have a concept about the field you propose to work in is about.
Drawing you'll got to have the ability to sketch out your ideas and concepts before ever getting to the finished product. Your portfolio can show your drawings and your ability to flesh out your ideas. Any fashion design college can want to examine a copy of your best work. Sewing you would like to show the institute samples of completed work (clothes you made yourself). This means that you just must learn stitching. Mentors and references while you are do not like famous person designers for references, it will facilitate in case to own names of fashion designers that you worked with or under before you get to the institute. This tells the admissions people who you know what the life of a designer is like. Grades unfortunately, fashion designing college is like any other college. If you don't have the grades at a suitable level, no quantity of creative thinking or ability to stitch and draw will assist you.
When you finally get to the fashion designing institute of your selection you'll find that you just learn several things. Yes, you'll learn the basics of fashion design, but there are new tools and ideas that have come into the fashion design world. Such things as marketing and fashion design software are among them.
http://www.articlesbase.com/college-and-university-articles/picking-a-fashion-designing-college-in-delhi-7038511.html
Home » All post
Cara membuat program login di visual basic 6
CARA MEMBUAT PROGRAM LOGIN DI VISUAL BASIC 6 - Log masuk (login, juga biasa disebut sebagai log in, log on, logon, signon, sign on, signin, sign in) adalah proses untuk mengakses komputer dengan memasukkan identitas dariakun pengguna dan kata sandi guna mendapatkan hak akses menggunakan sumber daya komputer tujuan.
Untuk melakukan log masuk ke sistem biasanya membutuhkan:
- Akun pengguna; digunakan sebagai identitas berupa runtutan karakter yang secara unik merujuk ke pengguna tertentu.
- Kata sandi; runtutan karakter berupa kunci yang dijaga kerahasiaannya terhadap orang lain.
Kedua pasang runtutan karakter itu harus tepat dan keduanya adalah pasangan yang tidak bisa dipisahkan. Kata sandi dapat berubah sesuai dengan kebutuhan, sedangkan akun pengguna tidak pernah diubah karena berupa identitas unik yang merujuk ke pengguna tertentu.
Proses ini akan membuat sesi pada mesin tujuan untuk pengguna yang melakukan log masuk. Dalam kasus pengaksesan situs Internet, situs acapkali meletakkan kuki pada komputer pengguna.
Log keluar (logout, juga biasa disebut sebagai log out, log off, logoff, signoff, sign off, signout, sign out) digunakan untuk mengakhiri sesi.
Silahkan ikuti langkah-langkah dibawah ini :
- Silahkan buat database menggunakan Ms.Acces.
Dengan nama dbcoba.mdb
Tabel User : kodeuser, namauser, passworduser - Kemudian buka Visual Basic anda.
- Silahkan buat form login seperti gambar diatasUser Id menggunakan Text1Password menggunakan Text2Login menggunakan Command1Cancel Menggunakan Command2
- Setelah membuat form seperti yang saya instuksikan diatas, silahkan anda copy coding di bawah ini :
- Jangan lupa membuat coding Modules seperti dibawah ini :
Sub Form_Load()
Call BukaDB
Text1.MaxLength = 6
Text2.MaxLength = 10
Text2.PasswordChar = "X"
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
If KeyAscii = 13 Then
Call BukaDB
Call CariData
If RSuser.EOF Then
MsgBox "User Tidak Terdeteksi, Coba lagi"
Text1 = ""
Else
Text2.SetFocus
End If
End If
End Sub
Private Sub Text2_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
If KeyAscii = 13 Then
Command1.SetFocus
End If
End Sub
Function CariData()
Call BukaDB
RSuser.Open "Select * From admin where kodeuser='" & Text1 & "'", koneksi
End Function
Private Sub Command1_Click()
Call BukaDB
RSuser.Open "Select * from admin where kodeuser ='" & Text1 & "' and passworduser='" & Text2 & "'", koneksi
If RSuser.EOF Then
MsgBox "Password Salah, Coba Lagi!"
Text2 = ""
Text2.SetFocus
Else
Unload Me
menu.Show
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Call BukaDB
Text1.MaxLength = 6
Text2.MaxLength = 10
Text2.PasswordChar = "X"
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
If KeyAscii = 13 Then
Call BukaDB
Call CariData
If RSuser.EOF Then
MsgBox "User Tidak Terdeteksi, Coba lagi"
Text1 = ""
Else
Text2.SetFocus
End If
End If
End Sub
Private Sub Text2_KeyPress(KeyAscii As Integer)
KeyAscii = Asc(UCase(Chr(KeyAscii)))
If KeyAscii = 13 Then
Command1.SetFocus
End If
End Sub
Function CariData()
Call BukaDB
RSuser.Open "Select * From admin where kodeuser='" & Text1 & "'", koneksi
End Function
Private Sub Command1_Click()
Call BukaDB
RSuser.Open "Select * from admin where kodeuser ='" & Text1 & "' and passworduser='" & Text2 & "'", koneksi
If RSuser.EOF Then
MsgBox "Password Salah, Coba Lagi!"
Text2 = ""
Text2.SetFocus
Else
Unload Me
menu.Show
End If
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Public koneksi As New ADODB.Connection
Public RSuser As ADODB.Recordset
Public Sub BukaDB()
Set koneksi = New ADODB.Connection
Set RSuser = New ADODB.Recordset
koneksi.Open "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\dbvainit.mdb"
End Sub
Public RSuser As ADODB.Recordset
Public Sub BukaDB()
Set koneksi = New ADODB.Connection
Set RSuser = New ADODB.Recordset
koneksi.Open "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\dbvainit.mdb"
End Sub
Semoga Bermanfaat.
Posted by AKAR
at 9:20 PM,
Add Comment
More >>>
English Camps for Schools in Thailand
There are a ton of different areas where you can learn a different language. One language that is arguably dominating the world is English. You almost have to know English in order to be successful outside of your country. As English grows more and more, you will need to be able to compete with other companies that can speak English and do so effectively. In Thailand, there are quite a few places that you can go to in order to learn English. They have English camps set up around the country where they teach you this language and the practice in the business world. There are English camp, math camp, and various other places where they teach English for Thai Teachers and anyone else that may need them.
There is a English for ASEAN community where it is a program that's designed to target the south eastern Asian communities and teach them to speak English. The population is so huge, they have their own division so that these people within these communities can learn English and be better prepared to apply those to their day-to-day life. With this program, in the English for ASEAN dynamic, it allows them to speak the language confidently and coherently, thus putting them at an advantage over any other people.
The English camp and math camp allows people to develop for today's lifestyle. The instructors are all highly qualified and can teach a higher quality of English that can be applied to a lot of different facets of life. Not only to students but also they are also able to teach English for Thai Teachers so that these teachers also will have the tools to then teach their students when ESL Education can not be present. If they are able to do it themselves in an effective manner, then that is just more people that can be taught English. The more that learn, the more there are to teach.
Whenever you need a new program or business model to get your foot out the global door, be sure to turn towards ESL Education. They have been around for a while and have a lot of good feedback from the people that have used their services before, whether in-house or overseas. From the fun games they play to teach the kids, to the efficient information for the adults, you will never go wrong using ESL Education for your business goals.
http://www.articlesbase.com/languages-articles/english-camps-for-schools-in-thailand-7038501.html
There is a English for ASEAN community where it is a program that's designed to target the south eastern Asian communities and teach them to speak English. The population is so huge, they have their own division so that these people within these communities can learn English and be better prepared to apply those to their day-to-day life. With this program, in the English for ASEAN dynamic, it allows them to speak the language confidently and coherently, thus putting them at an advantage over any other people.
The English camp and math camp allows people to develop for today's lifestyle. The instructors are all highly qualified and can teach a higher quality of English that can be applied to a lot of different facets of life. Not only to students but also they are also able to teach English for Thai Teachers so that these teachers also will have the tools to then teach their students when ESL Education can not be present. If they are able to do it themselves in an effective manner, then that is just more people that can be taught English. The more that learn, the more there are to teach.
Whenever you need a new program or business model to get your foot out the global door, be sure to turn towards ESL Education. They have been around for a while and have a lot of good feedback from the people that have used their services before, whether in-house or overseas. From the fun games they play to teach the kids, to the efficient information for the adults, you will never go wrong using ESL Education for your business goals.
http://www.articlesbase.com/languages-articles/english-camps-for-schools-in-thailand-7038501.html
Posted by AKAR
at 9:12 PM,
Add Comment
More >>>
3 Helpful Tips for Planning Abroad Studies
Studying abroad gives you a chance to widen your scope when it comes to employment. Nowadays, students prefer going abroad and get specialized educational certifications. It is recommended that do your research well before you enroll for any studies abroad. Maximum students though apply for courses abroad without considerable research about the procedure. They end up doing bogus courses that cost them too much money without being of any benefit to them.
Here are some tips that would help you in planning abroad studies:
Research online:
There are various websites that provides thorough knowledge and understanding about the contemporary career courses. You just need to utilize some time on researching the one which you desire to opt. Before you take admission for any of course get all the required information like duration, credentials, total expenditure etc.
Consider all the costs:
Once you consider the best suited course for you it's time to analyze the total expenditure for that particular course. These courses are expensive as well as it includes your travel, stay, food & other personal expenses. Also, see if you have the financial ability to pay for it. Prices will always vary with where you go. Ask about all the fees comprising applications, coaching, housing, additional fees and transport fees. Make a budget of all the fees you necessitate and see if you can be able to meet them before you apply.
Try to minimize cost:
At times you may be lucky to have some of the costs cut down if you follow some protocols. Many of the institutes provide scholarships to few candidates. You can check whether you are eligible for it & take benefit. Also, check if tuitions are required for that particular course. If you don't require then it reduces cost. Similarly, if you have any relatives or friends nearby that particular location then you may save your housing expense.
It is recommended that never plan your studies in abroad before you research thoroughly. Instead of spending unwanted money and end up regretting for the same; you should always prefer a considerable research. If you really want fruitful outcome and quality education do follow these protocols. By getting all the required information for abroad studies you can look forward better results that would definitely help you in career progression. Therefore, wisely chose the best suited career course for you and achieve your career goals with foreign credentials.
All the Best!
http://www.articlesbase.com/international-studies-articles/3-helpful-tips-for-planning-abroad-studies-7038275.html
Here are some tips that would help you in planning abroad studies:
Research online:
There are various websites that provides thorough knowledge and understanding about the contemporary career courses. You just need to utilize some time on researching the one which you desire to opt. Before you take admission for any of course get all the required information like duration, credentials, total expenditure etc.
Consider all the costs:
Once you consider the best suited course for you it's time to analyze the total expenditure for that particular course. These courses are expensive as well as it includes your travel, stay, food & other personal expenses. Also, see if you have the financial ability to pay for it. Prices will always vary with where you go. Ask about all the fees comprising applications, coaching, housing, additional fees and transport fees. Make a budget of all the fees you necessitate and see if you can be able to meet them before you apply.
Try to minimize cost:
At times you may be lucky to have some of the costs cut down if you follow some protocols. Many of the institutes provide scholarships to few candidates. You can check whether you are eligible for it & take benefit. Also, check if tuitions are required for that particular course. If you don't require then it reduces cost. Similarly, if you have any relatives or friends nearby that particular location then you may save your housing expense.
It is recommended that never plan your studies in abroad before you research thoroughly. Instead of spending unwanted money and end up regretting for the same; you should always prefer a considerable research. If you really want fruitful outcome and quality education do follow these protocols. By getting all the required information for abroad studies you can look forward better results that would definitely help you in career progression. Therefore, wisely chose the best suited career course for you and achieve your career goals with foreign credentials.
All the Best!
http://www.articlesbase.com/international-studies-articles/3-helpful-tips-for-planning-abroad-studies-7038275.html
Posted by AKAR
at 9:17 PM,
Add Comment
More >>>
Subscribe to:
Posts (Atom)