Laman

Sabtu, 02 November 2013

Android Application - Install the old version of the application through "Aptoide Repos" Application - Menginstall aplikasi versi lama melalui aplikasi "Aptoide Repos"

I have a first generation Samsung Galaxy Tab (​​GT-P1000 type) are still using the Android operating system version 2.2 Froyo
Many applications available on Google Play / Store that don't support with this operating system

Do not worry we can still use our gadgets that are worn with looking at applications that still support free market through the application of "Aptoide Repos"

Saya memiliki Samsung Galaxy Tab generasi pertama (Tipe GT-P1000) yang masih menggunakan versi system operasi Android FROYO 2.2
Banyak aplikasi yang tersedia di Google Play/Store yang sudah tidak mendukung system operasi ini.

Jangan khawatir kita tetap bisa menggunakan gadget kita yg sudah usang dengan mencari aplikasi yang masih support di free market melalui aplikasi "Aptoide Repos"

How:
Caranya:
1. Open your laptop/pc - Buka laptop/pc anda.
2. Open web : 
http://apps.store.aptoide.com/app/market/es.paraisoft.android.aptoiderepos/2011012800/1837/Aptoide%20Repos




3. Click Install button. See image below:

4. Click "Install Aptoide"
5. You will get file "Aptoide.apk"
6. Copy this file to your Android Devices.
7. Execute this file "Aptoide.apk"
8. Follow the instruction.

Note: If you can't execute this apk file, then go to your Android Devices > "Settings" > "Application" > "Allow 3rd party application".
Note: Jika anda tidak bisa menjalankan file apk ini, anda harus melakukan sedikit setting di android gadget anda > "Settings" > "Application" > "Allow 3rd party application".

By default external application is not allowed to install inside your android devices, the above mentioned setting will bypass this restriction.

Standarnya untuk aplikasi dari luar (tidak diunduh dari Google Play/Store) tidak diperbolehkan untuk dijalankan, namun kita bisa melepas seting ini dengan cara di atas.

9. After "Aptoide Repos" application successfully installed then you run the application, search your wishes application and install it. Enjoy...
Setelah anda berhasil meng-install "Aptoide Repos" kemudian jalankan, cari aplikasi yang anda inginkan, install dan selamat menikmati...

Good Luck!
Selamat mencoba.

Salam,
Benny Rusadi
"Orang biasa yang ingin menjadi luar biasa"

SIMATIC PCS7 V8.0 SP1 - Can not create OS WinCC Project - Tidak bisa membuat OS WinCC Project

If you face a problem "can not create OS WinCC Project" after the installation of Simatic PCS7 V8.0 SP1, you can do this little trick:
Jika anda menemui masalah "tidak bisa membuat OS WinCC Project" setelah melakukan instalasi Simatic PCS7 V8.0 SP1, anda bisa melakukan sedikit trik berikut:


1. Plug the network cable into your laptop/engineering station.
2. Set your IP network.
3. Check Simatic Shell. Make sure Network Adapter with specified IP Address is selected. See below image:


4. Check SQL Server services is running. See below image:

5. Check Windows User member is assigned to these user groups:
- Administrator
- Siemens TIA Engineer
- Simatic HMI
- Simatic HMI CS
- Simatic HMI Viewer
- Simatic NET
- Users

See image below:



6. Restart your laptop/engineering station.


Good Luck!
Selamat mencoba.

Salam,
Benny Rusadi
"Orang biasa yang ingin menjadi luar biasa"


Visual Basic .NET - How to get week number by requested date? / Bagaimana mendapatkan minggu ke berapa dari hari yang diminta?

Visual Basic .NET

How to get week number by requested date?
Bagaimana mendapatkan minggu ke berapa dari hari yang diminta?

Here the code:
Berikut program kode nya:


Imports System.Globalization

Public Class Form1

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click

 Dim date_ As Date = DateTimePicker1.Value
        Dim dfi = DateTimeFormatInfo.CurrentInfo
        Dim calendar = dfi.Calendar

        Dim weekOfyear = calendar.GetWeekOfYear(date_, CalendarWeekRule.FirstDay, DayOfWeek.Monday)

        MsgBox("Week of Year = " & weekOfyear)

End Sub

End Class


Good Luck!

Selamat mencoba dan semoga bermanfaat.

Salam,
Benny Rusadi
"Orang biasa yang ingin menjadi luar biasa"