Posts

Showing posts from May, 2015

No Parameterless Constructor Defined For Type JSON

Jika memanfaatkan JSON dan Web Service di ASP.Net maka kelas penghubung di ASP.NET tidak perlu membuat constructor karena akan menyebabkan error No Parameterless Constructor Defined For Type JSON Yang dibutuhkan di vb vlass adalah hanya private variable dan properties untuk tiap variable tersebut tanpa constructur New. Recommended Reading: Scroll to a specific position on a page using Javascript Semoga posting artikel tentang  No Parameterless Constructor Defined For Type JSON dapat bermanfaat. Salam,

Scroll to a specific position on a page using Javascript

Pada posting Scroll to a specific position on a page using Javascript  ini akan dibahas tentang cara melakukan scrolling terhadap bagian tertentu di halaman web. Cara melakukan  Scroll to a specific position on a page using Javascript   adalah dengan menggunakan javascript seperti contoh dibawah ini : Kita akan membuat sebuah link dengan href diisi dengan taq unik. location.href = location.href + "#top"; Untuk memanfaatkan link diatas agar scroll menuju ke bagian tertentu maka gunakan script dibawah ini : function nameOfFunction(){ location.href = location.href + "#top"; } Kita tinggal memanfaatkan nama function diatas untuk melakukan scrolling ke posisi yang dimaksud. Recommended Reading: Upload File With JQuery Semoga posting artikel tentang  Scroll to a specific position on a page using Javascript   dapat bermanfaat. Salam,

Android Error : R.id Cannot Be Resolved

Image
Posting artikel tentang error " Android Error : R.id Cannot Be Resolved " pada saat development aplikasi di Android ini ditujukan untuk beginner. Error tersebut terjadi karena objek yang dipanggil di java class tidak ditemukan pada layout. Dengan demikian maka kita hanya perlu menambahkan id untuk objek yang dipanggil dengan menambahkan property " android:id=" seperti gambar dibawah ini. Recommended Reading: Adding Local Database SQL Express For VB.NET Semoga posting artikel tentang " Android Error : R.id Cannot Be Resolved " diatas dapat bermanfaat. Salam,

Adding Local Database SQL Express For VB.NET

Image
Pada posting kali ini akan dibahas tentang " Adding Local Database SQL Express For VB.NET " dan cara mengaksesnya. Yang perlu dipersiapkan pada project untuk mencoba " Adding Local Database SQL Express For VB.NET " adalah sebagai berikut : App.Config <appSettings>     <add key="LocalLineupConnectionString" value="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\data\LineUp.mdf;Integrated Security=True;User Instance=True" />   </appSettings> Kemudian buatlah sebuah module untuk mengambil nilai konfigurasi tersebut diatas. Module Public LocalDBLineUpConn As String = ConfigurationManager.AppSettings("LocalLineupConnectionString") Setelah setting config dan module selesai dibuat, kita bisa membuat koneksi ke dalam database local tersebut VB Code Dim oCon As SqlConnection = New SqlConnection(LocalDBLineUpConn) oCon.Open() Dim oCmd As SqlCommand= New SqlCommand("Select * From Table&

Add Column In SQL Server With Default Value Using Script

Pada posting artikel kali ini saya akan membahas tentang " Add Column In SQL Server With Default Value Using Script ". Dibawah ini dalah sintaks dan cara pemakaiannya : Sintas : USER {Database Name} ALTER {Table Name} ADD {Column Name} {Column Type} [NULL || NOT NULL] [DEFAULT {Default Value}]; GO Contoh : ALTER TABLE MEMPLOYEE ADD ACTIVE bit NOT NULL DEFAULT(1); GO Recommended Reading: Insert Data From Excel SpreadSheet To SQLServer Semoga posting artikel tentang " Add Column In SQL Server With Default Value Using Script " diatas dapat bermanfaat. Salam,

How to set the 'Insert New Row' as First Row in DataGridView

Pada posting kali ini akan dibahas tentang " How to set the 'Insert New Row' as First Row in DataGridView " " How to set the 'Insert New Row' as First Row in DataGridView "   biasanya digunakan untuk memperlihatkan urutan antrian secara visual. Dibawah contoh skrip untuk posting " How to set the 'Insert New Row' as First Row in DataGridView " Dim dtLog As New DataTable() dtLog.Columns.Add("Log", GetType(String)) oDr = dtLog.NewRow Dim nInt As Int16 = 1 oDr("Log") = (nInt).ToString dtLog.Rows.InsertAt(oDr, 0) DgLog.DataSource = dtLog Recommended Reading: Get Publish Version in VB.NET OneClick Deployment Semoga posting artikel tentang " How to set the 'Insert New Row' as First Row in DataGridView " diatas dapat bermanfaat. Salam,

Get Publish Version in VB.NET OneClick Deployment

Image
Pada posting tentang " Get Publish Version in VB.NET OneClick Deployment " akan ditampilkan contoh mendapatkan Versi aplikasi yang telah dipublish menggunakan OneClick Deployment di VB.NET. Dibawah ini contoh skripnya : Dim sMajor as String = My.Application.Deployment.CurrentVersion.Major.ToString Dim sMinor as String = My.Application.Deployment.CurrentVersion.Minor.ToString Dim sBuild as String = My.Application.Deployment.CurrentVersion.Build.ToString Dim sRevision as String = My.Application.Deployment.CurrentVersion.Revision.ToString Dim sVersion as String = sMajor & "." & sMinor & "." & sBuild & "." & sRevision Recommended Reading: [Error] : Is Not a Valid Path. Make Sure The Path Name Spelled Correcty Semoga posting artikel tentang " Get Publish Version in VB.NET OneClick Deployment " dapat bermanfaat. Salam,

Is Not a Valid Path. Make Sure The Path Name Spelled Correcty

Image
Posting artikel kali ini tentang error " Is Not a Valid Path. Make Sure The Path Name Spelled Correctly and You are Connected to The Server on Which The File Resides " akan membahas tentang problem yang dialami pada saat melakukan oneclick deployment di VB.NET. Langkah yang perlu dilakukan untuk menangani error diatas adalah : Pilih file di Solution Explorer dan pilih properties. Pastikan property "Build Action" = "Content" . Pastikan "Copy to Output Directry" = "Copy always" Buka Tab Publish di Project Property. Pilih tombol "Application Files" Pastikan publish status = Include (Auto) and Download Group = (Required) Recommended Reading: Specify a Publisher Name for a ClickOnce Application Semoga posting artikel tentang " Is Not a Valid Path. Make Sure The Path Name Spelled Correctly and You are Connected to The Server on Which The File Resides " dapat bermanfaat. Salam,

Specify a Publisher Name for a Oneclick Deployment in VB.NET

Image
Pada posting artikel tentang " Specify a Publisher Name for a Oneclick Deployment in VB.NET"  ini akan dijelaskan cara penambahan nama publishernya. Berikut ini tampilan publish.htm jika kita tidak menambahkan properties untuk nama Publisher: Untuk menambahkan nama publisher maka kita perlu setting propeties di tab publish sebelum melakukan clickonce deployment. Dibawah ini adalah langkah-langkah untuk " Specify a Publisher Name for a Oneclick Deployment in VB.NET " 1. Klik kanan nama project dan pilih properties. 2. Pilih tab publish dan pilih tombol options. 3. Pilih tab description dan isikan nama publisher. Recommended Reading: A reference to the ".dll" could not be added. Please make sure that the file is accessible and that it is a valid assembly or COM component. Dibawah ini gambar hasil setting nama publisher. Semoga posting artikel tentang   " Specify a Publisher Name for a One