CMIIW , FYI apaan sih?

Posted On // Leave a Comment
Singkatan2 yang sering muncul di twitter : 

CMIIW = Correct Me If I'm Wrong = betulkan jika aku salah
IMHO = In My Humble Opinion = Menurut Pendapat (sederhanaku)
ASAP : As Soon As Possible = secepatnya saya bisa
BTW : By The Way = ngomong ngomong iki artine sebenere apa sih
FWIW : For What It's Worth = ini agak gak ngarti
FYI : For Your Information, or For Your Interest = informasi untuk kamu
OTF : On The Floor (laughing); writing is funny = ketawa ngakak
ROTFL : Rolling On the Floor Laughing; writing is very funny = ketawa ngakak sambil guling guling dilantai aneh
OIC : Oh, I see... = oh saya tahu
RSN : Real Soon Now = secepatnya
TIA : Thanks In Advance = terimakasih sekali
OOT = Out Of Topic = keluar dari topik yg dibicarakan
ITT = In The Topic = di dalam topik bahasan
BRB = be right back = segera kembali
BBL = be back later = nanti akan kembali
NP = no problem = tidak apa-apa
WTF = what the f*** = APA??
BBIAF = be back in a flash = kembali sebentar lagi
TTFN = ta ta for now = dadaagghh!!
J/K = just kidding = hanya bercanda
WB = welcome back = selamat datang
RTFM = read the f***ing manual = BACA PETUNJUK!!! 
GTG = got to go = mau offline karena mau pergi
GR8 = great = keren
AQ = aku
GW = gue
t4 = tempat
aka = also known as
BCL = bunga citra lestari 
ML = ~!@#$%^&* <- Masih Lami (lama)
SGPC: SeGo PeCel
SGKC= Sego Kucing...
BCDAJ= BECANDA AJE
MG=MUKE GILE
OMG=OH MY GODS
BMO=OH MY GODS CANDA AJE MUKE GILE
Sekedar usul ;) :
AWB = Asalamualaikum Warrohmatullohi Wabarokatoh
WWW = Wasalamualaikum Warohmatullohi Wabarokatoh
SPL = Sumpe Lu !!!!
EGPC = emang gue pikirin cuih2

Simley untuk Twitter

Posted On // Leave a Comment

Lowongan Honda April 2011

Posted On // Leave a Comment



Deler resmi mobil Honda membutuhkan karyawan untuk ditempatkan di Kalimalang dan Pondok Pinang, dengan persyaratan sebagai berikut:

Management Trainee(MT)
  • Pria / Wanita
  • Usia <= 28 Tahun
  • Mempunyai Kendaraan Sendiri
  • Walkin di Honda Pondok Pinang

Sales Executive / Sales Girl (SE)
  • Wanita
  • Usia <= 28 Tahun
  • Berpenampilan Menarik
  • Mempunyai Kendaraan Sendiri
  • Walkin di Honda Pondok Pinang
Customer Care Officer (CCO)
  • D3/S1
  • Ramah & Helpful
  • Berpenampilan Menarik
  • Good English
  • Menguasai MS. Office
  • Walkin di Honda Kalimalang.
Staff Accounting (SA)
  • Pria / Wanita 
  • Usia Max. 30 Tahun
  • Minimal D3 Akuntansi
  • Via Pos kalimalang
Staff Administrasi (ADM)
  • Pria / Wanita 
  • Usia Max. 30 Tahun
  • Menguasai Pembukuan
  • Via Pos Kalimalang

Honda Kalimalang
Jl. Raya Kalimalang No. 18 Jakarta Timur 13440
Telp. 021- 862 6688


Honda Pondok Pinang
Jl. Ciputat Raya No. 80 Jakarta Selatan 12310
Telp. 021 - 7581 8000

How to create XML database in WPF using VB.NET

Posted On // Leave a Comment
This article shows how to create database in XML format using datatable, dataset and datarow classes in Visual Studio 2010.
Insert the data in xml file
Use DataSet class to read and write the data on disc.
  1. WriteXml(string filename)
  2. ReadXml(string filename)
The dataset is a collection data table type object. It manages Tables collections.

DataTable - represents a table in XML format in memory. It manages data using Rows andColumns collections.

Open the visual studio and drag one button named (save) three textbox and three TextBlock controls on the form. Form looks like this.

x1.gif 
Figure 1.

XAML code

<Window x:Class="MainWindow"
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   Title="MainWindow" Height="350" Width="525">
    <Grid>
        <TextBlock Height="23" HorizontalAlignment="Left" Margin="10,10,0,0" Name="TextBlock1"Text="Customerid" VerticalAlignment="Top" />
         <TextBlock Height="23" HorizontalAlignment="Left" Margin="10,43,0,0" Name="TextBlock2"Text="Name" VerticalAlignment="Top" />
          <TextBlock Height="23" HorizontalAlignment="Left" Margin="10,76,0,0" Name="TextBlock3"Text="Email" VerticalAlignment="Top" />
           <TextBox Height="23" HorizontalAlignment="Left" Margin="82,7,0,0" Name="txtCid"VerticalAlignment="Top" Width="120" />
            <TextBox Height="23" HorizontalAlignment="Left" Margin="82,43,0,0" Name="txtName"VerticalAlignment="Top" Width="120" />
             <TextBox Height="23" HorizontalAlignment="Left" Margin="82,76,0,0" Name="txtEmail" VerticalAlignment="Top" Width="120" />
               <Button Content="Save" Height="23" HorizontalAlignment="Left" Margin="82,134,0,0" Name="Button1" VerticalAlignment="Top" Width="75" />
                 Grid>
                    Window>

Now add the following VB code.

Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Linq
Imports System.Text
Imports System.IO
Imports System.Xml

Class MainWindow
  Private dt As DataTable
   Private ds As DataSet
   
    Private Sub Window_Loaded(ByVal sender As System.ObjectByVal e As System.Windows.RoutedEventArgsHandles MyBase.Loaded
        ds = New DataSet()
        dt = New DataTable("Customer")
        dt.Columns.Add("Cid")
        dt.Columns.Add("Name")
        dt.Columns.Add("Email")
        ds.Tables.Add(dt)
        End Sub
    Private Sub Button1_Click_1(ByVal sender As System.ObjectByVal e As System.Windows.RoutedEventArgsHandles Button1.Click
        Dim dr As DataRow = dt.NewRow()
        dr(0) = txtCid.Text
        dr(1) = txtName.Text
        dt.Rows.Add(dr)
        dr(2) = txtEmail.Text
        ds.WriteXml("E:/customer4.xml")
        MessageBox.Show(" Data has been saved")
        txtCid.Clear()
        txtEmail.Clear()
        txtName.Clear()
    End Sub
End Class

Now run the application and enter the customer id value, name and email id and click on the Button save.
x2.gif
Figure 2.
Now click on the OK and record has been saved in the XML file and XML file looks like this.
      
-     <NewDataSet>
-     <Customer>
      <Cid>3Cid>
     <Name>RahulName>
     <Email>rahul.20@gmail.comEmail>
  Customer>
  NewDataSet>