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.
Friday, October 12, 2012
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" Then4. If you get this error: Invalid postback or callback argument. Add this.
GrvDraft.EditIndex = e.CommandArgument
End If
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 |
Friday, July 13, 2012
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.
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.
Friday, June 29, 2012
Layered Web Applications with ASP.NET
In the diagram in figure 1 you see a process go around in a counter clockwise direction. The process goes through the following 6 steps:
- The Presentation layer asks the BLL for some object, for example a contact person.
- The BLL can optionally perform some validation (for example, is the current user allowed to make this call?) and then forwards the request to the DAL.
- The DAL connects to the database and asks it for a specific record.
- When the record is found, it is returned from the database to the DAL.
- The DAL wraps the database data in a custom object and returns it to the BLL.
- Finally, the BLL returns the object to the Presentation layer, where it could be displayed on a web page for example.
Microsoft Visual Studio 2005 Express Edition full version download
Microsoft Visual Web Developer 2005 express edition offline installer download
Microsoft Visual c++ 2005 express edition offline installer download
Microsoft Visual Basic 2005 express edition offline installer download
Microsoft Visual C# 2005 express edition offline installer download
Microsoft Visual J# 2005 express edition offline installer download
Installer | Size | .IMG file | .ISO file |
---|---|---|---|
Visual Web Developer 2005 Express Edition | 449,848 KB | .IMG file | .ISO file |
Visual Basic 2005 Express Edition | 445,282 KB | .IMG file | .ISO file |
Visual C# 2005 Express Edition | 445,282 KB | .IMG file | .ISO file |
Visual C++ 2005 Express Edition | 474,686 KB | .IMG file | .ISO file |
Visual J# 2005 Express Edition | 448,702 KB | .IMG file | .ISO file |
Broken link?
Need help in finding an ebook/pdf or installer?
Tuesday, June 26, 2012
Get values of selected row in Datagrid
1 | Protected Sub gvPhonebook_SelectedIndexChanged(sender As Object, e As System.EventArgs) Handles gvPhonebook.SelectedIndexChanged |
Read Excel Cells and Rows
1 | Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click |
Formatting Date
1 | Public Function formatDate(ByVal strDate As String) As String |
Labels:
code snippet,
date,
format
Database Connection
1 | Public Function MyDataSet(ByVal strSQL As String) As DataSet |
Subscribe to:
Posts (Atom)