S
H
A
R
E
Showing posts with label software world. Show all posts
Showing posts with label software world. Show all posts

Sunday, March 11, 2012

Netbeans Slow When starting

I using : Netbeans 7.1
OS : win 7 32 Ultimate
CPU: core-i5
RAM: 2G
VGA: 4G
I dont know why my Netbeans its running slow when started, make my cursor slow too.

Then I know why, its may a Netbeans bug. Netbeans / Java have some speed problems where implementing fonts from the OS manchine.

 its simple, try to restore Font & color setting in your nertbeans, then restart.. may its done..,

Read More!

Sunday, July 10, 2011

Configure IDM With New Version Mozilla Firefox (4,5)

1. Please make sure that you have installed the latest version of IDM by using Help->Quick Update menu item. Please use "Help->Quick Update" IDM main menu item to get the latest version of IDM. IDM Quick Update

Read More!

Saturday, July 02, 2011

XML to Tree Node

XML to Tree Node VB net Visual Studio
XML to Tree Node Screen Shot
This program is demonstrate how to converting XML tag to TreeView node. Written using Visual Studio 2010.

Read More!

Tuesday, June 28, 2011

Blogger Tool - MyBlogDB - help Documenting your blogs

Screen Shot:
Blogger Tool -  MyBlogDB - help Documenting your blogs

To help Documenting your blog list, If you have many blogs, this tool is usefull while you submitting blogs to ping tool or RSS submitter. Just double click in textbox and the text will be copied into clipboard.

Read More!

Monday, June 06, 2011

Detecting Face in Image (VB.net 2010)

Sample Face Detection with VB net 2010
Sample Face Detection
I write this code using VS 2010, and my OS is Windows 7. This code was used library of the Open Source Computer Vision (OpenCV) and EmguCV. see this:

Read More!

Thursday, April 28, 2011

VB.net Create Simple Text Effect Following Mouse

This Program will displaying text on screen and following mouse with simple effect. Just a simple, have some conntrol mouse manipulation, and timer for animation.


This project using NetFramework 3.5, I write it with Visual studio 2008, Would you like to try??
Ok, lets make a new VB project in Visual studio. and then... copy the code bellow:



Public Class Form
    Dim str As String = ""
    Dim StrLen As Integer = 0
    Dim pos As Integer = 0
    Const TxWidth As Integer = 17
    Dim Lb(30) As Label
    Dim WithEvents tm As New Timer()
    Dim WithEvents TmIkuti As New Timer()


    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        str = "This A Simple Mouse Effect"
        Me.ShowInTaskbar = False
        Me.TopMost = True
        StrLen = str.Length
        Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
        Me.BackColor = Color.White
        Me.TransparencyKey = Color.White
        TataHuruf()
    End Sub

    Private Sub TataHuruf()
        For i = 0 To StrLen - 1
            Lb(i) = New Label
            Lb(i).Text = str(i)
            Lb(i).Width = TxWidth
            Lb(i).Font = New Font("Calibri", 12, FontStyle.Bold)
            Lb(i).Left = TxWidth * i
            Lb(i).Top = 5
            Lb(i).Parent = Me
            Lb(i).Show()
        Next
        Me.Height = Lb(0).Height + 5
        Me.Width = TxWidth * StrLen
        tm.Interval = 80
        tm.Start()
        TmIkuti.Interval = 10
        TmIkuti.Start()
    End Sub

    Private Sub Animasi() Handles tm.Tick
        Lb(pos).Top = 0
        Lb(pos).ForeColor = Color.Red
        Dim pr As Integer = PosMovPrev(pos)
        Lb(pr).Top = 5
        Lb(pr).ForeColor = Color.Black
        PosMoveNext()
    End Sub

    Private Sub IkutiMouse_x() Handles TmIkuti.Tick
        Try
            Me.Left = Control.MousePosition.X - (Me.Width \ 2)
            Me.Top = Control.MousePosition.Y
        Catch ex As Exception

        End Try
    End Sub

    Private Sub PosMoveNext()
        If pos >= (StrLen - 1) Then
            pos = 0
        Else
            pos += 1
        End If
        If Trim(Lb(pos).Text) = "" Then PosMoveNext()
    End Sub
    Private Function PosMovPrev(ByVal n As Integer) As Integer
        If n <= 0 Then
            n = StrLen - 1
        Else
            n -= 1
        End If
        If Trim(Lb(n).Text) = "" Then
            Return PosMovPrev(n)
        Else
            Return n
        End If
    End Function
End Class

Read More!

Sunday, May 02, 2010

Creating own firefox theme

Using add-ons extensions personas 1.5.3 or other versions, which you can download it at https: / / addons.mozilla.org/firefox/downloads/latest/10900? src = external-getpersonas or clay on his Web site at www.getpersonas. com .
Oops, before downloading, make sure when you open the link above with modzilla firefox browser.
Terms of skill (recommended)
1. Can operate a computer (must)
2. Knowing the image format jpg / png and pixel size
3. Can operate the programs image editor (photoshop, corel, etc. ..)
If your condition has not yet mastered all, hence my suggestion better to use the picture-me theme personas so you can download at https: / / www.getpersonas.com / en-US / gallery

 Step 1 of 3 MAKE DRAWINGS Header


Create a header image for your firefox browser, should 3000X200px size (width 3000px 200px height), format jpg image / png
Examples determine with photoshop:
Open the Photoshop program, then Select the menu "File" >> "new", and set as follows:



Create your image, then "save as .."















Image size must be less than 300kb, and less than a 3000X200 pixel image
 
Step 2 of 3 MAKE DRAWINGS FOOTER
 
 

To footer image size images 3000X100px.create your footer image then save as ..
Taraaa.. drawing is finished, now apply Its picture to firefox



Step 3 from 3 APPLYING THEME TO FIREFOX

Open your firefox program, look at the bottom left corner, if no icon is red, yellowish then restart firefox before you, so add-ons can be loaded. If you have, click the icon and then follow the steps below:









How to apply the theme you made, click the icon in the lower left corner, look at the list, if you do STEP 2 right above you must have the name of the theme will appear there, then select "apply"

Read More!