.:: Jasa Membuat Aplikasi Website,Desktop,Android Order Now..!! | | Order Now..!! Jasa Membuat Project Arduino,Robotic,Print 3D ::.

Sourcecode Aplikasi E-Learning PHP dan MySQl Terbaru

0 komentar





Diera Moderen nan canggih ini kita tak luput dengan kehadiran internet,begitu juga dengan dunia pendidikan,untuk mengimbangi perkembangan tersebut mestilah kita menggunakan tekhnologi informasi tersebut dalam dunia pendidikan pula,daalam kesempatan ini saya akan memberikan sekelumit tentang kecanggihan sistem informasi untuk dunia pendidikan yaitu sebuah aplikasi pembelajran secaraonline menggunkan media informasi dengan  Aplikasi E-Learning PHP dan MySQl Terbaru diharapkan pendidikan dan pembelajran tidak sebatas di ruang kelas sekolah akan tetapi pendidikan juga dapat diakses dari manapun kita tinggal, sehingga pengetahuan itu dapat berkembang dan menyebar keseluruh penjuru dunia, dalam hala  Aplikasi E-Learning PHP dan MySQl Terbaru sanagat penting, nah untuk itu saya memberikan tawaran bagi anda yang ingin mengembangkan sistem pembelajran online ini secara murah,silahkan download aplikasinya  Aplikasi E-Learning PHP dan MySQl Terbaru Jika anda mengalami kesulitan dalammendownload aplikasi tersebut silahkan hubungi saya di 085270444156  tau email saya di adibyte@gmail.com.
Demo Admin password : admin user:admin
Demo Siswa password: 01 user :01

Download Link






Suni

Script Aplikasi Penjualan Obat dengan PHP & MYSQL

0 komentar

 Sourcecode Aplikasi Penjualan Obat| pada kesempatan ini saya akan menampilkan sourcecode Aplikasi Penjualan Obat, berikut screenshoot aplikasi Penjualan Obat:

1. Login Aplikasi Apotik Server
2. Halaman Utama Apotik
3. Halaman Data Obat

4. Halaman Kategori Obat

5. Cetak Barcode Obat
6. Pembelian Data Obat
7. Data Produsen Obat




8. Login Client Apotik ( Kasir)


9. POS (kasir)
10. Pembayaran

11. Cetak Struck
 Download Sourcecode





Suni

Sourcecode Aplikasi E-vote dengan PHP dan Mysql

0 komentar
Ok..udah lama ni gak posting..kali ini saya akan memposting sourcecode E-vote menggunakan PHP dan Mys


Download Sourcecode

Suni

Membuat Countdown Dengan Delphi

0 komentar
Pagi yang sangat paana kawan Hadeh ... X_X jadi males keluar. Daripada keluar kepanasan mending Buat artikel tentang delphi sekalian agar tidak lupa cara buatnya bagaimana jadi ditulis disini aja plus bebagi ilmu dengan para pecinta delphi.

Okeh... Langsung saja .... kali ini saya akan membagikan tutorial membuat countdown ( Waktu Berjalan mundur ) seperti stopwatch gitu deh. tapi nanti masih bisa dikembangin sesuai kemapuan temen-temen berkreasi seperti apa. Berikut kodenya saya tulis dibawah ini ... :D



Pertama Buatlah Form Seperti Berikut.

form countdown dengan delphi
Kemudian pada Timer1 diclick 2 kali kemudian masukan script seperti ini
Deklarasikan dulu variabel global untuk nama variabel "ar" dengan nilai integer;
var
Form1: TForm1;
ar:integer;
procedure TForm1.Timer1Timer(Sender: TObject);
var
jam,menit,detik:word;
begin
dec(ar);
jam:=ar div 3600;
menit:=ar div 60;
detik:=ar-(jam*3600)-(menit*60);
panel1.Caption:=Formatdatetime('hh:nn:ss',Encodetime(jam,menit,detik,0));
if (ar=0) then
begin
timer1.Enabled:=false;
showmessage('waktu habis');
form1.Close;
end;
end;

