BestChange - exchange monitor, earn as an affiliate!

Thursday, April 11, 2013

Perfect Keyboard Pro v1.4.4 Apk App Download















Requirements: for Android version 2.2 and higher
Overview:
Take command of your Android device's touchpad keypad with a Perfect and smart Keyboard for android. You can customize the look of the keyboard with eight different themes and add additional functionality to your device. Perfect Keyboard lets you use custom dictionaries, control background and text colors, and adjust the keyboard's vibration density. In short, Perfect Keyboard allows you to setup your Android phone or tablet's touchpad keyboard so that it works best for you.

 Note: Perfect Keyboard works only on Android 2.2 and up

 Detailed Specifications:

 - Multitouch keyboard
 - User dictionary, built-in dictionary, supports AnySoftKeyboard International dictionaries (separate downloads from the Market)
 - Configurable auto correction
 - Redesigned and optimized keyboard layout and style
 - 8 Keyboard themes ( gingerbread,iPhone and more).
 - Configurable colors for the keyboard buttons, background and text
 - Configurable color for the word suggestion font
 - Speech to text (select languages only)
 - Custom vibration intensity (haptic feedback)
 - Long press "Enter" key to bring up smiley alternatives
 - Long press on "/" key in URL mode to bring up domains (you can configure the domains in the settings to better fit)
 - Configurable sound style and volume ( Samsung,iPhone,android)
 - Cursor Keys - swipe up on the space key to display.
 - Gestures.
 - Shortcuts (auto-text)
 - External skins (some of better keyboard skins)
 - Alt symbols on the keyboard.
 - configure the layout of the keyboard (key height,row gap etc)
 Tips:

 #Change Appearance and Themes:
 To change appearance go to settings -> appearance

 #About "collecting data" warning message:
 That warning message is a part of the Android operating system, and it appears whenever a thirdparty keyboard is enabled. You don't have to worry because the keyboard don't have permission to internet access.

 Supported languages layout: English, French, Hebrew, Arabic, German, Czech(QWERTY,QWERTZ), Bulgarian, Catalan, Spanish, Esperanto, Danish, Italian, Finnish, Georgian, Russian, Ukrainian, Latvian, Swedish,Latin, Dutch, Portuguese, Slovakian, Slovenian, Greek, Rumanian, Serbian, Hungarian


 tags: android keyboard,gingerbread keyboard,keyboards

 What's in this version:
 Fix Latvian layout.
 Bug fixes.
 New option to change the size of suggestions bar.
 Better ICS compatibility


Broken link? 
Need help in finding an ebook/pdf or installer?

Send me a comment. 

Friday, October 12, 2012

Reset MySQL root password – Windows 7

STEP #1: Go to START / CONTROL PANEL and click on System and Security
STEP #2: Click on Administrative Tools and select Services
STEP #3: Scroll down and stop MYSQL service
STEP #4: Now go to START / ALL PROGRAMS / ACCESSORIES and right click on Command Prompt – Select RUN as Administrator
STEP #5: Repeat it so you have two Command prompt windows running on your desktop.
STEP #6: In each of the Command prompt windows navigate to 
C:\Program Files\Mysql\Mysql server 5.1\bin>
STEP #7: In first Command prompt window type: mysqld.exe –skip-grant-tables and press ENTER
STEP #8: Go to second Command prompt window and type: mysql.exe –u root mysql and press ENTER, you should be granted access and be in mysql> prompt
STEP #9: Now while at the mysql> type here UPDATE mysql.user SET Password=PASSWORD(‘new password’) WHERE User=’root’ and press ENTER
STEP #10: If everything worked, you should receive QUERY OK
STEP #11: Now type FLUSH PRIVILLEGES; and press ENTER, you will receive another Query OK
STEP #12: Now you have to just reboot your machine and once you are back you should be able to log on with your new password. 


Thursday, September 27, 2012

Select Griview row by clicking anywhere

1. Add a CommandArgument to the link button.
<asp:LinkButton ID="LinkBtn3" runat="server" CommandName="Date" CommandArgument='<%# Eval("id") %>'  Text='<%#Eval("id") %>' Font-Underline="false" ForeColor="Black"></asp:LinkButton>
2. In the RowDataBound event
e.Row.Attributes.Add("onclick", Page.ClientScript.GetPostBackEventReference(DirectCast(sender, System.Web.UI.Control), "Select$" + e.Row.RowIndex.ToString()))
3. Then on the RowCommand Event:
If e.CommandName = "Select" Then
GrvDraft.EditIndex = e.CommandArgument
End If
4. If you get this error: Invalid postback or callback argument. Add this.
Protected Overloads Overrides Sub Render(ByVal writer As HtmlTextWriter)
For i As Integer = 0 To Me.GrvDraft.Rows.Count - 1
Page.ClientScript.RegisterForEventValidation(Me.GrvDraft.UniqueID, "Select$" & i)
Next
MyBase.Render(writer)
End Sub

Friday, September 21, 2012

Gridview with ImageURL

<asp:GridView ID="gvEmployees" runat="server" AutoGenerateColumns="False" pagesize="5" AllowPaging="True">
<Columns>
<asp:BoundField DataField="Name" HeaderText="Name" />
<asp:BoundField DataField="Team" HeaderText="Team" />
<asp:BoundField DataField="dateHired" HeaderText="Date Hired"
DataFormatString="{0:MMMM dd, yyyy}" />
<asp:BoundField DataField="empStatus" HeaderText="Employment Status" />
<asp:BoundField DataField="birthday" HeaderText="Birthday" />
<asp:BoundField DataField="civilStatus" HeaderText="Civil Status" />
<asp:BoundField DataField="noOfChildren" HeaderText="No. Of Children" />
<asp:BoundField DataField="cellphoneNo" HeaderText="Cellphone #" />
<asp:BoundField DataField="address" HeaderText="Address" />
<asp:BoundField DataField="contactPerson" HeaderText="Contact Person" />
<asp:BoundField DataField="contactNo" HeaderText="Emergency #" />
<asp:TemplateField>
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl ='<%# "~/Images/EmpImage/"+Eval("idemployee").tostring()+".png" %>' />
</ItemTemplate>
</asp:TemplateField>
</Columns>

Thursday, July 19, 2012

Encryption


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Public Function SimpleCrypt(ByVal Text As String) As String
' Encrypts/decrypts the passed string using 
' a simple ASCII value-swapping algorithm
Dim strTempChar As String, i As Integer
For i = 1 To Len(Text)
  If Asc(Mid$(Text, i, 1)) < 128 Then
    strTempChar = _
CType(Asc(Mid$(Text, i, 1)) + 128, String)
  ElseIf Asc(Mid$(Text, i, 1)) > 128 Then
    strTempChar = _
CType(Asc(Mid$(Text, i, 1)) - 128, String)
  End If
  Mid$(Text, i, 1) = _
      Chr(CType(strTempChar, Integer))
Next i
Return Text
End Function


Monday, July 2, 2012

C++ Notes

VARIABLES
variables must be:
declared (the type of variable)
defined (values assigned to a variable)
before it can be used in a program.

DATA TYPES
C++ supports the following inbuilt data types:-
int (to store integer values),
float (to store decimal values),
char (to store characters),
bool (to store Boolean value either 0 or 1) and
void (signifies absence of information).

KEYWORDS
reserved wordsjavascript:void(0)

IDENTIFIERS
name of functions, variables, classes, arrays etc.

CONSTANTS
fixed values which cannot change.