• Kategori

  • Tutorial Blog WordPress

    Buat Blog dengan wordpress itu tidak susah. Yang penting ada niat, ada koneksi internet. Jadi. Kalau masih bingung, silahkan klik link berikut ini:

    Download: tutorial-membuat-blog-wordpress-hartoto

    Master XAMMP

    Tutorial membuat blog dengan wordpress ini merupakan salah satu bab dari buku TIK yang saya buat tahun lalu bersama kawan-kawan TekPend. Silahkan di download. Mudah-mudahan bermanfaat

    Hartoto

    WHO AMĀ  I ????

    http://www.google.co.id/search?hl=id&q=hartoto&btnG=Telusuri+dengan+Google&meta=

    Common Dialog – Control Panels, called with API

    ‘Description: Displays the indicated Windows settings dialog.

    ‘Control Panel ( CONTROL.EXE ) Read the rest of this entry »

    Common Dialog, Browse For Folder – called with API

    ‘Description: Calls the “Browse For Folder Dialog” without need for an OCX

    ‘Place the following code in under a command button or in a menu, etc… Read the rest of this entry »

    Add-Ins, ConnectAddin() Subroutine

    ‘Description: Example ConnectAddIn subroutine.

    ‘Paste into class module

    ‘Sub ConnectAddIn(VBInst As VBIDE.Application)
    Set gobjIDEAppInst = VBInst
    Set AddInItems = VBInst.AddInMenu.MenuItems
    Set mymenu = AddInItems.Add(“I’ve Created An Add-In!!!!”)
    ConnectID = mymenu.ConnectEvents(Me)
    ‘End Sub