Kemudian berikan kode  pada tombol start sebagai berikut
procedure TForm1.Button1Click(Sender: TObject);
begin
ar:=strtoint('10');
timer1.Enabled:=true;
end;

Pada tombol Stop berikan code sebagai berikut:
procedure TForm1.Button2Click(Sender: TObject);
begin
timer1.Enabled:=false;
end;

Yang terakhir untuk event oncreate pada form berikan code seperti dibawah
procedure TForm1.FormCreate(Sender: TObject);
begin
timer1.Enabled:=false;
end;

 Sudah selesai silah kan dirun programnya... kalo penulisan semua benar seharunya program berjalan.
Berikut yang ingin Sedot source codenya silahkan.
Suni

DatagridView Tutorial with DataGridViewButtonCell

0 komentar

DatagridView Tutorial with DataGridViewButtonCell

I have shown you how to quickly learn to use a DataGridView. How to insert? How to delete? How to do basic operation?  In that first post, you used the DataGridViewTextBoxColumn.  Reading that tutorial is like making a MS-Access or a MS-Excel. Now is time to enhance a little bit your DataGridView using button inside you table. Again, there is nothing to hard to start with.

Lesson 5: Using DataGridViewButtonCell

From the Visual Basic form Designer, simple add a column and make sure you choose the DataGridViewButtonCell type. Named your column like cButton and give a good description like BUTTON.
Because the Button cell is no ordinary cell, I have to detect it.
The easiest way is by getting the column index. Here is a very short example and I highlighted the important part. Using a regular if condition, if the column index from the CellMouseClick is the same number of the cButton index, then we got our DataGridViewButtonCell object.
My example above simple change the color of the button after a click, change the style and deselect the button object. Fell freer to do some general testing.

Download the sample project

