Posts

Showing posts from March, 2009

Difficult to write, No problem!

Image
Hello everybody, being a student and also as worker sometimes make us tired. In another side we have to be good students to finish our task or homework and another side we have to also be good worker that make our company get good advantage from us. In the last time, I was so difficult to do both of them, the fact is I just can do a part of my task from my lecturer and make the job priority. Moreover these days, so many major of educational majors are in school or universities. For the ones who gets will to be a great student and still can do the jobs, perhaps why don’t we ask for the third party that give service to help us in writing. But, the most important ways is to find believe writer that can help us do our writing well, give one hundred percents authenticity guarantee, and more over the third party is have to get expert team who conduct our task. Well, the greatest writer also provides us direct upload and download for our files, 24 hours in a week to get help, we can also get

Choose Network DBMS!

Image
Well, it's not to say that we must choose Database management system like SQL Server, MySQL or Oracle and not use Local DBMS anymore like using Access, Paradox, etc. For some university students who are studying in Informatics University these days should write some application programs using Network DBMS and not allowed to use Local DBMS anymore. For some programmer who use visual basic 6.0 usually they make application program combined with SQL Server 2000. And for some Delphi programmers they are also use SQL Server or Oracle for database. So, it's still fair enough, if we still make application program and combined with Local DBMS like Visual basic 6.0 and Microsoft Access, and Delphi Program with Paradox. But these days, we realize, programming era goes to Open source programming, like using Java or Visual basic.Net, C++.Net and others, So, are we ready?

How to make database in SQL Server 2000

Image
Well, we must have known about Database Management System of SQL Server 2000, right. Yup, the DBMS manufactured by Microsoft and for some programmers these days who use software from Microsoft, Borland and other be enjoy using this DBMS. In this section, we will learn on how to make database in SQL Server 2000 with query Analizer, why Query analizer, we hope by studying T-SQL we can be familiar to other similar DBMS like MySQL and Oracle, here we are : Firstly, log on to MS-SQL Server --> Query Analizer, in GUI of Query analizer, firstly we can find six default DBMS like Master, Nortwind and others : 2. Create database try_DB , it means after you write create database database_name, press F5 yo execute 3. Use try_DB . Then, for instance, we are going to make table of Student, so we make code bellow : Create table Student( Id_number char(7) primary key, Name varchar(35) not null, faculty varchar(35), Department varchar(30), Mail varchar(50)) Well, the last, how to appear on window, h

Selection in Visual basic.Net

Image
H ello everybody, I am back to try to make application in Visual Basic.Net With If..Then..Else Selection. Well, Actually in visual Basic.Net there are so many kinds of Selection like If..Then..ELse, If..Then..ElseIf,Iif, and Select..Case. But for this occasion, we will make an application using If..Then..Else selection, here we are 1. Design the form like at picture above 2. Set the properties like in the previous program, for example for textbox1 named by txtName, for button of Hitung named by btnHitung, etc. 3. type the source code bellow : Public Class Form1 Inherits System.Windows.Forms.FormConst jamNormal = 40 Const upahLembur = 10000 Dim nik As String Dim nama As String Dim gol As Char Dim jjk As Integer Dim upahPerJam As Double Dim lembur As Double Dim upahTotal As Double #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any

Buble Sort Program in Pascal

Image
H ello, every one we know Pascal, right. Yup for some programmers or the ones who study in Informatics majors, of course we know about this software development, even with Delphi these days, we can make our program be easy with grafical user interface. In this section, we can try to make Bublle sort program, all we have to do is easy, just write source code bellow in Pascal for window or even in Delphi using Console application, here we are.. program bubble_sort_Ngesort; uses wincrt; type data=array[1..100] of integer; procedure masukan(var x:data;n:integer); var i:integer; begin for i:=1 to n do begin write('Masukkan data ke ',i,' = ');readln(x[i]); end; end; procedure bubblesort(var x:data;n:integer); var i,j:integer;t:byte; begin for i:=1 to n-1 do for j:=1 to n-1 do if x[j]>x[j+1] then begin t:=x[j]; x[j]:=x[j+1]; x[j+1]:=t; end; end; procedure tampil(x:data;n:integer); var i:integer; begin for i :=1 to n do writeln(x[i]); end; var y:data;m:integer; begin clrscr;

