Lanjutan dari Part 1.
Mengambil Raspberry Pi
Beberapa saat setelah komunikasi terakhir dengan client si empunya Raspberry Pi tersebut, penulis menyempatkan diri untuk mampir ke kantor si client, untuk mengambil alat tersebut.
Showing posts with label Programming. Show all posts
Showing posts with label Programming. Show all posts
Thursday, August 13, 2015
Berkenalan dengan Raspberry Pi (Part 1)
Kali ini penulis ingin menceritakan pengalaman penulis dalam meminjam dan menggunakan Raspberry Pi.
Apa Itu Raspberry Pi ?
Definisi Raspberry Pi menurut Wikipedia :
"The Raspberry Pi is a series of credit card–sized single-board computers developed in the UK by the Raspberry Pi Foundation with the intention of promoting the teaching of basic computer science in schools"
(Situs resminya di https://www.raspberrypi.org/)
Jadi secara singkat, Raspberry itu adalah komputer mini, yang panjang dan lebarnya kurang lebih sebesar kartu kredit (panjang dan lebar saja yah, tidak memperhitungkan tinggi, karena kalau dilihat aslinya, lumayan tebal juga).
Apa Itu Raspberry Pi ?
Definisi Raspberry Pi menurut Wikipedia :
"The Raspberry Pi is a series of credit card–sized single-board computers developed in the UK by the Raspberry Pi Foundation with the intention of promoting the teaching of basic computer science in schools"
(Situs resminya di https://www.raspberrypi.org/)
Jadi secara singkat, Raspberry itu adalah komputer mini, yang panjang dan lebarnya kurang lebih sebesar kartu kredit (panjang dan lebar saja yah, tidak memperhitungkan tinggi, karena kalau dilihat aslinya, lumayan tebal juga).
Tuesday, December 30, 2014
Tutorial Singkat Menggunakan Yahoo Finance API (Versi Indonesia)
<No English Version Available>
Hari ini kita akan belajar membuat aplikasi Stock Inquiry sederhana menggunakan API (Application Programming Interface) Yahoo Finance. Artikel yang serupa sudah banyak disediakan dalam bahasa inggris, jadi untuk kali ini saya tidak menyediakan versi Inggrisnya.
Hari ini kita akan belajar membuat aplikasi Stock Inquiry sederhana menggunakan API (Application Programming Interface) Yahoo Finance. Artikel yang serupa sudah banyak disediakan dalam bahasa inggris, jadi untuk kali ini saya tidak menyediakan versi Inggrisnya.
Wednesday, November 6, 2013
Menampilkan Report dengan MS Reporting Pada VB.NET (Versi Indonesia)
Tutorial ini membahas mengenai menampilkan report (menggunakan Microsoft Reporting) di VB.NET
Artikel ini adalah terjemahan dari versi bahasa Inggris (yang juga ditulis oleh penulis). Akan ada sedikit perbedaan, karena memang ada istilah dalam bahasa inggris yang sulit dicari padanannya dalam bahasa Indonesia, (lagian kalau sama persis kesannya kayak google translate abiezz)
Biasanya orang suka nanya "gimana sih cara menampilkan report di program", dan seringkali mereka menyebut suatu produk tertentu, yaitu Crystal Reports. Crystal Reports adalah yang paling sering digunakan (penulis sudah menggunakan Crystal Reports dari versi 8.5, dengan programnya pakai VB6). Namun sebenarnya banyak pilihan lain yang bisa digunakan, ada ActiveReports, XtraReports, dst.
Penulis pertama kali berkenalan dengan Microsoft Reporting itu adalah saat company di tempat penulis bekerja waktu itu menggunakan SQL Server Reporting Services 2005 sebagai standar dari pembuatan report. SQL Server Reporting Services ini adalah produk reporting andalan utama microsoft, yang jalannya server-side (ada Report Server sendiri). Namun demikian Microsoft juga menyediakan versi client side-nya yang disebut Microsoft Reporting.
Artikel ini adalah terjemahan dari versi bahasa Inggris (yang juga ditulis oleh penulis). Akan ada sedikit perbedaan, karena memang ada istilah dalam bahasa inggris yang sulit dicari padanannya dalam bahasa Indonesia, (lagian kalau sama persis kesannya kayak google translate abiezz)
Biasanya orang suka nanya "gimana sih cara menampilkan report di program", dan seringkali mereka menyebut suatu produk tertentu, yaitu Crystal Reports. Crystal Reports adalah yang paling sering digunakan (penulis sudah menggunakan Crystal Reports dari versi 8.5, dengan programnya pakai VB6). Namun sebenarnya banyak pilihan lain yang bisa digunakan, ada ActiveReports, XtraReports, dst.
Penulis pertama kali berkenalan dengan Microsoft Reporting itu adalah saat company di tempat penulis bekerja waktu itu menggunakan SQL Server Reporting Services 2005 sebagai standar dari pembuatan report. SQL Server Reporting Services ini adalah produk reporting andalan utama microsoft, yang jalannya server-side (ada Report Server sendiri). Namun demikian Microsoft juga menyediakan versi client side-nya yang disebut Microsoft Reporting.
Friday, November 1, 2013
Displaying Reports Using MS Reporting In VB.NET (English Version)
Indonesian Version here
This is a simple tutorial about displaying report (using Microsoft Reporting) in VB.NET
One of many questions I often encounter is 'how to display a report' in an application. Most of the time, the people asking that question mentions a specific product, which is Crystal Reports. But in reality there are many products that can be used to display a report in your program, such as Crystal Reports (bundled in Visual Studio .NET, up until version 2008), Xtra Reports, Active Reports, and many more.
This time I will show you how to use Microsoft's own reporting Technology, which is Microsoft Reporting, which is included in Visual Studio ( From version 2005 - CMIIW), and very similar (a lighter version) of the more famous "Microsoft SQL Server Reporting Services".
In my personal opinion, if you are planning to create a report that will be exported to Microsoft Excel, it's alot easier to make it using Microsoft Reports instead of Crystal Reports. Mainly because if you're using Microsoft Reports, even the design layout is shaped in cells, as opposed to free placement layout of Crystal Reports, therefore you have more control on how the report would appear in the exported excel document.
This is a simple tutorial about displaying report (using Microsoft Reporting) in VB.NET
One of many questions I often encounter is 'how to display a report' in an application. Most of the time, the people asking that question mentions a specific product, which is Crystal Reports. But in reality there are many products that can be used to display a report in your program, such as Crystal Reports (bundled in Visual Studio .NET, up until version 2008), Xtra Reports, Active Reports, and many more.
This time I will show you how to use Microsoft's own reporting Technology, which is Microsoft Reporting, which is included in Visual Studio ( From version 2005 - CMIIW), and very similar (a lighter version) of the more famous "Microsoft SQL Server Reporting Services".
In my personal opinion, if you are planning to create a report that will be exported to Microsoft Excel, it's alot easier to make it using Microsoft Reports instead of Crystal Reports. Mainly because if you're using Microsoft Reports, even the design layout is shaped in cells, as opposed to free placement layout of Crystal Reports, therefore you have more control on how the report would appear in the exported excel document.
Monday, October 14, 2013
Custom Shape Control VB. NET
Indonesian Version Available Below (After The English Version)
This time we will try to create a "Custom Shape Area" control. This example is only a small part of the original application, which is a Shopping Mall floor-plan. In the original application, the user can view a map of a floor and click at a shop (the shops are shaped like the original, which is why a custom shape control is required), to view info about the shop.
I found the idea of this "Custom Shape Area" control on an Article in CodeProject that explains about making a VB6 circle shaped control (in VB. NET, this circle control is no longer provided in the toolbox).
We will start this example by simple shapes such as Ellipse and Rectangle, and after that we will talk about the custom shape control (using polygons).
This time we will try to create a "Custom Shape Area" control. This example is only a small part of the original application, which is a Shopping Mall floor-plan. In the original application, the user can view a map of a floor and click at a shop (the shops are shaped like the original, which is why a custom shape control is required), to view info about the shop.
I found the idea of this "Custom Shape Area" control on an Article in CodeProject that explains about making a VB6 circle shaped control (in VB. NET, this circle control is no longer provided in the toolbox).
We will start this example by simple shapes such as Ellipse and Rectangle, and after that we will talk about the custom shape control (using polygons).
Thursday, August 15, 2013
Add Controls At Run-Time To Your Application VB.NET
Indonesian Version Available Below (After The English Version)
This blog post is actually a prelude to next post "Custom Shaped Areas In VB.NET". When trying to write that one, It came to me that the knowledge on how to add controls at run-time is required, and so I wrote this one first.
This blog post is actually a prelude to next post "Custom Shaped Areas In VB.NET". When trying to write that one, It came to me that the knowledge on how to add controls at run-time is required, and so I wrote this one first.
Subscribe to:
Posts (Atom)