All the functions and the step use in this post are inside the sample project. Fell free to take a look at it. When you start the sample project, an initial DataGridView will be filled with random numbers. A save function is called if you close the WinForm.
When you click on a button inside the DataGridView, you will notice it will change color to yellow.


    Private Sub DataGridView1_CellMouseClick(sender As Object, e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles DataGridView1.CellMouseClick
        If e.Button = Windows.Forms.MouseButtons.Right Then
            Me.Text = ("[" & e.RowIndex & " ; " & e.ColumnIndex & "]")
            Dim pt As Point = MousePosition
            ContextMenuStrip1.Show(pt)
        ElseIf e.Button = Windows.Forms.MouseButtons.Left Then
            Dim dgvbc As DataGridViewButtonCell
            If e.RowIndex > 0 AndAlso e.ColumnIndex > 0 Then
                If e.ColumnIndex = cButton.Index Then
                    dgvbc = Me.DataGridView1.Rows(e.RowIndex).Cells(e.ColumnIndex)
                    dgvbc.FlatStyle = FlatStyle.Flat
                    dgvbc.Style.BackColor = Color.Yellow
                    dgvbc.Selected = False
                End If
            End If
        End If
    End Sub

References:

Previous post : DatagridView Tutorial

Suni

Belajar Bahasa Pemograman PHP

0 komentar
sebenernya ane juga masih belajar sama si PHP yg selalu bikin ane galau -_-
langsung saja gan ini script sederhana untuk menampilkan data diri, ini SSnya gan




DOWNLOAD DISINI SCRIPTNYA
kalau gak paham beri komentar gan :D
Suni

Belajar java mobile 2

0 komentar
setelah melihat tutorial dari part satu, kali ini saya akan membuat cara menghitung luas persegi panjang dengan java mobile / J2ME
langsung saja copas script d bawah ini
package hello;import javax.microedition.midlet.*;import javax.microedition.lcdui.*;/**�* @author Administrator�*/public class luas extends MIDlet implements CommandListener{� private Form fromq,fhsl;�private TextField tpanjang,
Suni

Belajar Java Mobile 1

0 komentar
Kali ini saya akan memberi sedikit penjelasan mengenai java mobile(J2ME), dan kali ini saya akan menggunakan netbeans ok langsung saja buka netbeansnya
pilih java mobile


�klik next dan beri nama project anda


�klik next lagi


�klik finish


�dan kali ini saya akan menggunakan full script, oleh karena itu saya akan hapus di visual hello midlet nya


�setelah d delete, lalu tambahkan midlet
Suni

APLIKASI PENGGAJIAN DELPHI

0 komentar
Aplikasi Penggajian dengan Delphi.

Aplikasi Penggajian dengan delphi Aplikasi Ini adalah aplikasi yang ku buat untuk kerja praket semasa kuliah. Codingnya masih awut-awutan karena waktu itu baru belajar dan semangat semangatnya. referensi seadaanya dapet dari googling tanya sana tanya sini hehehe.... tapi alhamdulilah kerja prakteknya lancar tanpa revisi. Padahal masih banyak bug di program.
Buat refrensi temen-temen yang bingung cari judul skripsi atau kerja praktek yang kuliah dijurusan TI mungkin ini bisa sebagai referensi untuk teman teman.
Fitur aplikasi ini adalah
  1. Data Pegawai
  2. Data Jabatan
  3. Data Kantor Cabang
  4. Data Pendidikan
  5. Data Potongan
  6. Transaksi gaji
  7. Laporan Pegawai
  8. Laporan Jabatan
  9. Laporan Pendidikan
  10. Laporan Laporan Gaji Pegawai
  11. Dan slip gaji. 
 Sedot Disini
Suni

APLIKASI PERPUSTAKAAN DENGAN DELPHI

0 komentar
Aplikasi Perpustakaan ( Persewaan Buku )
aplikasi perpustakaan dengan delphi
Aplikasi Perpustakaam ini project teman saya ketika awal-awal belajar delphi. tapi saya juga ikut bantuin ngoding walaupun cuma dikit - dikit kalo temen butuh bantuan saja.
aplikasi ini menggunakan komponent devExpres untuk membuat ribbonnya.
Masih banyak bug diaplikasi ini, tapi gak papa saya share disini buat ilmu saja bagi teman teman yang membutuhkan saja. walaupun aplikasi sangat sederhana.
Aplikasi ini menggunakan DB Acces sudah multi user.
Bagi yang ingin mendownload aplikasinya silahkan Sedot lengkap source codenya Disini
Suni

Blood Bank Management System (VB6 with report)

0 komentar
 Title:      BLOOD BANK MANAGEMENT SYSTEM

      This system is mainly based on collection, storage and usage of blood in needy situations. City life is turning hectic as we move in 21st century. Day by day all the newspapers that were filled with motivating articles and some important news is now filled with either Bollywood stuffs or some kinds of crime, bomb blasts becoming one of the main events. Hence the need of blood is the crucial subject of consideration. Also many diseases are seen to be creped in our day to day life. One of which can be instanced as Thallesmania. One that is affected by this disease also needs the transmission of the blood week by week. Hence blood bank is the most suitable option then.    

 Problem definition:

       In emergency situations, it is very difficult for a blood bank to maintain the databases of the donor�s and acceptors manually. This can lead in the delay of transmission of blood within specified amount of time. Also file maintenance is a very hectic job during natural calamities. Hence our software helps to maintain the databases efficiently and accurately. Also quick access to the databases is possible.

 Front End:

The proposed system made by us is been developed in Microsoft tools of Visual Studio package �Visual Basic� (i.e. the whole package is GUI based with much software designs).

 Back End:


The backend is MS Access with proper integrity levels and security levels.

to download source code with documentation click on following link


DOWNLOAD


mirror Link : DOWNLOAD
Suni

Atribut SCOPED Dalam Tag Style

0 komentar
The Scoped Attribute on Style Tag - Attribut Scoped ini sebenarnya telah saya jelaskan dalam artikel sebelumnya. Namun karena masih banyak pertanyaan seputar validasi HTML5, saya akan coba jelaskan agak mendetail supaya lebih mudah difahami.

Harap diperhatikan, attribut scoped ini bisa diaplikasikan dalam kondisi apapun, tidak hanya diperlukan dalam validasi HTML5 saja.

Scoped merupakan atribut
Suni

Hostel Management System

0 komentar
Right now its developed in Visual Basic 6 and Microsoft Access 2003. 

Front END : Visual Basic 6

Back End : Microsoft Access (.MDB)

DOWNLOAD
Suni

Menampilkan dan Menyembunyikan Objek dengan onclick Event

0 komentar
Onclick Event - Postingan kali ini berasal dari pertanyaan sahabat�+Yandi Mulyadi�tentang Postingan dan Komentar dalam tab yang berbeda. Untuk detail pertanyaan bisa lihat disini. Intinya, saya akan sedikit menjelaskan cara kerja onClick Event dalam menampilkan atau menyembunyikan objek dengan id tertentu.

Pengertian onClick Event sendiri adalah, menjalankan fungsi javascript ketika button /
Suni

Tutorial Instan Membuat Katalog Toko Online dengan Wordpress Dari Awal Sampai Akhir Lengkap + Gambar (Mau Coba Jualan Online?)

0 komentar
Haiah :D ketemu lagi bareng mas kodok dalam acara bagi-bagi ilmu. Kali ini saya akan berbagi tentang bagaimana caranya membuat sebuah toko online
untuk media pemasaran dengan Wordpress Offline.

Nah, Sebelumnya, anda harus mempersiapkan beberapa peralatan tempur terlebih dahulu:
1. AppServ untuk web server lokal�
�Jika ada yang belum punya dan belum pernah menginstalasi AppServ, nih mas kodok
Suni

Mobile Store Management

0 komentar


Right now its developed in Visual Basic 6.0 and Microsoft Access 2003. 
Front END : Visual Basic 6.0

Back End : Microsoft Access (.MDB)



DOWNLOAD
Suni

Tutorial Instan Membuat Website di wordpress.com Lengkap + Gambar

0 komentar
Selamat subuh kakak :D kali ini saya ingin sharing tentang bagaimana membuat website menggunakan wordpress Online. Jadi, melalui perantara website wordpress.com kita dapat dengan mudah membuat sebuah website tanpa harus dibuat pusing oleh begitu banyak kodingan.

Tinggal Register, JEBREEET! jadi deh :D

Langkah-Langkah Registrasi akun di Wordpress Online

1. Siapkan email anda terlebih dahulu,
Suni

Contoh Laporan Kuliah Kerja Praktek (KKP) tentang Analisa Pembayaran Iuran Siswa

0 komentar
Berhubung udah Lulus2an Kuliah, & sebentar lagi wisuda..
ane cuma mau berbagi aja nie KKP ane waktu smester 5, buat adek kelas saya yg masih imut2, ganteng2, & kece-kece, mari silahkan yg pengen tau contoh isi KKP nya kayak apa, silahkan download di mari :D

atau mungkin buat universitas lain yg bingung bikin kata-katanya aja buat bikin laporan magang nya di semester tertentu, yuk silahkan download .

ini KKP buat contoh aja ya, bukan buat plagiat, apalagi di palsuin.
saya gak bertanggung jawab ya kalo ampe ada yg plagiat -_-

Laporan KKP ini, masih ada beberapa kekurangan.
ada beberapa paragraf yg lupa saya "Justify", jadi rada kagak rata gitu dah. -_-

Terus Lagi,, Daftar Pustaka yg ane ambil juga di bawah tahun JeBot semua -_-
maklum lah waktu itu masih rada-rada kagak ngarti nyari referensi yg tahun berapa minimalnya.

Silahkan download di bawah ini ^_^


Download Contoh KKP



* * *
































* * *

Catatan :
Waktu Angkatan Saya, masih di perbolehkan tema & riset tentang sekolahan gitu.,
tapi gatau deh sekarang masih boleh apa kagak.
ada yg bilang "tergantung dosen PA"
ada juga yg bilang "masih boleh kali"...

Maybe,,
Wallahu'Alam .. -_-
Suni

Boutique Management System

0 komentar

We got this project in planet source code and all the modules working perfectly. Even those who are beginner even they can learn to develop visual basic projects. Right now its developed in Visual Basic 6.0 and Microsoft Access 2003. 
Front END : Visual Basic 6.0

Back End : Microsoft Access (.MDB)


Download Link 1
DOWNLOAD

Download Link 2
DOWNLOAD
Suni

Winamp Pro 5.64

0 komentar
Assalamualaikum Wr. Wb.
Hallo Sobat Mahfudin Blog. Gimana Kabar kalian semua?Semoga baik-baik saja ya?Pada kesempatan kali ini saya akan posting sebuah software yang bernama Winamp Pro 5.64. Tentu sobat Mahfudin Blog sudah tahu dengan software yang saya post ini. Winamp Pro 5.64 adalah software media player yang tidak hanya dapat memutar file mp3 namun juga dapat memutar dengan format video.




Lihat screenshootnya


tested windows 7

Suni

Custom ListView AlertDialog With Filter and Search

0 komentar
Hi Guys,

I hope this tutorial might be helpful to all android developer to search or filter the item of the custom list view.
Here the list view which shows in Alert-dialog. And we can search the item of the list view.

Here I am creating the ListView and Editext programatically and search the item of the list view.
So lets start the coding to search the item of the listview in alert dialog.


Main_activity.xml






alertlistrow.xml








MainActivity.java

package com.sunil.listviewdialog;

import java.util.ArrayList;
import java.util.Arrays;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.LinearLayout;
import android.widget.ListView;

public class MainActivity extends Activity implements OnClickListener, OnItemClickListener{

private Button btn_listviewdialog=null;
private EditText txt_item=null;
private String TitleName[]={"Sunil Gupta","Ram Chnadra"," Abhishek Tripathi","Amit Verma","Sandeep Pal","Awadhesh Diwakar","Shishir Verma","Ravi Vimal","Prabhakr Singh","Manish Srivastva","Jitendra Singh","Surendra Pal"};
private ArrayList array_sort;
int textlength=0;
private AlertDialog myalertDialog=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

txt_item=(EditText)findViewById(R.id.editText_item);
btn_listviewdialog=(Button)findViewById(R.id.button_listviewdialog);
btn_listviewdialog.setOnClickListener(this);
}
@Override
public void onClick(View arg0) {

AlertDialog.Builder myDialog = new AlertDialog.Builder(MainActivity.this);

final EditText editText = new EditText(MainActivity.this);
final ListView listview=new ListView(MainActivity.this);
editText.setCompoundDrawablesWithIntrinsicBounds(R.drawable.discoverseed_larg1, 0, 0, 0);
array_sort=new ArrayList (Arrays.asList(TitleName));
LinearLayout layout = new LinearLayout(MainActivity.this);
layout.setOrientation(LinearLayout.VERTICAL);
layout.addView(editText);
layout.addView(listview);
myDialog.setView(layout);
CustomAlertAdapter arrayAdapter=new CustomAlertAdapter(MainActivity.this, array_sort);
listview.setAdapter(arrayAdapter);
listview.setOnItemClickListener(this);
editText.addTextChangedListener(new TextWatcher()
{
public void afterTextChanged(Editable s){

}
public void beforeTextChanged(CharSequence s,
int start, int count, int after){

}
public void onTextChanged(CharSequence s, int start, int before, int count)
{
editText.setCompoundDrawablesWithIntrinsicBounds(0, 0, 0, 0);
textlength = editText.getText().length();
array_sort.clear();
for (int i = 0; i < TitleName.length; i++)
{
if (textlength <= TitleName[i].length())
{

if(TitleName[i].toLowerCase().contains(editText.getText().toString().toLowerCase().trim()))
{
array_sort.add(TitleName[i]);
}
}
}
listview.setAdapter(new CustomAlertAdapter(MainActivity.this, array_sort));
}
});
myDialog.setNegativeButton("cancel", new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialog, int which) {
dialog.dismiss();
}
});

myalertDialog=myDialog.show();

}
@Override
public void onItemClick(AdapterView arg0, View arg1, int position, long arg3) {

myalertDialog.dismiss();
String strName=TitleName[position];
txt_item.setText(strName);
}

}