To know about Visual Studio.Net 2003

Image
Well, These days some programmings will change from procedural to Object oriented. we know in the last time Microsoft with Visual Basic 6.0 is currently good in let's say database programming, beside that some programmers also enjoy using Delphi like Delphi 5, Delphi 6 or Delphi 7.0. But this days some programmers and also some learners change their mind to learn Object oriented programming, like using Java, or we can use Visual Basic.Net 2003. From the name, Microsoft visual Studio 2003 contents some software development such as Visual basic.Net, C++.Net, C#.Net, J#.Net. So what is Visual basic.Net? Exactly in this development tools use Frameworks.Net and Class Library Runtime. In Visual Basic 2003, we know that it looks like prior visual basic 6.0 in design, so if we design form in Visual basic.net 2003, you have to manage some components, let's say if we put textbox in form, we have to delete default text. How about codding! well I think the codding is absolutely Object, we

ITB open New Students for Master's Program

Image
In this year of 2009, Institute Bandung of Technology open registration for New university students. so many majors open for new univ students like Math, Informatics, Industrial techniques and so on. Usually ITB named for Institute Bandung of Technology open from January 2009 until about July 2009. In the last time the testing for studying ITB are just passing International TOEFL about 475 and like some other lessons like computer systems, Math, for Entrance test of Informatics. But, form last year ITB required some new univ students to be to pass EPT (English Proficiency Test) ITB at least 80 or International TOEFL at least 475 and for some departments have to pass prior TPA Bappenas at least 475, but in another department we can postpone TPA, Yup..We hope that ITB can also postpone TPA Bappenass, too to all majors, so getting to study in ITB can be least easy, without losing the New univ students' capability. Perhaps some Object oriented program are more in Master Program of ITB

Loop In Visual Basic.Net

Image
Looping is one of the basic algorithms which can be found in all programming language like C++, Java, Pascal and so Visual Basic.Net. In this session we can try to make program Looping using Visual Basic.Net for. In Visual Basic.Net, there are many kinds of looping, but in this case, we can just Loop with For..Next, here we are : 1. Go to your Visual Basic.net via your visual studio.net 2. design the Form, like a picture above 3. setting properties for each component; let's say for your textbox1named txtId, for button of 'simpan' named btnSimpan, etc 4. type the code bellow : Private Sub btnSimpan_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSimpan.Click If indeks_data > jml_data - 1 Then MsgBox("List sudah penuh") Else data_lecturer(indeks_data, 0) = txtNoInduk.Text data_lecturer(indeks_data, 1) = txtNama.Text data_lecturer(indeks_data, 2) = txtAlamat.Text data_lectu

Do you know Ponari?

Image
Well.., these days when I try to watch news, there is always a news reported about Ponari. Yup.. Ponari is shaman Boy or (dukun in indonesian), who was by accidented tauched by thunderbolt and gets a stone which is believed that the stone if immersed into water, it can treat someone who are sick. Well…, believe it or not, but in another side, Ponari is just little boy who are still sudy in Elementary School, and of course he is still want to play as his friends. Perhaps, by treating someone who get sick and they become healthy, so.. somany people who comes not only from Java but also from arround Java. Thus, up to know everybody is still want to get treated by Ponari. We were so concerned, we worried that it can make people be envious (Big sin), As Moslem, we can’t believe another thing as tools to believe it, just straight to say our pray to Allah S.w.t. So, what do you think? Created By Ader.

Don't give Up!

Image
Well..., My Univ. students, Do not ever give up. If you try to make something and it doesn't work well, just be patient and try to make and make up to succeded. Some of You told me that they couldn't make Script for shoutmix or Feedjit, and even, because its ruther different from taking script, that we must change our HTML codding. But.., just believe in you will find somany Friends in Internet, maybe if You can't do the script in my Blogs, you can try by accessing My friend's Blogs, rigt which appear in my Blog Exactly in Duniaedukasi. What else, just create some articles so that every body can get advantages from your Blog, Agree...! Created By Ader

Library software in VB.net & SQL Server 2000

