Browse by Tags

  • Software Archichets are like condoms

    Maybe this can be engligthment.
    Posted to Continually Code (Weblog) by dede on 03-12-2010
  • Mengeja kata dalam bahasa Indonesia

    Dalam sebuah diskusi di forum internet, ada yang ingin membuat Text-To-Speech (TTS) aplikasi. Kalau TTS dalam bahasa inggris, tentu sudah ada fasilitas untuk itu. karena di windows sudah bundle TTS. Sedangkan yang di maksud adalah menggunakan bahasa Indonesia. Artikel ini memeng tidak membahas membuat...
    Posted to Continually Code (Weblog) by dede on 03-06-2010
  • Aplikasi Setting dalam .Net 2.0

    Dalam sebuah aplikasi, kadang kala kita memerlukan tempat untuk menyimpan informasi yang tidak banyak. Biasanya digunakan embedded database, ini file, registry bahkan text file. Untuk melakukan itu memerlukan library tambahan atau driver untuk dapat mengunakan storage tersebut. Ada satu alternatif storage...
    Posted to Continually Code (Weblog) by dede on 03-05-2010
  • Express for x86

    The VB and C# Express products do not expose the Target property inside the development environment. You will need to carefully modify the project file using a text or XML editor. 1. Close the project and/or solution 2. Select Open File from the File menu 3. Navigate to the project directory, and highlight...
    Posted to Continually Code (Weblog) by dede on 11-22-2009
  • Generated Password

    Bagaimana generated password di .Net? // C# public string GetRandomPassword() { int length = 8; int numberOfNonAlphanumericCharacters = 3; string password = System.Web.Security.Membership.GeneratePassword(length, numberOfNonAlphanumericCharacters); return password; } // VB Public Function GetRandomPassword...
    Posted to Continually Code (Weblog) by dede on 11-02-2009
  • Winform Control Focus

    Many way to focus the controls. // C# private void MyForm_Activated(object sender, EventArgs e) { Textbox1.Focus(); this.Activated -= new System.EventHandler(this.MyForm_Activated); } // or // on Init or Load Event Textbox1.Select(); // or // on Load Event Textbox1.Focus(); // or // on Init or Load Event...
    Posted to Continually Code (Weblog) by dede on 11-01-2009
  • 32 or 64 bit OS

    Salar Khalilzadeh @ SoftProjects.org memberikan tips dengan IntPtr. // C# if(IntPtr.Size == 8 ) { // 64 bit machine } else if(IntPtr.Size == 4 ) { // 32 bit machine } // VB If IntPtr.Size = 8 Then ' 64 bit machine ElseIf IntPtr.Size = 4 Then ' 32 bit machine End If
    Posted to Continually Code (Weblog) by dede on 10-31-2009
  • CLS-Compliant

    Dalam .Net kita dapat membuat aplikasi kita menjadi compatible dengan semua language yang mengunakan CLR. Dengan meng-set CLS-Compliant attribute. Tapi kadang mengesalkan bisa ada type atau fungsi yang kita specifik gunakan. Contoh pada C#, unit atau System.UInt32 . Nah agar kita tetap bisa CLS-Compliant...
    Posted to Continually Code (Weblog) by dede on 10-30-2009
  • Screen Infomation

    Untuk mendapatkan di mana form kita berada (monitor/screen) pada saat multi-monitor. // C# int result = 0; Screen scr = Screen.FromControl(f); Screen s = scr; for (int i = 0; i < Screen.AllScreens.Length; i++) { s = Screen.AllScreens ; if (s.Equals(scr)) { result = i; } } // VB Dim result As Integer...
    Posted to Continually Code (Weblog) by dede on 10-29-2009
  • Image from SystemIcon

    Kadang kita membutuhkan image untuk button yang sesuai dengan windows yang kita miliki. Simple cukup dengan cara ini. // C# Image img = Bitmap.FromHicon(SystemIcons.Shield.Handle); // VB Dim img As Image = Bitmap.FromHicon(SystemIcons.Shield.Handle)
    Posted to Continually Code (Weblog) by dede on 10-28-2009
Page 1 of 24 (236 items) 1 2 3 4 5 Next > ... Last »
Microsoft Internet Explorer 8

Anda tampaknya menggunakan . Jelajahi website dengan cepat dan aman dengan Internet Explorer 8