CustomAlertAdapter.java

package com.sunil.listviewdialog;

import java.util.ArrayList;

import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;

public class CustomAlertAdapter extends BaseAdapter{

Context ctx=null;
ArrayList listarray=null;
private LayoutInflater mInflater=null;
public CustomAlertAdapter(Activity activty, ArrayList list)
{
this.ctx=activty;
mInflater = activty.getLayoutInflater();
this.listarray=list;
}
@Override
public int getCount() {

return listarray.size();
}

@Override
public Object getItem(int arg0) {
return null;
}

@Override
public long getItemId(int arg0) {
return 0;
}

@Override
public View getView(int position, View convertView, ViewGroup arg2) {
final ViewHolder holder;
if (convertView == null ) {
holder = new ViewHolder();
convertView = mInflater.inflate(R.layout.alertlistrow, null);

holder.titlename = (TextView) convertView.findViewById(R.id.textView_titllename);
convertView.setTag(holder);
}
else {
holder = (ViewHolder) convertView.getTag();
}

String datavalue=listarray.get(position);
holder.titlename.setText(datavalue);

return convertView;
}

private static class ViewHolder {
TextView titlename;
}
}





You can download the source code CustomListviewFilter.
Cheers Guys! 
Suni

Hotel Management System vb.net

0 komentar