Image
W ell.., these days we know that programming are disposed to Object oriented programming like using Java and .Net applications like Visual Basic.Net. well, in this session, I try to make Library Application using Visual Basic.Net 2003 and SQL Server 2000, here we are : 1.Firstly, we have to make database in SQL server 2000, log on to your DBMS SQL server 2000 2.In the GUI of SQL Server, type : Created database Library, then press F5 or Execute 3.type script table : create table Buku( kdBuku varchar(7)primary key, namaBuku varchar(35), pengarang varchar(35), penerbit varchar(30), edisi varchar(5)) 4.click execute Now.., it’s time to make Book's form in Visual basic.Net. In GUI of Visual Basic.Net 2003, click file --> New --> Project : 1.Design form like a picture above 2.Now, on GUI of Visual basic.Net, click menu Tools --> connect to database --> then choose ‘Microsoft OLE Provider for SQL Server’, then click Next, then Fiil in the name of your SQL Server, choose ‘Use

Forgot Our Password !

Image
Well.. today I want to write my university students 'statement "Sir, I forgot my Password, so that I can't access to my Blog", Gee..As a matter of fact it's not only You but also I sometime forgot my user name's and my passwords. well..sometime it makes us be uncomfortable, because we have to make New Mail or Blog due to our forgetful. When I try to apply my Job again to one of the supports, I can do nothing, because like You Friend..I forgot my user name and password, when I Apply the company told me that My Blog has already been registered, Yup..I hope I can remember what my user name and password are. Maybe, there are things to keep our User name and PAssword, here we are : 1.When you make New Mail or Blog, try to always write on your little book or in your phone book. 2. Always aces to your Mail and your Blog 3. Try to make the name of easy Mail but the password is simple which can be related to your hobby or something else but, we'd better make fusio

Being English Teacher, Why Not!

Image
W ell..two days ago, my friend asked me to be English Instructor in his Course of Place. Gee.. I realized my educational background is not English major, for Computer science Insya Allah I can conduct it, gee.. what Should I do,sudenly I accept his offer, yup..with little experienced of mine when I took English Course in Harvard English College. So..Being English Instructor,why not. wehen the first time I taught, I always asked him/her to know his aim like capable in conversation or grammar or even TOEFL,gee.. Looks like I am the capable one :). There are things to make our English be better : 1. Always try to practice, even wrong (it's not problem) 2. Find a partner to practice more 3. Listen to English Music 4. Try to join in English Club 5. Etc Created By Ader

How can we Live without Google!

Image
A bout two years ago, My Lecturer gave his presentation in 'Wisuda' program of Ganesha, in his presentation, he said "How can we live this days without google", then I try to remember, absolutely right, I still remember in the last time when I would to use Internet I used to bring my little book contented of some URL's Address. these days, google make us be easy to do everything, when I try to find materials for my student, I just type what I want to, beside that, It gives us the ways to find things easily and fast, You Agree. But one more thing, we just have to not only find but also give your science to others, Agree :). Created By Ader

How to make span Read More!

Image
F irstly, I'd like to apologize for my university students of UNIKOM due to my promise to upload this article yesterday, because there was trouble with internet connection yesterday, So today, Insya Allah, I'll try to make it, here we are : 1. Logon to your Blog with your E-Mail and password 2. Choose Layout --> Edit HTML 3. Give check sign at "Expand Widget template" 4. Place this code just above word <'/head'> here is the code <'style'> <'b:if cond='data:blog.pageType == "item"''> 'span.fullpost {display:inline;}' <'b:else/'> 'span.fullpost {display:none;}' <'/b:if'> <'/style'> 5. and then, place these codes between <'div class="post-body"'> <'p'><'data:post.body'><'/data:post.body'><'/p'> <'b:if cond="data:blog.pageType != "item""'> &

How to Place Shoutmix' script at Our Blog

Image
At this occasion, we will try to appear shoutmix's java script at our blog, as a tool for visiting each other and leave our message, here are the ways : 1. Log in to your blog, by clicking Sign in 2.Open new window or New Tab of your browser and type : www.shoutmix.com 3. At shoutmix window, click at 'CREATE YOUR SHOUTMIX NOW' 4. Fill in your data, user name, password, email and give checked sign at agreement statement 5. At 2-step; choose the style you like, then click Continue 6. At 3-step; click at 'go to my control panel Now' 7. at window -'Quick start' click 'Get codes' 8. Copy code or the script, then do the same thing to appear at your Blog, by entering to Layout --> Add a Gadget --> HTML/JavaScript, well.. you can give the title like "Message Here !" Created By Ader