Sabtu, 06 November 2010
PrintPreview WebBrowser VB.Net
Minggu, 23 Mei 2010
Ngakalin Point Blank
Selasa, 10 November 2009
Mendapatkan Kode TeamViewer dari Komputer Client
Hal itulah yang menyulitkan saya menggunakan TeamViewer, sehingga saya mencari cara untuk memudahkan pekerjaan saya. Akhirnya saya temukan caranya, yaitu supaya komputer mengirimkannya sendiri kepada saya saat diperlukan dengan sedikit langkah kecil.
Nomer id TeamViewer tersimpan pada file TeamViewer4_Logfile.log (mungkin versi lain akan berbeda namanya) pada direktori yang sama tempat TeamViewer diinstall. Coba buka file tersebut dan lihat baris paling akhir, kurang lebih isinya seperti ini :
11/10 20:49:51.171 03228 D CConnectionThread::CmdPingRouter(): Router Pong Received with following Hops: 444208345 307273344 20796517
Angka yang diberi warna merah adalah id dari TeamViewer. Sayangnya passwordnya saya belum bisa temukan dimana disimpannya, tetapi hal ini dapat menggunakan password statis yang bisa disetting dari program.
Nah..... Biasanya, baris terakhir dari file log tersebut saya kirim ke alamat email saya melalui program yang saya buat menggunakan VB (Source bisa dicari di Om Google). User hanya sekali klik dan datanya langsung terkirim.
Semoga trik ini dapat bermanfaat bagi semua.
Jumat, 09 Oktober 2009
Membaca dan menulis file .log atau .txt pada VB.net
Dim nom As Object
Dim strTeks(2) As String
nom = FreeFile()
If Dir(My.Application.Info.DirectoryPath & "\re" & Format(Now, "yyMM") & ".log") <> "" Then
FileOpen(1, My.Application.Info.DirectoryPath & "\re" & Format(Now, "yyMM") & ".log", OpenMode.Binary)
strTeks(0) = InputString(1, LOF(1))
FileClose(1)
End If
TextBox1.text = strTeks(0)
Dim nom As Object
nom = FreeFile()
FileOpen(nom, My.Application.Info.DirectoryPath & "\re" & Format(Now, "yyMM") & ".log", OpenMode.Output)
PrintLine(nom, "Isi data teksnya disini")
FileClose(nom)
Membaca file .INI pada VB.Net
Option Strict On
Module INIAccess
#Region "API Calls"
Private Declare Unicode Function WritePrivateProfileString Lib "kernel32" _
Alias "WritePrivateProfileStringW" (ByVal lpApplicationName As String, _
ByVal lpKeyName As String, ByVal lpString As String, _
ByVal lpFileName As String) As Int32
Private Declare Unicode Function GetPrivateProfileString Lib "kernel32" _
Alias "GetPrivateProfileStringW" (ByVal lpApplicationName As String, _
ByVal lpKeyName As String, ByVal lpDefault As String, _
ByVal lpReturnedString As String, ByVal nSize As Int32, _
ByVal lpFileName As String) As Int32
#End Region
Public Overloads Function INIRead(ByVal INIPath As String, _
ByVal SectionName As String, ByVal KeyName As String, _
ByVal DefaultValue As String) As String
Dim n As Int32
Dim sData As String
sData = Space$(1024)
n = GetPrivateProfileString(SectionName, KeyName, DefaultValue, _
sData, sData.Length, INIPath)
If n > 0 Then
INIRead = sData.Substring(0, n)
Else
INIRead = ""
End If
End Function
#Region "INIRead Overloads"
Public Overloads Function INIRead(ByVal INIPath As String, _
ByVal SectionName As String, ByVal KeyName As String) As String
Return INIRead(INIPath, SectionName, KeyName, "")
End Function
Public Overloads Function INIRead(ByVal INIPath As String, _
ByVal SectionName As String) As String
Return INIRead(INIPath, SectionName, Nothing, "")
End Function
Public Overloads Function INIRead(ByVal INIPath As String) As String
Return INIRead(INIPath, Nothing, Nothing, "")
End Function
#End Region
Public Sub INIWrite(ByVal INIPath As String, ByVal SectionName As String, _
ByVal KeyName As String, ByVal TheValue As String)
Call WritePrivateProfileString(SectionName, KeyName, TheValue, INIPath)
End Sub
Public Overloads Sub INIDelete(ByVal INIPath As String, ByVal SectionName As String, _
ByVal KeyName As String)
Call WritePrivateProfileString(SectionName, KeyName, Nothing, INIPath)
End Sub
Public Overloads Sub INIDelete(ByVal INIPath As String, ByVal SectionName As String)
Call WritePrivateProfileString(SectionName, Nothing, Nothing, INIPath)
End Sub
Public Function BacaIni(ByVal Section As String, ByVal Kunci As String, ByVal IsiDefault As String) As String
Dim Sisi As String
Sisi = INIRead(My.Application.Info.DirectoryPath & "\set.conf", Section, Kunci, IsiDefault)
BacaIni = Sisi
End Function
Public Sub TulisIni(ByVal Section As String, ByVal Kunci As String, ByVal Datanya As String)
INIWrite(My.Application.Info.DirectoryPath & "\set.conf", Section, Kunci, Datanya)
End Sub
End Module
IsiIni = BacaIni("Section", "Kunci", "NGGAK ADA")
TulisIni("Section", "Kunci", "Isi datanya disini")
Senin, 18 Mei 2009
Pengendalian Penjualan dan Persediaan (Bagian 1)

Senin, 04 Mei 2009
Franchise atau Mandiri
Andrie Baskara