Project description
:Hotel Management System Project enables its user to collect all information from the hotel,Admin of this project can keep track on all the activities which are performed during the successful operating of Hotel business.Hotel Management task is specially performed by Hotel managers.It is hotel manager�s job To keep track on all the activities and give good results.In this project you does not any need to know any mechanism of manages etc,A simple user can easily understand all the function of �Hotel Management System Project�
Hotels are Become so mush popular in the world.I thinks Everyone must have heard about the Taj Hotel ,Mumbai and JW MERRIAT Hotel,Chandigarh.Hotels are the very good source of foreign income.Hotels help Government to increase it�s foreign income,because foreign peoples goes to others city or country and they stay in Hotels.So I feel the necessity of adding this Hotel Management System Project .
Project Features:Hotel Management System Project have lot of features which are summarized below:
Keep track on all the Activities: Admin can keep track on all the activities.Admin will have full control over the whole project.admin can control all the content of project.
Allotment of rooms: This project shows the Veccent rooms in the hotel.rooms which are booked or reserved also shown in it.
Payment and Receipts: Admin can record all the amount received from the user and how much payment is done to the third party .
Keep Historical Records:Hotel Management System Project keeps all the historical data related with the visitors of hotel.This data is kept for future reference.
I have checked Hotel Management System Project ,it is error free and user friendly.If you face any kind of problem then please let me know
Download now this awesome project by clicking the download button below:

Link 1: DOWNLOAD(updated version)

Link 2: DOWNLOAD(updated version)
Suni

Employee Management System

0 komentar

This is Employee Management System software. This software will manage the whole company Employee details like their attendance,  salary details, leave details. Here in this software, if a particular Employees salary is done then a message will be sent to his cell. Even if the employee takes a leave then the software will deduct a one day leave from his casual or sick leave. When the employee opens his PC, the attendance will be marked automatically using this software. Employee can also submit his leave in the software, if the employee needs leave for few days. Even the admin has the right to view everyone�s information. Admin can increment the employees salary using this software. Employee can view their salary details, attendance, leave details and his personal information.
This software is error free. Anyone can use this software . you can download this software by clicking on download below. So use this software and get more benefit from from this. If have any doubts then post your doubts below.

Front end: vb 6 || Vb.net 2008
Back End: MS Access

Link 1: DOWNLOAD
Link 2: DOWNLOAD

Suni

Beberapa Contoh Program dengan Visual basic 6.0

0 komentar
Beberapa Contoh Program dengan Vb 6 - Contoh Program dengan Visual Basic ini saya sengaja bikin rapih supaya bisa mempermudah. beberapa contoh program dengan visual basic adalah hasil dari beberapa tutorial yang sudah di buat dengan menggunakan database maupun tanpa database

