Tuesday, June 25, 2019

Fransiskus Sutris

CARA MEMATIKAN KOMPUTER LEWAT COMMAND PROMPT

Untuk mematikan/shutdown komputer lewat command prompt berikut ini perintahnya.

  • Buka command prompt dari menu Start
  • Ketik cmd
  • Lalu Enter
  • Ketikan perintah shutdown -s - f -t 00 pada layar command prompt yang tampil
  • Lalu tekan Enter maka komputer akan melakukan shutting down.
Untuk merestart komputer tinggal mengganti parameter -s menjadi -r
Untuk mematikan/merestart dalam bebeberapa waktu setelah perintah ditekan enter ubah saja parameter 00 menjadi jumlah detik yang dikehendaki.

Read More

Monday, June 24, 2019

Fransiskus Sutris

Microsoft Office Outlook Has Stopped Working


Ketika Microsoft Outlook anda tidak bisa dijalankan dan muncul error "Microsoft Office Outlook Has Stopped Working", maka cara untuk memperbaikinya sangat mudah yaitu dengan cara repair Microsoft Office anda.












Langkah-langkahnya adalah sebagai berikut :
  • Buka Control Panel >>
  • Buka Add or Remove Programs / Programs And Features
  • Klik pada Microsoft Office 2010 (Versi tergantung dari Ms Office yang anda pakai, maka disesuaikan saja)
  • Lalu Pilih menu Change
  • Ikut prosesnya dan pilih Repair dan klik continue
  • Silahkan diikuti prosesnya sampai selesai
  • Lalu restart komputer anda.
Demikianlah cara memperbaikin Microsof Office yang tidak bisa dibuka dengan error tersebut di atas.

semoga bermanfaat.

Read More

Thursday, June 13, 2019

Fransiskus Sutris

How To Display XML File in Combobox Using VB.net

How To Display XML File in Combobox Using VB.net

What is xml?

XML is a software- and hardware-independent tool for storing and transporting data.

What is XML?

  • XML stands for eXtensible Markup Language
  • XML is a markup language much like HTML
  • XML was designed to store and transport data
  • XML was designed to be self-descriptive
  • XML is a W3C Recommendation
want to read more about xml ? Go Here>>
Source : https://www.w3schools.com/xml/xml_whatis.asp
Now i want focus on how to display data from XML file in combobox.

  • Open your text editor (like sublimeText or notepad)
Type the following xml content, then save with file name : category.xml
On my computer i save category.xml on the following place >> D:\category.xml

  • Open your Vb.net
On form1 design put one ComboBox, name it ComboBox1, see picture below:

  • Double click on form area and then type the following code in Form1_Load:
  • Run the project and look at the combobox, it will be filled with category data from the category.xml file

Thank you, hopefully useful.

#Loading xml value into combobox
Read More