Beberapa keuntungan mempelajari sebuah contoh program visual basic itu di antaranya yaitu : mempelajari struktur koding program, alur kerja sebuah program, mempelajari desain banyak program, mengetahui kelebihan dan kekurangan sebuah program dan masih banyak lagi yang akan bermanfaat sengaja di sadari dan tidak di sadari.

Beberapa contoh program visual basic sebagai berikut :
1. Menggerakan Label dengan Visual Basic
Contoh Program menggerakan label dengan Visual basic 6.0


2. Shutdown menggunakan API dengan Visual Basic



3. Cara membuat Form User atau pengguna dengan Visual Basic





4. Membuat Grafik menggunakan MS Chart database dengan Visual Basic





5. Membuat Chatting dengan Vb 6 (Visual basic 6)

aplikasi chatting dengan vb
Desain Form Chating VB 6

Nah itu beberapa rangkumanan untuk Beberapa Contoh Program dengan Visual basic 6.0 pada blog ini
Suni

Custom Time Picker with Time Interval of 15 minute.

0 komentar
Android it�s very easy to set the time using the android.widget.TimePicker component. In this tutorial we are going to see how the user can select the hour, and the minute using the android.app.TimePickerDialog which is an easy to use the dialog box.

In this tutorial I am creating the custom Time Picker with minute interval 00-15-30-45.

So lets start the coding to create the custom time picker in android.



activity_main.xml











MainActivity.java

package com.example.customtimepicker;

import java.util.Calendar;

import android.app.Activity;
import android.app.TimePickerDialog;
import android.content.Context;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TimePicker;

public class MainActivity extends Activity implements OnClickListener{

private EditText txt_time=null;
private Button btn_time=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

txt_time=(EditText)findViewById(R.id.editText_time);
btn_time=(Button)findViewById(R.id.button_time);
btn_time.setOnClickListener(this);
}
@Override
public void onClick(View arg0) {
CustomTimePickerDialog timePickerDialog = new CustomTimePickerDialog(MainActivity.this, timeSetListener,
Calendar.getInstance().get(Calendar.HOUR),
CustomTimePickerDialog.getRoundedMinute(Calendar.getInstance().get(Calendar.MINUTE) + CustomTimePickerDialog.TIME_PICKER_INTERVAL), true);
timePickerDialog.setTitle("Set hours and minutes");
timePickerDialog.show();
}

public static class CustomTimePickerDialog extends TimePickerDialog{

public static final int TIME_PICKER_INTERVAL=15;
private boolean mIgnoreEvent=false;

public CustomTimePickerDialog(Context context, OnTimeSetListener callBack, int hourOfDay, int minute, boolean is24HourView) {
super(context, callBack, hourOfDay, minute, is24HourView);
}

@Override
public void onTimeChanged(TimePicker timePicker, int hourOfDay, int minute) {
super.onTimeChanged(timePicker, hourOfDay, minute);
if (!mIgnoreEvent){
minute = getRoundedMinute(minute);
mIgnoreEvent=true;
timePicker.setCurrentMinute(minute);
mIgnoreEvent=false;
}
}

public static int getRoundedMinute(int minute){
if(minute % TIME_PICKER_INTERVAL != 0){
int minuteFloor = minute - (minute % TIME_PICKER_INTERVAL);
minute = minuteFloor + (minute == minuteFloor + 1 ? TIME_PICKER_INTERVAL : 0);
if (minute == 60) minute=0;
}

return minute;
}
}

private CustomTimePickerDialog.OnTimeSetListener timeSetListener = new CustomTimePickerDialog.OnTimeSetListener() {
@Override
public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
txt_time.setText(String.format("%02d", hourOfDay) + ":" +String.format("%02d", minute));
}
};
}







You can download the source code CustomTimePicker.

Cheers Guys!
Suni

Car Rental System Using VB.Net MS Access Database

0 komentar
A system created in Microsoft Visual Studio 2008, Language is VB.Net and I used MS Access as Database.
Includes Recording of application users, Members, Cars, and Transactions.
Login Module is connected to database
Printable reports are ready and created using Crystal Reports..

Link 1: DOWNLOAD

Link 2: DOWNLOAD
Suni

Membuat Auto Number Dengan Delphi

0 komentar
Sudah lama sekali blog ini tak tersentuh, mumpung ada waktu luang dan bingung mau ngapain mending berbagi ilmu ni. Sedikit tips dari saya bagaimana membuat functio auto number dengan delphi,  biasanya sering digunakan dengan penomoran otomatis untuk sebuah kwitansi ataupun nomer yang diharuskan unik.



Oke.... Disudahi basa basinya. langsung saja ke intinya.
Sebelumnya para pengguna delphi harus tau syarat-syarat membuat function. Kalo belum tau  bisa tanya langsung ke eyang google.
function AutoNumber(Q:TAdoQuery;table,key,kode:String;edit:TEdit):String;
var
  nomer:Integer;
  Kd:String;
begin
  with Q do
  begin
    Close;
    SQL.Text:='select * from '+table+'';
    Open;
  end;
  if Q.RecordCount = 0 then nomer:=1 else
  if Q.RecordCount > 0 then
  begin
    with Q do
    begin
      Close;
      SQL.Text:='select max(right('+key+',10)) as kd from '+table+'',True);
      Open;
    end;
      nomer:=Q.FieldByName('kd').AsInteger + 1;
  end;
  kd:=inttostr(nomer);
  kd:=Copy('0000000000'+kd,length('0000000000'+kd)-9,10);
  edit.text :=kode+kd;
end;

Untuk cara penggunaanya hanya dengan memanggil function AutoNumber;
Contoh Penggunaanya
procedure TForm1.Button1Click(Sender: TObject);
begin
    AutoNumber(AdoQuery1,'tb_barang','kode_barang','BR.',Edit1.Tetx);
end;

Suni

Bank management system in VB

0 komentar
New Bank management




Front end: VB 6

Back end: MS access


Download link:

DOWNLOAD

Download link 2:


DOWNLOAD
Suni

School cum College Management System

0 komentar


School cum College Management System is a software application developed using VB.NET. Microsoft SQL server database is  used to store the record. This software which manages  Students profiles, Attendance report, Employees records, Fee details, transfer details of schools and colleges .This system has more than 50 forms. It has 2 users, i.e; Administrator and Employees. It has 7 modules.
Project modules:
1) School module
2) Admission module
3) Employee module
4) Transaction module
5) Display module
6) Report card module
7) Identity card module

Project title: School cum College Management System

Front End: VB.NET
Back End: SQL Server

Link 1: DOWNLOAD

Link 2: DOWNLOAD
Suni

Tawk.to